-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (122 loc) · 4.35 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 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"
/>
<title>Barbearia Alura</title>
<link
rel="stylesheet"
href="style\index.css"
/>
<script
src="https://kit.fontawesome.com/2f5ce14514.js"
crossorigin="anonymous"
></script>
</head>
<body class="flex flex-col">
<nav
class="flex flex-row flex-wrap align-center justify-center bg-gold w-full text-relaxed uppercase w-full"
>
<img
src="media\logo-branco.png"
alt="Logo da Barbearia Alura"
class="logo"
/>
<ul
class="align-center justify-center no-dots flex flex-row flex-wrap h-full my-auto"
>
<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>
<main>
<section class="w-3/4">
<h2>Sobre a Barbearia Alura</h2>
<div class="flex flex-row align-center justify-center my-10 flex-wrap">
<!-- <img
src="media\utensilios.jpg"
alt="Utensílios de Barbeiro"
class="banner float-left"
height="400px"
/> -->
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3656.448598130907!2d-46.634653385542414!3d-23.588239368469353!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x94ce5a2b2ed7f3a1%3A0xab35da2f5ca62674!2sCaelum%20-%20Escola%20de%20Tecnologia!5e0!3m2!1spt-BR!2sbr!4v1580916426151!5m2!1spt-BR!2sbr"
frameborder="0"
style="border: 0"
allowfullscreen="true"
class="banner map"
></iframe>
<p class="inline-block text-lg prose my-auto">
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>
</div>
<div class="flex flex-row-reverse">
<img
src="media\banner.jpg"
class="banner"
alt="uma Barbearia."
/>
<p class="text-lg prose my-auto">
<!-- prettier-ignore -->
<em class="inline-block">Nossa missão é: <strong>"Proporcionar auto-estima e qualidade de vida aos clientes"</strong>.</em>
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>
</div>
</section>
<section class="w-3/4">
<h2>Benefícios</h2>
<div class="flex flex-row w-full m-2">
<!-- <img
src="media\beneficios.jpg"
class="banner"
width="50%"
alt="uma Barbearia."
/> -->
<iframe
src="https://www.youtube.com/embed/wcVVXUV0YUY"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
class="banner video"
></iframe>
<ul class="my-auto text-lg w-auto no-dots">
<li class="itens">Atendimento aos Clientes</li>
<li class="itens">Espaço diferenciado</li>
<li class="itens">Localização</li>
<li class="itens">Profissionais Qualificados</li>
</ul>
</div>
</section>
<footer
class="flex flex-row align-center justify-center bg-gold w-screen"
>
<span class="my-auto">Made with 💖 by Thomas Verderesi.</span>
<!-- prettier-ignore -->
<a href="http://github.com/tverderesi" class="icon my-auto"><i class="fa-brands fa-github-alt"></i></a>
<a
href="http://twitter.com/tverderesi_dev"
class="icon my-auto"
><i class="fa-brands fa-twitter"></i
></a>
<a
href="https://www.linkedin.com/in/thomas-verderesi-99645073/"
class="icon my-auto"
><i class="fa-brands fa-linkedin"></i
></a>
</footer>
</main>
</body>
</html>