We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c967c42 commit 2896f50Copy full SHA for 2896f50
05_DOM/01_Index.html
@@ -0,0 +1,35 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+<head>
4
+ <meta charset="UTF-8">
5
+
6
+ <title>DOM Learning</title>
7
+ <style>
8
+ .bg-black{
9
+ background-color: #212121;
10
+ color: #fff
11
+ }
12
+ </style>
13
+</head>
14
+<body class="bg-black">
15
+ <div>
16
+ <h1 id="title" class="heading">DOM Learning on Chai aur Code. <span>Hello World.</span></h1>
17
+ <h2>Lorem, ipsum dolor.</h2>
18
+ <p>Lorem ipsum dolor sit amet.</p>
19
+ <ul>
20
+ <li class="List-item">One</li>
21
+ <li class="List-item">Two</li>
22
+ <li class="List-item">Three</li>
23
+ <li class="List-item">Four</li>
24
+ </ul>
25
+ </div>
26
+</body>
27
+</html>
28
+<!--
29
+ Window
30
+ Document
31
+ HTML
32
+ Head Body
33
+ Title Meta Div
34
+ h1 p
35
+ -->
0 commit comments