-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (83 loc) · 2.66 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>my world</title>
</head>
<body>
<div>
<div>
<h2>Features</h2>
<ul>
<li><a href="http://www.zenva.com">Link 1</a></li>
<li><a href="http://www.zenva.com">Link 2</a></li>
<li><a href="http://www.zenva.com">Link 3</a></li>
</ul>
</div>
<div>
<div>Important interview</div>
<div>3:00 - 4:00</div>
<div>December <span>15</span></div>
</div>
<div>
<h2>TODO</h2>
<ol>
<li>Build websites</li>
<li>Build apps</li>
<li>Build games</li>
</ol>
</div>
<div>
<img src="chart.png" width="100" />
<div>4800</div>
</div>
<div>
<table>
<thead>
<tr>
<th>User</th>
<th>Product</th>
<th>Score</th>
</tr>
</thead>
<tbody>
<tr>
<td>User 1</td>
<td>Nice App</td>
<td>45.5</td>
</tr><tr>
<td>User 1</td>
<td>Nice App</td>
<td>45.5</td>
</tr><tr>
<td>User 1</td>
<td>Nice App</td>
<td>45.5</td>
</tr><tr>
<td>User 1</td>
<td>Nice App</td>
<td>45.5</td>
</tr>
</tbody>
</table>
</div>
<div>
<h2>Order foods </h2>
<form>
<select>
<option>Pizza</option>
<option>fast food</option>
<option>fruits</option>
</select>
<input type="number" value="1" />
<input type="text" placeholder="Comments" />
<button>Order</button>
</form>
</div>
<div>
<div>delhi india</div>
<div>45°</div>
</div>
</div>
</body>
</html>