-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPortfolio.html
More file actions
70 lines (60 loc) · 2.62 KB
/
Portfolio.html
File metadata and controls
70 lines (60 loc) · 2.62 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
<!DOCTYPE html>
<html lang="pt-br">
<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">
<title>Home</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
<div class="container">
<a href="profcomp1.github.io/Currículo/" class="branch"><img src="ProfJardel.gif" alt="Minha logo" title="Profcomp1"></a>
<nav class="menu">
<ul>
<li><a class="menu-link" href="index.html">Início</a></li>
<li><a class="menu-link" href="portfolio.html">Portfólio</a></li>
<li><a class="menu-link" href="contato.html">Contato</a></li>
</ul>
</nav>
</div>
</header>
<main class="container">
<section class="card">
<div class="card-img">
<div class="img-body"><img src="ProfJardel.gif" alt="Portfólio 1" title="Portfólio 1"></div>
</div>
<div class="card-body">
<p>
Profcomp1 Meu verdadeiro site
</p>
<p>
O site profcomp1.github.io/Currículo é apenas um site demonstrativo para meus alunos.
Quer conhecer mais, basta acessar.
</p>
</div>
<div class="card-button">
<a href="profcomp1.github.io/Currículo/" target="_blank">Saiba mais</a>
</div>
</section>
<section class="card">
<div class="card-img">
<div class="img-body"><img src="ProfJardel.gif" alt="Portfólio 2" title="Portfólio 2"></div>
</div>
<div class="card-body">
<p>
Sorteador de números
</p>
<p>
Site que visa sortear um ou mais números para o usuário
</p>
</div>
<div class="card-button">
<a href="./portfolio/sorteador/index.html" target="_blank">Saiba mais</a>
</div>
</section>
</main>
</body>
</html>