-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (87 loc) · 3.23 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfólio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="navbar">
<h1>Meu Portfólio</h1>
<nav>
<ul>
<li><a href="#sobre">Sobre</a></li>
<li><a href="#projetos">Projetos</a></li>
<li><a href="#contato">Contato</a></li>
</ul>
</nav>
</div>
</header>
<section class="hero">
<div class="hero-content">
<h2>Bem-vindo ao Meu Portfólio</h2>
<p>Veja meus projetos</p>
<a href="#projetos" class="btn">Ver Projetos</a>
</div>
</section>
<section id="sobre">
<h2>Sobre</h2>
<p>Repositório para postar projetos em javascript</p>
</section>
<section id="projetos">
<h2>Projetos</h2>
<div class="project-grid">
<div class="project">
<h3>Weather App</h3>
<a href="/weather-app/index.html"> Acesse Aqui </a>
</div>
<div class="project">
<h3>Gambling Project</h3>
<a href="/gambling-project/index.html"> Acesse Aqui </a>
</div>
<div class="project">
<h3>To-do List</h3>
<a href="/todo-list/index.html"> Acesse Aqui </a>
</div>
<div class="project">
<h3>Space Invaders</h3>
<a href="/space-invaders/index.html"> Acesse Aqui </a>
</div>
</div>
</section>
<section id="projetos-js">
<h2>Projetos github</h2>
<div class="project-grid">
<div class="project">
<h3>Projeto Calculus</h3>
<a href="https://github.com/fga-eps-mds/2024.1-CALCULUS-DOC"> Acesse Aqui </a>
</div>
<div class="project">
<h3>Curriculo</h3>
<a href="https://github.com/Nanashii76/curriculo"> Acesse Aqui </a>
</div>
<div class="project">
<h3>White Board</h3>
<a href="https://github.com/Nanashii76/whiteBoard"> Acesse Aqui </a>
</div>
<div class="project">
<h3>Bot de música (discord)</h3>
<a href="https://github.com/Nanashii76/youBot"> Acesse Aqui </a>
</div>
<div class="project">
<h3>Gerador de qr-code</h3>
<a href="https://github.com/Nanashii76/qr-code-generator"> Acesse Aqui </a>
</div>
</div>
</section>
<section id="contato">
<h2>Contato</h2>
<p>Github: <a href="https://github.com/Nanashii76">Nanashii76</a></p>
</section>
<footer>
<p>© 2024 Paulo Lamounier. Todos os direitos reservados.</p>
</footer>
</body>
</html>