-
Notifications
You must be signed in to change notification settings - Fork 0
/
projetos.html
51 lines (51 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projetos</title>
<link rel="icon" type="image/x-icon" href="./assets/projetos.png">
<link rel="stylesheet" href="styles.css">
</head>
<body id="projetos">
<header class="cabecalho">
<nav class="navbar">
<a class="navbar_text" href="curriculo.html">home
<img class="iconpng" src="./assets/home.png" alt="home icon">
</a>
<a class="navbar_text" href="habilidades.html">habilidades
<img class="iconpng" src="./assets/habilidades.png" alt="habilidades icon">
</a>
<a data-active="projetos" class="navbar_text" href="projetos.html">projetos
<img class="iconpng" src="./assets/projetos.png" alt="projetos icon">
</a>
</nav>
</header>
<script src="scripts.js"></script>
<main class="main_content">
<section class="content">
<h1 class="titulo_content">Meus <span class="surname">Projetos</span></h1>
<p class="descricao_content" >Vivamus urna nisi, lobortis ut euismod in, sollicitudin ac ipsum. Mauris a libero id velit pulvinar scelerisque at quis magna. Aliquam erat volutpat.
</p>
<div class="projetos_flexbox">
<div class="hover_img">
<img class="projetos_img1" src="./assets/exemplo1.png" alt="Projeto 1">
<div class="texto_hover"> Projeto 1 <br>Pong Clone feito no p5.js </div>
</div>
<div class="hover_img">
<img class="projetos_img2" src="./assets/exemplo2.png" alt="Projeto 2">
<div class="texto_hover">Projeto 2 <br>Midi Board </div>
</div>
<div class="hover_img">
<img class="projetos_img3" src="./assets/exemplo3.png" alt="Projeto 3">
<div class="texto_hover">Projeto 3 <br>Robot Creator </div>
</div>
</div>
<footer class="rodape">Desenvolvido por Marcelo.
</footer>
<div class="espaco_projetos"></div>
<footer class="rodape"> <a href=https://www.inova.ma.gov.br> <img class="rodapeimg_inova" src="./assets/inovalogo.png" alt="logo Inova"></a>
<a href="https://www.alura.com.br/"><img class="rodapeimg_alura" src="./assets/aluralogo.png" alt="logo Alura"></a>
</footer>
</body>
</html>