-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselectors.html
33 lines (33 loc) · 887 Bytes
/
selectors.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name = "viewport"content="width=device-width,initial-scale=1.0">
<meta http-equiv="X-UA-Compatible"content="ie-edge">
<title>css selectors</title>
<style>
.redelement
{
color: coral;
}
/* grouping selectors */
div,footer
{
background-color: blueviolet;
}
</style>
</head>
<body>
<h3>CSS Selectors</h3>
<p>this is a simple paragraph</p>
<p class="redelement"> this is another simple paragraph</p>
<div>
<p>
this is yet anothr irmrgji fjnjnf
</p>
</div>
<footer>
Copyright information
</footer>
</body>
</html>