-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDay2.html
More file actions
30 lines (29 loc) · 910 Bytes
/
Day2.html
File metadata and controls
30 lines (29 loc) · 910 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
<!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>
<!-- Heading -->
<h1>Welcome</h1>
<p><b>lorem</b> <i> Allwina</i>ipsum dolor sit amet consectetur, adipisicing elit. Illo quam dolores optio obcaecati molestias quo, facilis recusandae voluptas debitis rerum tempora rem nostrum? Mollitia voluptatem eos nam velit reiciendis adipisci.</p>
<!-- Two types of listing -->
<!-- Ordered Listing -->
<ol type="i">
<li>A</li>
<li>B</li>
</ol>
<hr>
<!-- Unordered listing -->
<ul>
<li>A</li>
<li>B</li>
</ul>
<hr>
<!-- Anchor tag -->
<a href="https://www.google.com" target="blank">Google</a>
</body>
</html>