-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
48 lines (45 loc) · 1.71 KB
/
portfolio.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
<!doctype html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>Portfolio - Leonardo Oliveira</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Josefin+Slab&display=swap">
<script type="text/javascript" src="js/script.js"></script>
</head>
<body>
<div id="navigation" class="navigation">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="curriculo.html">Currículo</a></li>
<li><a href="contato.html">Contato</a></li>
<li id="nav-toggle" class="nav-toggle" onclick="openmenu()">☰</li>
</ul>
</div>
<div class="main">
<ul class="shortcut">
<li><a href="index.html">Home</a></li>
<li>-></li>
<li>Portfolio</li>
</ul>
<h1>Meus Portfolios</h1>
<p>
Veja os meus trabalhos recentes
</p>
<a class="work-link" href="#">
<div class="work-picture" style="background-image: url('img/test2.jpg')">
<div class="div-effect">
<div class="div-effect-text">
<h1>Em breve</h1>
</div>
</div>
</div>
</a>
<div class="return">
<a href="index.html">← Voltar ao início</a>
</div>
</div>
</body>
</html>