-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (66 loc) · 2.1 KB
/
index.html
File metadata and controls
78 lines (66 loc) · 2.1 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
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- This is paragraph -->
<pr>My Name is Santosh kumar</pr>
</head>
<!-- Heading h1 to h6 -->
<!-- <h1>MEERUT INSTITUTE OF TECHNOLOGY</h1>
<h2>MEERUT INSTITUTE OF TECHNOLOGY</h2>
<h3>MEERUT INSTITUTE OF TECHNOLOGY</h3>
<h4>MEERUT INSTITUTE OF TECHNOLOGY</h4>
<h5>MEERUT INSTITUTE OF TECHNOLOGY</h5>
<h6>MEERUT INSTITUTE OF TECHNOLOGY</h6>
<P>Nitish is a good boy</P>
<br/>
<!-- nested break -->
<p>Good boy<br/> is nitish</p>
<!-- link -->
<a href="https://thecodehelp.in" target=" blank">know more</a>
<!-- image -->
<img src="https://assets.telegraphindia.com/telegraph/3ddb981e-0cdc-4624-a426-12190a3459d6.jpg" width="200px" hight="200px"
alt="Gautam gumbhir image">
<!-- Horizontal rule -->
<hr>
<pre>
yar tera
suparstar
Desi kalakar
<pre/> -->
<!-- inline css -->
<p style="color: brown">Baby Baby oooooooooo Baby</p>
<p style="background-color: rgb(116, 165, 42)">Baby Baby oooooooooo Baby</p>
<p style="font-size: large;">Baby Baby oooooooooo Baby</p>
<p style="font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;">Baby Baby oooooooooo Baby</p>
<p style="text-align: center;">Baby Baby oooooooooo Baby</p>
<!-- formatting, bold, italic, small del mark,sup, sub. -->
<p>This is a <del>paragrapah</del> paragraph</p><br>
<b>This is a paragraph</b><br>
<i>This is a paragraph</i><br>
<small>This is<mark>is</mark> a paragraph</small><br>
<del>This is a paragraph</del>
<p>x<sup>2</sup> + y<sup>2</sup> = z<sup>3</sup></p>
a<sub>1</sub> + b<sub>2</sub> = c<sub>3</sub>
<!-- list.... -->
<ul>
<li>meat</li>
<li>fish</li>
<li>Egg</li>
<li>mutton</li>
<li>chicken</li>
<ol>
<li>paneer</li>
<li>Butter paneer</li>
<li>Kadhai paneer</li>
</ol>
</ul>
<ol>
<li>patato</li>
<li>onion</li>
</ol>
<body>
</body>
</html>