-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout_Us.html
173 lines (148 loc) · 3.49 KB
/
About_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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html lang = "en">
<head>
<title>About Us</title>
<link href="styles/styles.css" rel="stylesheet" type="text/css">
<meta charset="UTF-8">
<meta name="keywords" content="HTML,CSS,JavaScript">
<meta name="author" content="LIS GROUP 7">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
nav ul{
background-color: #000000;
}
nav li a{
color: white;
}
nav li a:hover {
background-color: #87CEEB;
}
.active {
background-color: #4CAF50;
color: white;
}
nav li a:hover:not(.active){
background-color: #708090;
}
body{
background-color:#e6e6e6;
}
header p h2{
color: #87CEEB;
text-align:center;
}
input[type = text] {
width: 30%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
background-color: #f8f8f8;
}
input[type=email] {
width: 30%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
background-color: #f8f8f8;
}
textarea {
width: 30%;
height: 150px;
padding: 12px 20px;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
background-color: #f8f8f8;
font-size: 16px;
resize: none;
}
---------------\div-------------
#simpleform{
margin: 20px;
border-left: 1px solid gray;
padding: 10px;
overflow: hidden;
background-color: #e6e6ff;
}
#part3{
float: left;
max-width: 240px;
padding: 10px ;
position: center;
}
#part1{
margin: 50px;
margin-left: 10%;
margin-right: 10;
position: center;
}
#part4{
margin: 50px;
margin-left: 10%;
margin-right: 10;
position: center;
}
.contact{
text-align:center;
color:orange;
}
</style>
</head>
<body>
<header>
<h2>CONTACT US</h2>
</header>
<nav class = "navbar">
<ul>
<li><a href="HomePage.html">HOME</a></li>
<li><a href="Baherero.html">BAHERERO</a></li>
<li><a href="Batswapong.html">BATSWAPONG</a></li>
<li><a href="basarwa.html">BASARWA</a></li>
<li><a class="active" href="About_Us.html">ABOUT US</a></li>
</ul>
</nav>
<div id="part1">
<div id="part3">
<p> ☎ +267 11 234 567</p>
<p> ✉ email: mybotswanaethnicgroups.co.bw</p>
<hr>
<p class="contact"><i>our contact info</i></p>
</div>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<div id="part2">
<form id="simpleform">
<input type="email" placeholder=" enter email">
<br>
<br>
<input type="text" placeholder="name">
<br>
<br>
<textarea name="message" rows="10" cols="30" placeholder="type your inquiry/comment here"></textarea>
<br>
<br>
<input type="submit" value="Send">
</form>
</div>
<h2 style= "color: #87CEEB; text-align:center;">ABOUT US</h2>
</div>
<div id = "part4">
<P>Abel Moremi</P>
<p>Katlego Maplanka</p>
<p>Thuto Ngwato</p>
<p>Ritah Lematle</p>
<p>Beatrice Nyambe</p>
</div>
</body>
</html>