-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (27 loc) · 891 Bytes
/
Copy pathindex.html
File metadata and controls
32 lines (27 loc) · 891 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title id ="title" class = "heading">FIRST DOM</title>
</head>
<body style ="background-color:#212121;color:#fff">
<h1 id ="heading">This is the body</h1>
<h2>And we are moving ahead</h2>
<div class ="parent">
<div class ="day">Monday</div>
<div class ="day">Tuesday</div>
</div>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit.
Fugiat veniam doloremque, quibusdam consectetur enim voluptatibus
ducimus vel unde veritatis, repellendus esse temporibus fugit
commodi labore aspernatur laboriosam sit ipsa ipsam.
</p>
<ul>
<li>Pehla</li>
<li id ="second">Doosra</li>
</ul>
<script src ="forind.js"></script>
</body>
</html>