-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass_id.php
52 lines (51 loc) · 828 Bytes
/
class_id.php
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Class/ID</title>
</head>
<body>
<div class="city">
<h1>London</h1>
<p>London is the capital of England</p>
</div>
<div class="city">
<h1>New York</h1>
<p>New York is the captial of America</p>
</div>
<div class="abc">
<h1>Kuala Lumpur</h1>
<p>KL is the capital of Malaysia</p>
</div>
<div class="abc">
<h1>Penang</h1>
</div>
<div id="bbb">
<h1>ABC</h1>
</div>
<div id="BBB">
<h1>ABC</h1>
</div>
</body>
</html>
<style type="text/css">
.city{
background-color: pink;
color: white;
border: 1px solid black;
margin: 20px;
padding: 20px;
}
.abc{
background-color: skyblue;
border: 1px solid black;
margin: 20px;
padding: 20px;
}
#bbb{
background-color: purple;
border: 1px solid black;
margin: 20px;
padding: 20px;
}
</style>