-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (102 loc) · 3.68 KB
/
index.html
File metadata and controls
113 lines (102 loc) · 3.68 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
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
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />
<script src="https://kit.fontawesome.com/d865733e64.js"></script>
<title>Fabricio Polo - Portfolio Pessoal</title>
</head>
<body>
<nav class="navbar">
<a class="logo" href="index.html">Fabricio Polo</a>
</nav>
<section class="main">
<h1>Portfolio Pessoal</h1>
<div class="showcase">
<div class="showcase__project">
<img src="./assets/natours.jpg" alt="Natours" />
<a href="projects/natours/index.html" target="_blank">Natours</a>
</div>
<div class="showcase__project">
<img src="./assets/contactkeeper.jpg" alt="Contact Keeper" />
<a href="https://intense-mesa-54791.herokuapp.com/" target="_blank"
>Contact Keeper</a
>
</div>
<div class="showcase__project">
<img src="./assets/githubfinder.jpg" alt="Github Finder" />
<a
href="https://quizzical-murdock-957d1c.netlify.com/"
target="_blank"
>Github Finder</a
>
</div>
<div class="showcase__project">
<img src="./assets/icamp.jpg" alt="iCamp" />
<a href="https://serene-peak-74874.herokuapp.com/" target="_blank"
>iCamp</a
>
</div>
<div class="showcase__project">
<img src="./assets/todolist.jpg" alt="Lista de Tarefas" />
<a href="projects/todolist/index.html" target="_blank"
>Lista de Tarefas</a
>
</div>
<div class="showcase__project">
<img src="./assets/colorgame.jpg" alt="Adivinhe a Cor" />
<a href="projects/colorgame/index.html" target="_blank">Color Game</a>
</div>
<div class="showcase__project">
<img src="./assets/contador.jpg" alt="Contador" />
<a href="projects/contador/index.html" target="_blank">Contador</a>
</div>
<div class="showcase__project">
<img src="./assets/tictactoe.jpg" alt="Jogo da Velha" />
<a href="projects/tictactoe/index.html" target="_blank"
>Jogo da Velha</a
>
</div>
<div class="showcase__project">
<img src="./assets/musician.jpg" alt="Musician Page" />
<a href="projects/musician/index.html" target="_blank"
>Musician Page</a
>
</div>
<div class="showcase__project">
<img src="./assets/hippiechick.jpg" alt="HippieChick Noms" />
<a href="projects/hippiechick/index.html" target="_blank"
>HippieChick Noms</a
>
</div>
<div class="showcase__project">
<img src="./assets/cssloaders.jpg" alt="CSS Loaders" />
<a href="projects/cssloaders/index.html" target="_blank"
>CSS Loaders</a
>
</div>
<div class="showcase__project">
<img src="./assets/chat.jpg" alt="CHAT - Landing Page" />
<a href="projects/chat/index.html" target="_blank"
>CHAT - Landing Page</a
>
</div>
</div>
</section>
<section class="contact">
<div class="social-media">
<p>Me encontre no LinkedIn:</p>
<a href="https://www.linkedin.com/in/fabricio-polo/" target="_blank">
<i class="fab fa-linkedin social-media__icon"></i>
</a>
</div>
</section>
<footer>
<p>
© 2019 Fabricio Polo. Para fins de divulgação de Portfolio somente.
</p>
</footer>
</body>
</html>