-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (48 loc) · 1.1 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>LDR!</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/estilo-grid.css">
<link rel="stylesheet" type="text/css" href="css/estilo-grid-768.css" media="screen and (min-width:490px) and (max-width:768px)">
<link rel="stylesheet" type="text/css" href="css/estilo-grid-480.css" media="screen and (max-width:480px)">
</head>
<body>
<div id="container">
<div id="header">
<h1>Titulo do site</h1>
</div>
<div id="menu">
<ul>
<li>A.K.A</li>
<li>Born To Die</li>
<li>Paradise</li>
<li>Ultraviolence</li>
<li>Honeymoon</li>
<li>Lust For Life</li>
<li>Norman Fucking Rockwell!</li>
</ul>
</div>
<div id="main">
<div id="menu-lateral">
<ul>
<li>A.K.A</li>
<li>Born To Die</li>
<li>Paradise</li>
<li>Ultraviolence</li>
<li>Honeymoon</li>
<li>Lust For Life</li>
<li>Norman Fucking Rockwell!</li>
</ul>
</div>
<div id="content">
<h1>Titulo do Main</h1>
<p>Texto do Main</p>
</div>
</div>
<div id="footer">
<p> Al rights Reserved.</p>
</div>
</div>
</body>
</html>