-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
76 lines (58 loc) · 2.09 KB
/
contact.html
File metadata and controls
76 lines (58 loc) · 2.09 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
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<title>contact file</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- this is the css files we use -->
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/normalize.css">
</head>
<body>
<div class="container">
<header class="header">
<img class="logo_image" src="./images/logo.png">
<nav>
<ul class="top_menu">
<li><a href="index.html">Home</a></li>
<li><a href="#">Business content</a></li>
<li><a href="#">Company profile</a></li>
<li><a href="#">Contact us</a></li>
</ul>
</nav>
</header>
<img src="./images/contact.png" class="top_img">
<aside class="side_menu">
<nav>
<ul>
<li><a href="#">Business Content</a></li>
<li><a href="#">Company Profile</a></li>
<li class="cont" ><a href="#">Contact Us</a></li>
</ul>
</nav>
</aside>
<aside class="content3">
<form >
<table>
<tr>
<th>email:</th>
<td><input type="email" placeholder="eg:janvier@gmail.com" ></td></tr>
<tr>
<th>Password:</th>
<td><input type="password" placeholder="Password"></td>
</tr>
<tr><th>Gender: </th><div id="radio"><input type="radio" name="gender" value="male" checked> Male
<input type="radio" name="gender" value="female">Female</div></th> </tr>
<br> <th>Question:</th>
<input id="ques" type="textarea"> <br></tr>
</tr>
</table>
<input class="button" type="submit" value="Submit">
</form>
</aside>
<footer class="footer">
<!-- Added -->
<p>Copyright © 2018 DIVE INC All RIGHTS RESERVED.</p>
</footer>
</div>
</body>
</html>