-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1 index.html
More file actions
61 lines (59 loc) · 2.08 KB
/
1 index.html
File metadata and controls
61 lines (59 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en"><!--this defines languages-->
<!--this is my first code-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!--h1,h2,h3 are different headings leavels-->
<!--h1,h2,h3 are headings tags-->
<h1>index file</h1>
<h2>heading tag2</h2>
<h3>heading tag3</h3>
<h4>heading tag4</h4>
<!--paragraph tags-->
<p>paragraph of heading4</p>
<!--anchor tags-->
<a href="https://www.youtube.com/">youtube</a>
<br>
<a href="https://www.google.com/">google</a>
<br>
<!--anchor tags/link tag ,we have linked another page to this page-->
<a href="/link.html">html page link</a>
<br>
<!--img tags for image displaying on page-->
<!--alt tag for image description tags-->
<!--absolute link-->
<img src="https://tse1.mm.bing.net/th?id=OIP.OF59vsDmwxPP1tw7b_8clQHaE8&pid=Api&P=0&h=180"alt="chitra" height="100"/>
<br>
<br>
<!--relative link-->
<img src="Bus_for_project.png" alt="mahesh madarchod bus service"/>
<br>
<!--bold italic and underline tag-->
<b>bold</b>
<br>
<i>italic</i>
<br>
<u>underline</u>
<!--bold italic and underline tag usage inside a paragraph-->
<p><b>paragraph of heading</b>paragraph of heading,paragraph of heading <i>paragraph of heading</i> <u>paragraph of heading</u>paragraph of headingparagraph of headingparagraph of heading paragraph of heading</p>
<br>
<!--small big and underline tagtag-->
<small>this text is small</small>
<br>
<hr>
<br>
<big>this text is big</big>
<br>
<!--sub and super script tag-->
<p>h<sub>2</sub>o</p>
<br>
<p>h<sup>2</sup>o</p>
<!--pre tag-->
<pre>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ab labore minima, maiores enim commodi quia asperiores unde vel nesciunt ea totam doloremque sequi ipsa excepturi nihil? Neque corporis recusandae accusamus!</pre>
<br>
</body>
</html>