-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (55 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500&family=Parisienne&display=swap" >
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.0/css/all.css" integrity="sha384-OLYO0LymqQ+uHXELyx93kblK5YIS3B2ZfLGBmsJaUyor7CpMTBsahDHByqSuWW+q" crossorigin="anonymous">
<title>Cabeleleila Leila</title>
</head>
<body>
<header class="header">
<div class="nav_background">
<nav class="nav">
<div class="nav_logo">
<img src="img/logo.png" alt="logotipo salão" class="logo_img">
<h1 class="title">Cabeleleila Leila</h1>
</div>
<ul class="nav_menu">
<li><a class="active" href="#home">Home</a></li>
<li><a href="#produtos">Produtos</a></li>
<li><a href="#sobre">Sobre</a></li>
</ul>
</nav>
</div>
</header>
<main class="lista_produtos">
<section class="produtos" id="produtos">
<div class="card">
<img src="./img/cabelos.jpg" alt="mulher secando cabelos">
<span>Cabelos</span>
</div>
<div class="card">
<img src="./img/unhas.jpg" alt="mulher pintando as unhas">
<span>Unhas</span>
</div>
<div class="card">
<img src="./img/hidratacao.jpg" alt="spray sendo utilizado em cabelo comprido ondulado">
<span>Hidratação</span>
</div>
<div class="card">
<img src="./img/eunhas.jpg" alt="mão com unhas pintadas">
<span>E Unhas</span>
</div>
</section>
</main>
<footer>
<div class="sobre" id="sobre">
<img src="./img/logo.png" alt="logotipo">
<span>© Feito por Fernanda - 2020 <i class="fas fa-heart"></i></span>
</div>
</footer>
</body>
</html>