-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact_us.html
57 lines (48 loc) · 1.48 KB
/
contact_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
<!DOCTYPE html>
<!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>Contact Us</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<!-- nav -->
<div style="text-align: center">
<!-- logo -->
<img src="/images/logo.png" width="150px" height="auto" alt="" />
<h2>My Website</h2>
<nav>
<a href="/" style="margin-right: 5px">Home</a>
<a href="" style="margin-right: 5px">About Us</a>
<a href="/contact_us.html" style="margin-right: 5px">Contact</a>
<a href="/sign_up.html" style="margin-right: 5px">Sign Up</a>
</nav>
</div>
<div class="card">
<div class="card-title">Contact Us</div>
<div>
<form action="" method="get">
<label for="email">Email</label>
<input type="email" name="email">
<label for="phone">Phone Number</label>
<input type="number" name="phone">
<label for="gender">gender</label>
<select class="select" name="gender">
<option value="male">Male</option>
<option value="female">Female</option>
</select>
<div style="display: flex; margin: 3px; padding: 3px;">
<input class="select" type="checkbox" name="accept" value="Accept">
<label for="">Accept</label>
</div>
<label for="message">Message</label>
<textarea name="message" cols="30" rows="10"></textarea>
<button type="submit">Submit</button>
</form>
</div>
</div>
</body>
</html>