-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (66 loc) · 3.84 KB
/
index.html
File metadata and controls
79 lines (66 loc) · 3.84 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
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UFT-8">
<meta name="viewport" content="width=device-width">
<title style="text-align: center"> Alura Barber Shop</title>
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="box">
<h1>
<a href="index.html">
<img src="./images/logo.png">
</a>
</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Produtos</a></li>
<li><a href="contact.html">Contato</a></li>
</ul>
</nav>
</div>
</header>
<img class="banner" src="./images/banner.jpg">
<main>
<section class="principal">
<h2 class="principal-title">Sobre a Alura Barber Shop</h2>
<img class="utensilios" src="./images/utensilios.jpg" alt="Utensilios de barbeiro">
<p class="mission-paragraph">Localizada no coração da cidade a <strong>Barbearia Alura</strong> traz para o mercado o que há de melhor para o seu cabelo e barba. Fundada em 2019, a Barbearia Alura já é destaque na cidade e conquista novos clientes a cada dia.</p>
<p class="mission-paragraph" id="mission"><em>Nossa missão é:<strong>"Proporcionar auto-estima e qualidade de vida aos clientes".</strong> </em></p>
<p class="mission-paragraph">Oferecemos profissionais experientes e antenados às mudanças no mundo da moda. O atendimento possui padrão de excelência e agilidade, garantindo qualidade e satisfação dos nossos clientes.</p>
</section>
<section class="map">
<h3 class="principal-title">Nosso Estabelecimento</h3>
<p>Nosso estabelecimento está localizado no coração da cidade</p>
<div class="map-content">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d1292.7491959711385!2d-46.633051772814184!3d-23.588300618286475!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x94ce5a2b2ed7f3a1%3A0xab35da2f5ca62674!2sCaelum%20-%20Escola%20de%20Tecnologia!5e0!3m2!1spt-BR!2sbr!4v1586744430402!5m2!1spt-BR!2sbr" width="100%" height="300" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
</section>
<section class="benefits">
<h3 class="principal-title">Benefícios</h3>
<div class="content-benefits">
<ul class="list-benefits">
<li class="items">Atendimento aos Clientes</li>
<li class="items">Espaço diferenciado</li>
<li class="items">Localização</li>
<li class="items">Profissionais Qualificados</li>
<li class="items">Pontualidade</li>
<li class="items">Limpeza</li>
</ul><img src="./images/beneficios.jpg" class="image-benefits">
</div>
<div class="video">
<iframe width="100%" height="315" src="https://www.youtube.com/embed/wcVVXUV0YUY" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</section>
</main>
<footer>
<img src="images/logo-branco.png">
<p class="copyright">© Copyright Alura Barber Shop 2019</p>
</footer>
</body>
</html>