-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsecond.html
More file actions
47 lines (27 loc) · 994 Bytes
/
second.html
File metadata and controls
47 lines (27 loc) · 994 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
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<title>Second Page - Div Example</title>
</head>
<body>
<h1>This is an example of div Tag</h1>
<div name="mydiv" id="d1">
<h3>Example of div Tag</h3>
<p>Hi I am currently learning Div tag example in html</p>
<p>Lets Explore Div's</p>
<p>Hello Welcome to <span style="color:blue;">HTML</span></p>
<b>This is Steve</b>
<p>This is <b>Punit</b></p>
<em>This is emphasis tag</em> <br/>
<i>This is italic tag</i>
<p>Today is 4th <small>May</small>2022</p>
<p>Welcome to <ins>ITV</ins></p>
<p>Hi I am Currently working as <u>SDE</u></p>
<p>Hi Welcome to <del>Mumbai</del></p>
<p>This is an example of <sup>SuperScript</sup></p>
<p>This is an example of <sub>SubScript</sub></p>
<img src="mac.jpeg" alt="macbook" style="width: 200px;">
<a href="first.html">Click Here</a>
</div>
</body>
</html>