-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (94 loc) · 4.01 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
<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" type="text/css">
<link rel="stylesheet" href="css/navigation.css" type="text/css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.4/css/bulma.min.css">
<link rel="shortcut icon" type="imagem/x-icon" href="./icon/home.png">
<title>Projeto StartSe Portifólio</title>
</head>
<body>
<header>
<section id="menu">
<div class="navbar-item">
<a class="navbar-item" href="index.html"><img src="./icon/home.png" alt="#" width="180" height="180">Home</a>
<a class="navbar-item" href="#text-item"><img src="./icon/contact.png" alt="#" width="180" height="180">Contact</a>
<a class="navbar-item" href="#text-item"><img src="./icon/git.png" alt="#" width="180" height="180">GitHub</a>
<a class="navbar-item" href="#text-item"><img src="./icon/in.png" alt="#" width="180" height="180">linkedin</a>
</div>
</section>
<section id="presentation">
<div class="presentation container">
<div>
<h1>Ola,</h1>
<h1>Meu nome é</h1>
<h1>Antônio</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>Vingadores - Guerra Infinita</span></h1>
</div>
<div class="all-projects">
<div class="projects-item">
<div class="projects-info">
<h1>Sinopse</h1>
<h2>Resumo</h2>
<p>Homem de Ferro, Thor, Hulk, Capitão América, Homem-Aranha, Viúva Negra, Feiticeira Escarlate, Visão,
Doutor Estranho, Pantera Negra e os Guardiões da Galáxia se unem para combater seu inimigo mais
poderoso, o maligno Thanos.</p>
</div>
<div class="project-img">
<img src="./img/img1.webp" alt="img">
</div>
</div>
<div class="projects-item">
<div class="projects-info">
<h1>Nossos Heróis</h1>
<h2>Mais informações</h2>
<p>Uma jornada cinematográfica sem precedentes, os Vingadores e seus super-heróis aliados precisam estar
dispostos a sacrificar tudo em uma tentativa de derrotar o poder de Thanos antes que sua onda de
devastação e ruína coloque um fim no universo.</p>
</div>
<div class="project-img">
<img src="./img/img2.webp" alt="img">
</div>
</div>
<div class="projects-item">
<div class="projects-info">
<h1>Thanos o vilão dos vilões</h1>
<h2>A ameaça mais poderosa que a terra já enfrentou</h2>
<p>Thanos é, sem sombra de dúvidas, um dos maiores vilões dessa década do cinema. Sua reputação ao longo
dos anos ficará tão marcante quanto a de Darth Vader em Star Wars, ele é um dos melhores vilão já
criados.</p>
</div>
<div class="project-img">
<img src="./img/img3.webp" alt="img">
</div>
</div>
</div>
</div>
</section>
</header>
<!--rodapé-->
<footer>
<div id="text-item">
<div class="copy">
© 2022 Antônio S.F Copyright
</div>
<div class="email">
<i class="fas fa-envelope mr-3"></i>antonio.figueiredo@gmail.com
</div>
<a href="index.html">Home</a>
<a href="https://github.com/antonysf" target="_blank">GitHub</a>
<a href="https://www.linkedin.com/in/antonio-figueiredo-dev" target="_blank">linkedin</a>
</div>
</footer>
</body>
</html>