-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
64 lines (60 loc) · 2.93 KB
/
Copy pathcontact.html
File metadata and controls
64 lines (60 loc) · 2.93 KB
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
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href = "./bootstrap-5.2.1-dist/css/bootstrap.css" rel="stylesheet">
<link href = ".\bootstrap-5.2.1-dist\css\default.css" rel="stylesheet">
<script src = "./bootstrap-5.2.1-dist/js/bootstrap.js"></script>
<h1>My contact page</h1>
<nav class="navbar navbar-expand-lg bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#">Pages</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="contact.html">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="About.html">About</a>
</li>
</ul>
</div>
</div>
</nav>
</head>
<body>
<form action="results.html" method="get">
<div class="form">
<label for="name"><strong>Name:</strong></label><br>
<input type="text" id="name" name="name" placeholder="First and Last Name"><br>
<label for="phone"><strong>Phone Number:</strong></label><br>
<input type="tel" id="phone" name="phone" placeholder="###-###-####"><br>
<label for="email"><strong>Email Adress:</strong></label><br>
<input type="text" id="email" name="email" placeholder="abcd@email.com"><br>
<br>
</div>
<div class="mb-3 form-check">
<input type="checkbox" id="option1" name="option1" value="manager">
<label for="option1"> Send to manager</label><br>
<input type="checkbox" id="option2" name="option2" value="Recruiting">
<label for="option2"> Send to recruiting</label><br>
<input type="checkbox" id="option3" name="option3" value="Advertising">
<label for="option3"> Send to Advertising</label><br><br>
</div>
<div class="form">
<label for="Email"><strong>Type message:</strong></label><br>
<input type="textarea" id="message" name="message" placeholder=""><br>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</body>
</html>