forked from MadullapalliSupriya/SVEC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.html
More file actions
44 lines (42 loc) · 1 KB
/
Copy pathsample.html
File metadata and controls
44 lines (42 loc) · 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div>
<h1 style="background-color: red;">heading1</h1>
<h2>heading2</h2>
<h3>heading3</h3>
<h4>heading4</h4>
<h5>heading6</h5>
<h6>heading6</h6>
<p>This is paragraph</p>
</div>
<div>
<span style="background-color: yellow;">Text1</span> hi hello here is your info
<span>Text2</span>
<sup>wel</sup>
<sub>come</sub>
</div>
<section>
<h1>Web Technologies</h1>
<p>Frontend Developer must have good knowledge on Web Technologies</p>
</section>
<nav>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
<ol>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ol>
</nav>
</body>
</html>