-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (37 loc) · 1.75 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-bre">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com"> <!--Rel de relation, faz um pré conexão para gente-->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Moveis Customizados</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Open+Sans:wght@400;700&display=swap" rel="stylesheet">
<!-- link do css, construido pelo google-->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="hero"> <!-- div contém imagem e uma função de texto, é um agrupamento.-->
<img src="images/img1.jpg" alt="Desenho de uma pessoa em uma sala com móveis"/>
<h1>Ambientes <span>únicos</span> para você!</h1>
<p>Nós criamos ambientes <strong>exclusivos</strong> e <strong>únicos</strong>, com muito bom gosto e profissionalismo,
investimos tempo e dedicação no seu projeto.
<br/> <!--quebra de linha no HTML-->
<br/>
<!-- " " é uma forma de dar espaço entre as tags etc...-->
Tenha <span>ambientes limpos</span> e bem decorados, transmitindo <strong>elegância</strong>
e <strong>finesse</strong>
para todo aquele que estiver ali.
</p>
</div>
<div id="footer">
<div class="line">
<a target="_blank"
href="https://instagram.com/moveisparavoce">Instagram</a>
<a href="[email protected]">Fale Conosco</a>
</div>
<img id="balls"
src="images/balls.svg"
alt="Bolinhas laranjadas no canto inferior direito da tela"/>
</body>
</html>