-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (127 loc) · 3.93 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
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
<!DOCTYPE html>
<html>
<head>
<title>nome do projeto</title>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1,maximum-scale=1,width=device-width">
<link rel="stylesheet" href="css/normalize.css" />
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="css/font-awesome/css/font-awesome.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<nav>
<ul>
<li>
<a class="scroll" href="#">
<span class="fa fa-home"></span>
<span>Inicio</span>
</a>
</li>
<li>
<a class="scroll" href="#destaque">
<span class="fa fa-star"></span>
<span>Destaques</span>
</a>
</li>
<li>
<a class="scroll" href="#detalhe">
<span class="fa fa-codepen"></span>
<span>Detalhes</span>
</a>
</li>
<li>
<a class="scroll" href="#contact">
<span class="fa fa-at"></span>
<span>Contato</span>
</a>
</li>
</ul>
</nav>
<header>
<div>
<h1>weezer é uma boa banda</h1>
<p>espero que voce veja algum clipe, pelo menos
</p>
<a href="http://google.com">call to action</a>
</div>
</header>
<section class="destaque" id="destaque">
<h2>os melhores cds</h2>
<ul>
<li>
<div></div>
<h3>pinkertown</h3>
</li>
<li>
<div></div>
<h3>destaque 2</h3>
</li>
<li>
<div></div>
<h3>destaque 3</h3>
</li>
</ul>
</section>
<section class="detail">
<h2>Pinkerton</h2>
<p>
algum texto bem longo sobre o pinkerton algum texto bem longo sobre o pinkerton algum texto bem longo sobre o pinkerton
</p>
<div class="img-container outra-classe separa-por-espaco se-tiver-traco-e-uma-classe-so">
<img src="img/destaque-1.jpg" alt="cd pinkerton" />
</div>
</section>
<section class="faixa">
<p>
uma frase bem chamativa bem aqui mesmo, cara
</p>
</section>
<section class="detail detail-right" id="detalhe">
<h2>Pinkerton</h2>
<p>
algum texto bem longo sobre o pinkerton algum texto bem longo sobre o pinkerton algum texto bem longo sobre o pinkerton
</p>
<div class="img-container outra-classe separa-por-espaco se-tiver-traco-e-uma-classe-so">
<img src="img/destaque-1.jpg" alt="cd pinkerton" />
</div>
</section>
<section class="contact" id="contact">
<h2>Contato</h2>
<p>
escrever qualquer coisa aleatória sobre weezer e entrar em contato
escrever qualquer coisa aleatória sobre weezer e entrar em contato
</p>
<ul>
<li><a href="tel:+551533333333">(15) 3333-3333</a></li>
<li><a href="mailto:[email protected]">[email protected]</a></li>
</ul>
</section>
<footer>
<ul>
<li>
<a href="#" target="_blank">
<span class="fa fa-facebook"></span>
</a>
</li>
<li>
<a href="#" target="_blank">
<span class="fa fa-twitter"></span>
</a>
</li>
<li>
<a href="#" target="_blank">
<span class="fa fa-reddit"></span>
</a>
</li>
<li>
<a href="#" target="_blank">
<span class="fa fa-steam"></span>
</a>
</li>
</ul>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>