-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (96 loc) · 3.54 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css">
<title>Portfolio</title>
</head>
<body>
<header>
<section id="presentation">
<div class="social">
<a href="https://www.linkedin.com/in/gabscampos" type="button" target="_blank">linkedin</a>
<a href="https://github.com/shummuy" target="_blank" type="button">github</a>
</div>
<div class="presentation container">
<div class="presentation-central">
<h1>Olá!<span></span></h1>
<h1>Meu nome é<span></span></h1>
<h1>Gabriel<span></span></h1>
<a href="#about" type="button" class="cta">Sobre mim</a>
<a href="#portfolio" type="button" class="cta">Portfolio</a>
</div>
</div>
</section>
</header>
<main>
<section id="about">
<h1 class="title">Sobre mim</h1>
<a id="profile" href="https://www.linkedin.com/in/gabscampos/" target="_blank"><img src="./img/gabriel.jpg" alt="Gabriel"/></a>
<div class="descricao">
<p>Me chamo Gabriel Campos, e sou um futuro programador!</p>
<h2>Meus conhecimentos.</h2>
<img class="logo" src="./img/htmljscss.png" alt="" />
</div>
</section>
<section id="portfolio">
<h1 class="title">Portfolio</h1>
<div class="portfolio-wrapper">
<div class="portfolio-box">
<div class="portfolio-info">
<h2 class="subtitle">Sorteador FIFA</h2>
<p>
Um sorteador criado do zero por mim, para uso próprio com amigos.
Todo código é feito em Javascript, rodando aleatoriamente times
separados em 3 grupos. Tendo 10 times em cada grupo, com opção de
misturar todos os times.
</p>
</div>
<div class="portfolio-img">
<a href="https://shummuy.github.io/sorteadorv2" target="_blank"><img class="fifa" src="./img/sorteador.png" alt="img"/></a>
</div>
</div>
<div class="portfolio-box">
<div class="portfolio-info">
<h2 class="subtitle">Espaço reservado</h2>
<p>
Espaço resevado para projetos futuros! Veja um dos meus projetos anteriores.
</p>
</div>
<div class="portfolio-img">
<a href="#portfolio"><img class="working" src="./img/work.jpg" alt="img"/></a>
</div>
</div>
</div>
</section>
</main>
<a id="button-top" href="#presentation">
<svg
width="40"
height="40"
viewBox="0 0 40 40"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="20" cy="20" r="20" fill="#daa520" />
<path
d="M20 27V13"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M13 20L20 13L27 20"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</a>
<footer>Feito por Gabriel Campos</footer>
<script src="js/main.js"></script>
</body>
</html>