forked from thevanshjain/basic-html-tag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (53 loc) · 1.16 KB
/
Copy pathindex.html
File metadata and controls
62 lines (53 loc) · 1.16 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
<html>
<head>
<title></title>
<style>
body{
background: grey
}
h1,h4,h6{
color: blue
}
header{
background: brown
}
</style>
</head>
<body>
<!--this is a header tag-->
<header>
This is the h1 tag inside header tag
</header>
<!-- this is a h2 tag -->
<h2>this is a h2 tag </h2>
<!-- this is a h3 tag -->
<h3>this is a h3 tag </h3>
<!-- this is a h4 tag -->
<h4>this is a h4 tag </h4>
<!-- this is a h5 tag -->
<h5>this is a h5 tag </h5>
<!-- this is a h6 tag -->
<h6>this is a h6 tag </h6>
<!-- this is a paragraph tag -->
<p>this is a paragraph tag with some values in it. </p>
<!--This is a horizontal rule -->
<hr size="3" noshade>
<br>
<!-- this is a paragraph tag -->
<p>this is a paragraph tag with some values in it. </p>
<pre>This is an pre tag </pre>
<!-- this is the image tag-->
<img src="g.jpg" width="140" height="135" alt="Dhawal">
<a href="http://www.google.co.in" target="_parent">"Google"</a>
<button>Press</button>
<a href="https://www.w3schools.com">Visit W3Schools.com!</a>
<ul>
<li>this is 1</li>
<li>thiss is 2</li>
</ul>
<ol>
<li>this s 1</li>
<li>this is2 </li>
</ol>
</body>
</html>