-
Notifications
You must be signed in to change notification settings - Fork 0
/
html_layout_02.html
159 lines (145 loc) · 2.86 KB
/
html_layout_02.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>D3: tests</title>
<script type="text/javascript" src="d3/d3.v3.js"></script>
<script src="http://d3js.org/d3.geo.projection.v0.min.js" charset="utf-8"></script>
<style type="text/css">
/* ________________________
| Chapeau |
|_______________________|
| Menu |
|_______________________|
| | | |
|type | map |y|
| | |e|
|_____| |a|
| | |r|
|dispo| |s|
| | | |
|_____|_______________|_|
*/
body{
min-height: 100%;
margin: 0;
padding: 0;
border: 0;
}
/* background container */
#container {
background: lightblue;
position:absolute;
width:1300px;
height:850px;
}
/* chapeau */
#chapeau {
background: lightblue;
position:absolute;
width:1300px;
height:100px;
}
/* menus */
#menu {
background: yellow;
position: absolute;
margin-top: 100px;
width:1300px;
height:100px;
}
/* menus, left part */
#menuleft {
background: red;
position: absolute;
width:400px;
height:100px;
}
/* menus, right part */
#menuright {
background: pink;
position: absolute;
margin-left: 400px;
width:900px;
height:100px;
}
/* part for the descriptions, map and years */
#main {
background: lightpink;
position: absolute;
margin-top: 200px;
width: 1300px;
height: 650px;
}
/* description for the map type and volunteer type */
#desc {
background: green;
position: absolute;
width: 200px;
height: 650px;
}
/* years */
#map {
background: orange;
position: absolute;
margin-left: 200px;
width: 1000px;
height: 650px;
}
/* map */
#years {
background: pink;
position: absolute;
margin-left: 1200px;
width: 100px;
height: 650px;
}
/* desc for the map type */
#type {
background: grey;
position: absolute;
width: 200px;
height: 325px;
}
/* desc for the volunteer type */
#dispo {
background: lightgreen;
position: absolute;
margin-top: 325px;
width: 200px;
height: 325px;
}
</style>
</head>
<body>
<div id="container">
<div id="chapeau">
<p>chapeau!</p>
</div>
<div id="menu">
<div id="menuleft">
<p>menu left</p>
</div>
<div id="menuright">
<p>menu right</p>
</div>
</div>
<div id="main">
<div id="desc">
<div id="type">
<p>type de carte</p>
</div>
<div id="dispo">
<p>dispositif</p>
</div>
</div>
<div id="years">
<p>years</p>
</div>
<div id="map">
<p>map</p>
</div>
</div>
</div>
</body>
</html>