-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (120 loc) · 3.23 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!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>Document</title>
<style>
h1 {
color: blue;
}
</style>
</head>
<body>
<h1>Header One</h1>
<h2>Header Two</h2>
<h3>Header Three</h3>
<h4>Header Four</h4>
<h5>Header Five</h5>
<h6>Header Six</h6>
<span>Hey</span>
<br>
<br>
<hr>
<span>
<b>
<u>
<i>Hello</i>
</u>
</b>
</span>
<p>
Lorem ipsum dolor sit amet.
Obcaecati voluptates assumenda excepturi quod?
Sunt incidunt error sed voluptas!
</p>
<strong>This is used in place of b tag</strong> <br>
<em>This is used in place of i tag</em> <br>
<mark>This is my text</mark> <br>
<code>
var i =10; <br>
console.log(i)
</code><br><br>
<small>©All Right reserved to India Mart®</small><br>
(A+B)<sup>2</sup>=A<sup>2</sup>+B<sup>2</sup>+2AB <br><br>
H<sub>2</sub>SO<sub>4</sub> <br><br>
<del>5. This is deprecated not valid point anymore </del><br><br>
<ins>This is new cluase which will come into effect immediately</ins> <br>
<cite>FoutainHead</cite> <br><br>
The quotes says, <q><cite>Excess of anything is dangerous</cite></q>
<p>
The <abbr title="World Wide Web Consortium">W3C</abbr>
is the main organization
</p>
<br><br>
<p> Here is my address :
<address>
Richmond Road, <br>
Lake View, <br>
Chicago <br>
</address>
</p>
<label>This is my page </label>
<label>This is my page</label>
<br><br>
<a href="https://angular.io/" target="_blank">Angular</a> <br>
<a href="https://nodejs.org/" target="_blank">NodeJS</a> <br>
<a href="https://reactjs.org/" target="_blank">ReactJS</a> <br><br>
<a href="./anchor-pages/One.html" target="_blank">Page One</a> <br>
<a href="./anchor-pages/Two.html" target="_blank">Page Two</a> <br>
<a href="./anchor-pages/Three.html" target="_blank">Page Three</a> <br> <br><br>
<img src="https://picsum.photos/id/237/200/300" alt="Cute Dog">
<br><br>
<img src="./images/Breakfast.jpg" alt="Delicous Breakfast">
<br><br><br>
<ul>
<li>Uma</li>
<li>Swathi</li>
<li>Jagrav</li>
<li>Manasvi</li>
</ul>
<ul style="list-style: none;">
<li>Scott</li>
<li>Adam</li>
<li>Tuan</li>
<li>Ravi</li>
</ul>
<ol>
<li>Laptop</li>
<li>Desktop</li>
<li>iPad</li>
<li>Mobile</li>
</ol>
<ol type="A">
<li>Laptop</li>
<li>Desktop</li>
<li>iPad</li>
<li>Mobile</li>
</ol>
<ol type="a">
<li>Laptop</li>
<li>Desktop</li>
<li>iPad</li>
<li>Mobile</li>
</ol>
<ol type="I">
<li>Laptop</li>
<li>Desktop</li>
<li>iPad</li>
<li>Mobile</li>
</ol>
<ol type="i">
<li>Laptop</li>
<li>Desktop</li>
<li>iPad</li>
<li>Mobile</li>
</ol>
<br><br><br><br><br><br><br>
</body>
</html>