-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathi2.html
More file actions
93 lines (86 loc) · 1.17 KB
/
i2.html
File metadata and controls
93 lines (86 loc) · 1.17 KB
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
<html>
<head>
<style>
#outer{
height: 900px;
width: 900px;
border: 1px solid;
}
#row1{
height: 300px;
width: 900px;
//border: 1px solid;
}
#box1{
height: 300px;
width: 300px;
background-color:#0b052ff0;
float: left;
}
#box2{
height: 300px;
width: 300px;
background-color: #2813a1;
float: left;
}
#box3{
height: 300px;
width: 300px;
background-color: yellow;
float: left;
}
#row2{
height: 300px;
width: 900px;
//border: 1px solid;
}
#box4{
height: 300px;
width: 300px;
background-color: rgb(29, 123, 29);
float:left;
}
#box5{
height: 300px;
width: 600px;
background-color: red;
float:right;
}
#row2{
height: 300px;
width: 900px;
//border: 1px solid;
}
#box6{
height: 300px;
width: 300px;
background-color: #2813a1;
float:left;
}
#box7{
height: 300px;
width: 600px;
background-color: red;
float:right;
}
</style>
</head>
<body>
<div id="outer">
<div id="row1">
<div id="box1"></div>
<div id="box2"></div>
<div id="box3"></div>
</div>
<div id="row2">
<div id="box4"></div>
<div id="box5"></div>
</div>
<div id="row3">
<div id="box6"></div>
<div id="box7"></div>
</div>
</div>
</div>
</body>
</html>