-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact us.html
69 lines (66 loc) · 1.81 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
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style(exercise9).css">
<title>Contact us.html</title>
</head>
<body>
<div>
<div class="flex-container-header">
<div class="flex-item-1-header">
<a href="index.html"><img src="logo.png" class="logoImg"/></a>
</div>
<div class="flex-item-3-header">
<h1 class="one">Equality</h1>
</div>
<div class="flex-item-2-header">
<ul class="flex-container-ul-top">
<li><a href="kindness3(exercise9).html">Kindness</a></li>
<li><a href="Activism.html">Activism</a></li>
<li><a href="empathy.html">Empathy</a></li>
<li><a href="Contact us.html">Contact us</a></li>
</ul>
</div>
</div>
<br><br><br><br>
<form>
Full Name<br>
<input type="text" name="full_name"><br><br>
Message<br>
<textarea rows="5" cols="60"></textarea><br><br>
How did you hear about us?<br>
<select>
<option value="1">From a friend</option>
<option value="2">From a newspaper</option>
<option value="3">From an ad</option>
<option value="4">Others</option>
</select>
<br><br>
Where do you live?<br>
(This is a datalist. Type a to see a list of options.)<br>
<input list="cities" name="city">
<datalist id="cities">
<option value="Delhi">
<option value="Agartala">
<option value="Ambala">
<option value="Amritsar">
<option value="Asaam">
</datalist>
<br><br><br>
<button onclick="alert('Hurray, you are doing great. Also, I am a button!')">
Click Me!
</button>
</form>
<hr>
<div class="flex-container-footer">
<ul class="flex-container2">
<li><a href="Index3(exercise9).html">Home</a></li>
<li><a href="kindness3(exercise9).html">Kindness</a></li>
<li><a href="Activism.html">Activism</a></li>
<li><a href="empathy.html">Empathy</a></li>
<li><a href="Contact us">Contact Us</a></li>
</ul>
</div>
</div>
</body>
</html>