-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (35 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MY first web</title>
<style>
table,td,th,tr{
border:1px solid black;
border-collapse: collapse;
}
</style>
</head>
<body>
<h1>Hello World</h1>
<p>Hey! This is Nitish </p>
<img src="https://th.bing.com/th/id/R.7f34a70a5bee79488309934920d316cb?rik=IRJI6pSFo6OI%2fQ&riu=http%3a%2f%2fallpicts.in%2fwp-content%2fuploads%2f2018%2f03%2fNatural-Images-HD-1080p-Download-with-Keyhole-Arch-at-Pfeiffer-Beach.jpg&ehk=JPI0MFI04N62Xtd7MT1P2sw4vJgwODLsp1EcpgvuGFo%3d&risl=&pid=ImgRaw&r=0" height="300px" width="500px">
<ol>
<Li>List 1</Li>
<Li>List 2</Li>
</ol>
<p style="color: #c70039;font-size: 50px;background-color: grey;">Hello India</p>
<table>
<tr><th>Name</th> <th>Age</th></tr>
<tr><td>Nitish</td> <td>20</td></tr>
<tr><td>Ravi</td> <td>21</td></tr>
<tr><td>Manikant</td> <td>21</td></tr>
</table>
<ul>
<Li>List 5</Li>
<Li>List 7</Li>
</ul>
</body>
</html>