-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
124 lines (124 loc) · 4.7 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<title>Portflow - Desafio final Vai na Web Mod 1</title>
</head>
<body>
<header>
<div class="headerContent">
<figure class="menuMobile">
<img src="img/menu.png" alt="Menu Mobile">
</figure>
<figure class="logo">
<img src="img/logo-portflow.png" alt="Logo Portflow">
</figure>
<nav class="mainMenu">
<ul>
<a href="" alt="Home" title="Home">
<li>Home</li>
</a>
<a href="" alt="Blog" title="Blog">
<li>Blog</li>
</a>
<a href="" alt="Valores" title="Valores">
<li>Valores</li>
</a>
<a href="" alt="Portfólio" title="Portfólio">
<li>Portfólio</li>
</a>
<a href="" alt="Contato" title="Contato">
<li>Contato</li>
</a>
</ul>
</nav>
</div>
</header>
<main>
<section class="headerMain">
<div class="mainText">
<h1>Imagine, Discuta, Desenhe.</h1>
<a href="m"><p>Fale Conosco</p></a>
</div>
</section>
<section class="secImages">
<div class="imagesContent">
<figure>
<img src="img/mate.png" alt="Embalagem de Erva Mate">
</figure>
<figure>
<img src="img/pao-queijo.png" alt="Emabalagem de Pão de Queijo">
</figure>
<figure>
<img src="img/peanut.png" alt="Embalagem de Manteiga de Amendoim">
</figure>
<figure>
<img src="img/web-design.png" alt="Composição de Web Design">
</figure>
<figure>
<img src="img/office.png" alt="Composição de Design Office">
</figure>
<figure>
<img src="img/mug.png" alt="Design Caneca">
</figure>
<figure>
<img src="img/web-design-apple.png" alt="Composição de Web Design">
</figure>
<figure>
<img src="img/cereal.png" alt="Embalagem de Cereal">
</figure>
<figure>
<img src="img/application.png" alt="Design de Aplicativo Mobile">
</figure>
<figure>
<img src="img/coffee.png" alt="Design de Café">
</figure>
<figure>
<img src="img/photography.png" alt="Composição de materiais fotográficos">
</figure>
<figure>
<img src="img/polaroid.png" alt="Imagens estilo Polaroid">
</figure>
</div>
</section>
</main>
<footer>
<div class="footerContent">
<nav class="socialMedia">
<a href="" alt="Facebook" title="Facebook">
<img src="img/facebook.png" alt="Facebook">
</a>
<a href="" alt="Twitter" title="Twitter">
<img src="img/twitter.png" alt="Twitter">
</a>
<a href="" alt="Instagram" title="Instagram">
<img src="img/instagram.png" alt="Instagram">
</a>
<a href="" alt="Telegram" title="Telegram">
<img src="img/telegram.png" alt="Telegram">
</a>
<a href="" alt="Whatsapp" title="Whatsapp">
<img src="img/whatsapp.png" alt="Whatsapp">
</a>
<a href="" alt="Youtube" title="Youtube">
<img src="img/youtube.png" alt="Youtube">
</a>
</nav>
<section class="copyright">
<p class="copyTitle">Copyright</p>
<div class="copyText">
<p>Layout produzido por Vai Na Web para fins exclusivamente educacionais.</p>
<p>Referência: https://br.pinterest.com/pin/464644886562510864/</p>
</div>
</section>
<button class="btnTop">
<a href="#">Topo</a>
</button>
</div>
</footer>
</body>
</html>