-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path13.display_code.html
More file actions
62 lines (56 loc) · 908 Bytes
/
13.display_code.html
File metadata and controls
62 lines (56 loc) · 908 Bytes
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
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset ="utf-8">
<title>
display
</title>
<style>
.bluebox{
background-color: #3A5795;
color: white;
height: 100px;
width:auto;
/* visibility: hidden;
*/
/* display: none;
*/
}
.yellowbox{
background-color: rgb(222, 224, 85);
height: 100px;
width: auto;
}
.greenbox{
background-color: #31af37;
height: 100px;
width: auto;
}
.great{
background-color: #5a3479;
display: block;
}
</style>
</head>
<body>
<div class="bluebox">
<p>
Facebook is
<span class="great">
great
</span>
.
</p>
</div>
<div class="yellowbox">
<p>
Apple.
</p>
</div>
<div class="greenbox">
<p>
Microsoft.
</p>
</div>
</body>
</html>