-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirst.html
More file actions
41 lines (40 loc) · 769 Bytes
/
first.html
File metadata and controls
41 lines (40 loc) · 769 Bytes
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
<html>
<head>
<title>My HTML</title>
</head>
<body>
<h1>Welcome to HTML</h1>
<h2>Welcome to HTML</h2>
<h3>Welcome to HTML</h3>
<h4>Welcome to HTML</h4>
<h5>Welcome to HTML</h5>
<h6>Welcome to HTML</h6>
<hr>
<br/>
<p>
welcome
<br/>
<strong>to to</strong>
to
HTML
</p>
<hr>
<h1>Orderd List</h1>
<ol>
<li>
<h1>Item 1</h1>
</li>
<li>Item 2</li>
</ol>
<h1>Un Ordered List</h1>
<ul>
<li>
<h1>Item 1</h1>
</li>
<li>Item 2</li>
</ul>
<a href="list.html" target="blank">Click here to go to google</a>
<img src="http://www.cognizant.com/dotcom-images/COG_Q4_MARQUEE_1029_Retail.jpg" />
<img src="accordian.jpg" width="300px" height="200px" />
</body>
</html>