-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (50 loc) · 1.57 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
<!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>OriginSix</title>
<!-- Styles CSS -->
<link rel="stylesheet" href="styles.css" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Poppins:wght@400;500;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header id="header">
<nav class="container">
<a class="logo" href="#">beauty<span>salon.</span></a>
<div class="menu">...</div>
</nav>
</header>
<main>
<section class="section" id="home">
<div class="container grid">
<div class="image">
<img
src="./Img.svg"
alt="Mulher sorrindo penteando outra mulher no salão de Beleza"
/>
</div>
<div class="text">
<h1>Saúde natural para seus cabelos</h1>
<p>
Um salão exclusico em São Paulo, especializado em tratamentos
naturais
</p>
<a class="button" href="#">Agendar um horário</a>
</div>
</div>
</section>
<div class="divider-1"></div>
<section class="section">
<div class="container">outra section</div>
</section>
</main>
</body>
</html>