-
Notifications
You must be signed in to change notification settings - Fork 0
/
new.html
56 lines (47 loc) · 925 Bytes
/
new.html
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
45
46
47
48
49
50
51
52
53
54
55
<!--
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
p:first-of-type {
color: red;
p{color: blue;}
.aa{ color: yellow; }
p:first-child { color: greeen;
}
</style>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
</head>
<body>
<div class="aa">
<h1>Heading</h1>
<p>Para 1 this color is red</p>
<p>Paragraph 2</p>
</div>
</body>
</html> -->
<<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.aa{ color: darkred; }
ul li a{ color: blueviolet; }
ul a{color: greenyellow;}
a{color: yellow;}
</style>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
</head>
<body>
<p>Paragraph</p>
<ul>
<li>
<a href="#" class="aa">List item 1 hypertext link color is red</a>
</li>
<li>list item</li>
</ul>
</body>
</html>