-
Notifications
You must be signed in to change notification settings - Fork 1
/
bg-test.html
56 lines (39 loc) · 981 Bytes
/
bg-test.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
56
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: #fcc;
color: #00f;
}
div#bgimage {
background-image: url('paper.gif');
color: #fff;
}
div#bgimage2 {
background-image: url('paper.gif');
}
div#bgimage p {
background-color: #000;
}
div#bgcolor {
background-color: #0cf;
color: ccc;
}
input {
}
</style>
</head>
<body>
<h1>Hello World!</h1>
<div id="bgimage"><h1>Hello Again!</h1><p>This paragraph has a background image.</p></div>
<div id="bgimage2"><h1>Hello Again!</h1><p>This paragraph has a background image.</p></div>
<div id="bgcolor"><h1>Hello Again!</h1><p>This paragraph has a background color.</p></div>
<div><h1>Hello Again!</h1><p>This paragraph has no background color.</p></div>
<p>This is an inline image: <img src="paper.gif" alt="paper"></p>
<input type="button" value="Click me">
<button>Click me</button>
<input type="checkbox">
<input type="radio">
</body>
</html>