-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (74 loc) · 2.73 KB
/
index.html
File metadata and controls
82 lines (74 loc) · 2.73 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
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<title>Leonildo Gomes - Meu site</title>
</head>
<body>
<!-- Inicio Header-->
<nav class="nav">
<ul class="nav-list">
<li><a href="#home">Home</a></li>
<li><a href="#sobre">Sobre </a></li>
<li><a href="#projetos">Projetos</a></li>
</ul>
</nav>
<!-- Fim Header-->
<!-- Inicio Main-->
<section id="home" class="main">
<div class="container">
<h1> Ola, <br> Seja benvindo </h1>
<p>Crie solucoes para seu negocio!</p>
<a href="#projetos">
<button class="call-to-action">
Veja meus projectos 👇
</button>
</a>
</div>
</section>
<!-- Fim Main-->
<!-- Inicio Sobre-->
<section id="sobre" class="about">
<div class="">
<h2>Sobre</h2>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Quas blanditiis, debitis temporibus quis nesciunt aliquam pariatur molestias.
<br><br>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Culpa quidem ea fuga, velit numquam asperiores, officia, aspernatur esse id deleniti voluptate vel repellendus.
</p>
</div>
<img src="images/foto-pc.png" alt="foto minha programando">
</section>
<!-- Fim Sobre-->
<!-- Inicio Projetos-->
<section id="projetos" class="projects">
<div class="">
<h2>Meu Projetos</h2>
<p>Conheca os meus projectos</p>
</div>
<div class="projects-list">
<img src="images/projeto1.png" alt="foto do projeto1">
<img src="images/projeto2.png" alt="foto do projeto2">
<img src="images/projeto3.png" alt="foto do projeto3">
</div>
<div class="projects-list">
<img src="images/projeto3.png" alt="foto do projeto3">
<img src="images/projeto1.png" alt="foto do projeto1">
<img src="images/projeto2.png" alt="foto do projeto2">
</div>
<button class="action"> Faca um orcamento</button>
</section>
<!-- Fim Projetos-->
<footer>
<h3> Leonildo Dev</h3>
<p>Todos os direitos reservados!</p>
</footer>
<!-- Inicio Rodape-->
<!-- Fim rodate-->
</body>
</html>