-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuniversalSelector.html
More file actions
43 lines (42 loc) · 1.47 KB
/
Copy pathuniversalSelector.html
File metadata and controls
43 lines (42 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Universal Selector</title>
<style>
* {
background-color: #dddddd;
font-size: xx-large;
color: brown;
}
</style>
</head>
<body>
<!--This type of selector selects all of the elements present on the document. And all the settings will be applied on the elements, the styles.-->
<h1>Heading One</h1>
<p>
This is a paragraph.This type of selector selects all of the elements
present on the document. And all the settings will be applied on the
elements, the styles.
</p>
<h2>Heading Two</h2>
<p>
Some paragraph that is written after the second heading.. Thats it im out
of words to write in this paragraph. SO lets just write some random words
in the paragraph which shoul be large in number. I should probabley cope
some thing from somewhere. Any way these are enough. why are you reading
this paragraph with so much interest, there is nothing in this paragraph.
Ive to write it o make this look pretty. Look behind you ajmal. Director
sir is watching you .
</p>
<div>
<h1>Heading Three</h1>
<p>
This type of selector selects all of the elements present on the
document. And all the settings will be applied on the elements, the
styles.
</p>
</div>
</body>
</html>