-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout_float.html
More file actions
48 lines (48 loc) · 2.09 KB
/
Copy pathlayout_float.html
File metadata and controls
48 lines (48 loc) · 2.09 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
<!DOCTYPE html>
<html lang="it">
<head>
<title>Layout in position absolute e float</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="css/style_layout_position_absolute_float.css" media="all">
</head>
<body>
<header class="l-main_header">
HEADER
</header>
<aside class="l-main_aside">
ASIDE
</aside>
<article class="l-main_article_side">
<header class="l-sub_header">
SUB HEADER
</header>
<nav class="l-sub_nav">
<button><span>Button</span></button>
<button><span>Button</span></button>
<button><span>Button</span></button>
</nav>
<nav class="l-sub_nav2">
<button><span>Button</span></button>
<button><span>Button</span></button>
<button><span>Button</span></button>
</nav>
<article class="l-sub_article">
SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />
SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />
SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />
SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />
SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />
SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />
SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />SUB ARTICLE<br />
</article>
<footer class="l-sub_footer">
SUB FOOTER
</footer>
</article>
<footer class="l-main_footer">
FOOTER
</footer>
</body>
</html>