-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (48 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
52
53
54
<!--Passo a passo para inicio do projeto:
*Link rel stylesheet + href para relacionar CSS c/ HTML
* Selecionar fonte do projeto copiar e colar abaixo
*Definir a estrutura da projeto: O que é header(cabeçalho), o que é h1 , h2 , paragrafo , button ,etc;
*Definir a seções(caixas) da pagina;
*Baixar/colocar as imagens <img src="./....);
*Rodar servidor para verificar se está tudo inserido;
*Começar a configurar CSS;
*{margin: 0;
padding: 0;
boxi-sizing: border-box;
font-family: colar;}
*Definir tamanho da pagina: widht: 100vw
height: 100vh
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projeto_2</title>
<link rel="stylesheet" href="./Projeto_2.css">
<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=Oswald&display=swap" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<section class="box_left">
<h1>Easy Shopping
Via Mobile</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing
elit. Donec lorem justo, sollicitudin vel ultricies sed,
eleifend nec metus. Etiam vitae pellentesque dolor. </p>
<button>Get Started</button>
</section>
<section class="box_right">
<header>
<a>Home</a>
<a>Work</a>
<a>About</a>
<a>Contac</a>
</header>
<img src="./Illustration-3-3.png" alt="Girl_and_phone">
</section>
</div>
</body>
</html>