-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (76 loc) · 3.33 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Portifólio - Frederico Passos</title>
</head>
<body>
<section id="presentation">
<div class="presentation container">
<div>
<h1>Olá,<span></span></h1>
<h1>meu nome é<span></span></h1>
<h1>Frederico Passos<span></span></h1>
<a href="#portfolio" type="button" class="cta">Portifólio</a>
</div>
</div>
</section>
<section id="portfolio">
<div class="portfolio container">
<div class="portfolio header">
<h1 class="section-title"><span>Portifólio</span></h1>
</div>
<div class="all-projects">
<div class="project-item">
<div class="project-info">
<h1>Projeto 1 - Git</h1>
<h2>Introdução aos conflitos do Git</h2>
<p>git push - git pull - git merge - git rebase - git revert - Pull Request</p>
</div>
<div class="project-img">
<img src="./img-1.png" alt="img">
</div>
</div>
<div class="project-item">
<div class="project-info">
<h1>Projeto 2</h1>
<h2>Trabalhando com Git Workflow centralizado</h2>
<p>branch main</p>
</div>
<div class="project-img">
<img src="./img-1.png" alt="img">
</div>
</div>
<div class="project-item">
<div class="project-info">
<h1>Projeto 3</h1>
<h2>Workflow centralizado</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec nec eros leo. Vestibulum
aliquam vel libero eget porttitor. Nunc nisl nunc, suscipit quis quam ut, congue fermentum
ipsum. In consectetur, leo a accumsan eleifend, tortor leo eleifend nunc, sed pulvinar neque
urna vitae dui.</p>
</div>
<div class="project-img">
<img src="./img-1.png" alt="img">
</div>
</div>
<div class="project-item">
<div class="project-info">
<h1>Projeto 4</h1>
<h2>Codar é gostoso demais</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec nec eros leo. Vestibulum
aliquam vel libero eget porttitor. Nunc nisl nunc, suscipit quis quam ut, congue fermentum
ipsum. In consectetur, leo a accumsan eleifend, tortor leo eleifend nunc, sed pulvinar neque
urna vitae dui.</p>
</div>
<div class="project-img">
<img src="./img-1.png" alt="img">
</div>
</div>
</div>
</div>
</section>
</body>
</html>