forked from asquarezone/UIZone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSSSelectorsExample.html
More file actions
42 lines (35 loc) · 1.02 KB
/
CSSSelectorsExample.html
File metadata and controls
42 lines (35 loc) · 1.02 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style>
p,input{
color:RGB(255,0,0);
font-family:'Times New Roman', Times, serif
}
#demo{
color:#00FF00;
font-family:'Times New Roman', Times, serif
}
p.xyz{
color:yellow;
font-family:'Times New Roman', Times, serif
}
.temp{
color:blue;
font-family:'Times New Roman', Times, serif
}
</style>
<link href="StyleSheet.css" rel="stylesheet" />
</head>
<body>
<p>Hello world...!!</p>
<p>Hai world...!!</p>
<p id="demo">Hai world...!!</p>
<p class="temp">Hai world...!!</p>
<input id="Button1" type="button" value="button" class="temp" />
<p class="temp xyz">Hello World multiple classes..!!</p>
<input id="Button1" type="button" value="button" class="xyz" />
<input id="Button1" type="button" value="button" />
</body>
</html>