-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (87 loc) · 3.18 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Learn HTML</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<div id="header">
<h1 id="head1"> My website </h1>
</div>
<div id="nav">
<ul>
<a href="index.html"> <li> Home </li> </a>
<a href="test/link.html"> <li> Essay </li> </a>
<a href="test/link.html"> <li> Projects </li> </a>
<a href="test/link.html"> <li> Contact me </li> </a>
</ul>
</div>
<div id="main">
<div id="left">
<a href="http://www.google.com"> Google </a> <br>
<img src="Incineroar.png" alt="Incineroar" title="Incineroar" width="100" height="100">
</div>
<div id="right">
<form action="">
<h2 style="text-align: center;"> Survey </h2>
<hr>
<table>
<tr>
<td> <label for="user"> Username </label> </td>
<td> <input type="text" name="user" id="user"> </td>
</tr>
<tr>
<td> <label for="password"> Password </label> </td>
<td> <input type="password" name="password" id="password"></td>
</tr>
<tr>
<td> <label> Gender </label> </td>
<td> Male <input type="radio" name="gender" value="male"> <br>
Female <input type="radio" name="gender" value="female"> <br>
Other <input type="radio" name="gender" value="other"> </td>
</tr>
<tr>
<td> <label> Likes </label> </td>
<td> Apple <input type="checkbox" name="apple" value="apple"> <br>
Banana <input type="checkbox" name="banana" value="banana"> <br>
Orange <input type="checkbox" name="orange" value="orange"> </td>
</tr>
<tr>
<td> <label for="country"> Age </label> </td>
<td>
<select name="country" id="country">
<option value=""> Select your age </option>
<option value="18"> 0-17 </option>
<option value="35"> 18-34 </option>
<option value="50"> 35-49 </option>
<option value="65"> 50-64 </option>
<option value="100"> 65+ </option>
</select>
</td>
</tr>
<tr>
<td> <label for="comments"> Comments </label> </td>
<td> <textarea name="comments" id="comments" cols="40" rows="10"></textarea> </td>
</tr>
<tr>
<td></td>
<td> <input type="submit" value="Click to submit" name="submit"> </td>
</tr>
</table>
</form>
</div>
<div style="clear:both;"></div>
</div>
<div id="footer"></div>
</div>
<!--
<nav>
</nav>
<br><br><br><br>
-->
</body>
</html>