-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojetos.html
72 lines (66 loc) · 3.84 KB
/
projetos.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
<!DOCTYPE html>
<html lang="pt-br">
<head class="cabeca">
<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>Projetos</title>
<link rel="icon" href="./assets/ico.ico">
<link rel="stylesheet" href="./styles/projetos.css">
</head>
<body>
<header class="cabecalho">
<nav class="cabecalho__menu">
<a class="cabecalho__menu__link" href="index.html">Home</a>
<a class="cabecalho__menu__link" href="about.html">Sobre</a>
<a class="cabecalho__menu__link" href="cv.html">CV</a>
<a class="cabecalho__menu__link" href="projetos.html">Projetos</a>
</nav>
<br>
<a class="mouse_img" onclick="scrollDown()">
<img src="./assets/mouse.png" alt="Botão de Rolagem">
</a>
</header>
<img class="art" src="./assets/arte.gif" alt="IAauto-paint">
<main class="corpo">
<h1 class="titulo-destaque">PROJETOS:</h1>
<div class="div">
<h2>Linguagens:</h2>
<b><p>HTML, CSS e JS</p></b>
<p>Este site é um dos meus projetos de front-end! Veja meus outros sites nos links abaixo.</p>
<br>
<nav class="nav">
<a class="nav_links" href="https://github.com/jpgercc/A3-WomenInTech">Site Mulheres na Tecnologia - HTML/CSS</a>
<a class="nav_links" href="https://github.com/jpgercc/Basic-Landing-Page">Site exemplo para Cliente - HTML/CSS</a>
<a class="nav_links" href="https://github.com/jpgercc/Landing_Page_RotNet">Site exemplo para Empresa - HTML/CSS</a>
<a class="nav_links" href="https://github.com/jpgercc/Jogos-HTML">Jogos - HTML/CSS/JavaScript</a>
<a class="nav_links" href="https://github.com/jpgercc/freeway-game">Jogo Freeway - JavaScript</a>
</nav>
<br>
<h2>Linguagens:</h2>
<b><p>Python, Java e SQL</p></b>
<br>
<nav class="nav">
<a class="nav_links" href="https://github.com/jpgercc/App-Adocao-MVC">App de Adoção - Java e SQL</a>
<a class="nav_links" href="https://github.com/jpgercc/Batalha-Naval">Batalha Naval - Java</a>
<a class="nav_links" href="https://github.com/jpgercc/Pass_Maneger">App Gerenciador de Senhas - Java</a>
<a class="nav_links" href="https://github.com/jpgercc/CoinFlipper">App para Indecisos - Java</a>
<a class="nav_links" href="https://github.com/jpgercc/PassMan">Gerenciador de Senhas - Java</a>
<a class="nav_links" href="https://github.com/jpgercc/PongGPT">Jogo Pong com GPT3 - Java</a>
<a class="nav_links" href="https://github.com/jpgercc/scripts">Scripts de Automações - Python</a>
<a class="nav_links" href="https://github.com/jpgercc/Snake-Game">Famoso "Jogo da Cobrinha" - Python</a>
<a class="nav_links" href="https://github.com/jpgercc/PomodoroTimers">Pomodoro Timer - Python</a>
<a class="nav_links" href="https://github.com/jpgercc/python_jogos">Orientação Objetos - Python</a>
<a class="nav_links" href="https://github.com/jpgercc/python_jogos">Jogo Forca - Python</a>
<a class="nav_links" href="https://github.com/jpgercc/python_jogos">Jogo adivinhação - Python</a>
<p>Acesse todos meus projetos via <a class="nav_links" href="https://github.com/jpgercc">GitHub.</a> </p>
</nav>
</div>
</main>
<footer class="rodape">
<p>Site em desenvolvimento por:</p>
<p> João Pedro Gershenson Costa.</p>
</footer>
<script src="./script.js"></script>
</body>
</html>