-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchapter16(test).html
107 lines (98 loc) · 1.92 KB
/
chapter16(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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<html>
<head>
<style>
div#main{
width: 75%;
position: absolute;
top: 0px;
/* left: 225px; */
float: left;
background-color: yellow;
}
div#extra{
width: 20%;
height: auto;
position: relative;
border:1px solid red;
background-color: yellow;
}
h1{
color: red;
border-bottom: dotted 1px;
}
div.header{
text-align: center;
border: 1px dashed red;
border-radius: 10px;
width: auto;
height: auto;
color: red;
}
div.main{
border: 2px dotted blue;
float:left;
width: 25%;
margin: 0% 15%;
text-align: center;
}
div.extra{
float: left;
width: 25%;
margin: 0 5% 0 0;
}
div.footer{
clear: left;
border: 1px solid black;
}
/* End one episode*/
#wrapper {
background-color: orange;
width: 960px;
margin: 0 auto;
}
#main {
background-color: red;
float: left;
width: 650px;
margin: 0 20px;
}
#extras {
background-color: red;
float: left;
width: 250px;
margin: 0 20px 0 0;
}
#footer {
clear: left;
}
</style>
</head>
<body>
<div id="main">
<h1>First alphabet</h1>
<p> aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
</p>
</div>
<div id="extra">
<h1>Second alphabet</h1>
<p>
<dd>From a day to a day i always think about you no matter what, every day every single day you are always in my heart</dd>
</p>
</div><hr>
<p></p>
<div class="header">Manchester United</div> <p>
<div class="main">Manchester City</div>
<div class="extra">Chelsea</div>
<div class="footer">Arsenal</div><hr>
<div id="wrapper">
<div id="header">Masthead and headline</div>
<div id="main">Main article</div>
<div id="extras">List of links and news</div>
<div id="footer">Copyright information</div>
</div><hr>
</body>
</html>