-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhire_us.html
62 lines (51 loc) · 2.06 KB
/
hire_us.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="pt-br">
<head>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>hire us</title>
</head>
<body>
<header>
<nav>
<img src="logo.png">
<a href="index.html">
Inicio
</a> |
<a href="thespaceships.html">
The Spaceships
</a> |
<a href="hire_us.html">
Hire Us
</a> |
<hr>
</nav>
<section>
<h1>Hire Us Now</h1>
<p>Leave a message to request one of our services and we will get back to you as soon as possible</p>
</section>
<br>
<section>
<form>
<label for="fname"><strong>Nome :</strong></label>
<input type="fname" id="fname" name="fname" > |
<label for="email"> <strong>E-mail :</strong></label>
<input type="email" id="email" name="email" >
<br><br>
<label for="Space"><strong>Spaceship :</strong></label>
<select name="Space" id="Space" name="Space">
<option value="Falcon 9">Falcon 9</option>
<option value="Falcon Heavy">Falcon Heavy</option>
<select>
<label for="Service"><strong>Type of Service:</strong></label>
<input type="service" id="service" name="service" >
</select>
<br><br>
<button type="button" onclick="alert('Envio Concluído')">Enviar Mensagem!</button>
</select>
</form
</section>
</header>
</body>
</html>