-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (92 loc) · 4.03 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<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">
<title>Currículos</title>
<!-- box icons -->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<!-- custom css -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- header section starts -->
<header class="header">
<a href="#" class="logo">Currículos</a>
<i class='bx bx-menu' id="menu-icon"></i>
<nav class="navbar">
<a href="#home" class="active">Home</a>
<a href="#about">Sobre</a>
<a href="#cv">Currículos</a>
</nav>
</header>
<!-- home section design -->
<section class="home" id="home">
<div class="home-content">
<h1>Olá!</h1>
<h3>Somos alunos</h3>
<h3>da <span>Escola da Nuvem</span></h3>
<p>Estamos muito felizes em participar do programa de estágio da <b>Escola da Nuvem</b> e esperamos que gostem dos nossos currículos.</p>
</div>
<div class="home-img">
<img src="images/cloud-computing.png" alt="home">
</section>
<!-- about section design -->
<section class="about" id="about">
<div class="about-img">
<img src="images/estudos.png" alt="about">
</div>
<div class="about-content">
<h2 class="heading">Sobre <span>Nós</span></h2>
<h1>Alunos da Escola da Nuvem</h1>
<h1>Acesse nosso Linkedin para saber mais sobre cada um! </h1>
<p><a href="https://www.linkedin.com/in/igor-fernandes-ads/" target="_blank" class="btn">Linkedin</a> Igor Barros da Cruz Fernandes</p>
<p><a href="https://www.linkedin.com/in/renan-" target="_blank" class="btn">Linkedin</a> Renan Cavalcante de Sousa</p>
<p><a href="https://www.linkedin.com/in/walter-silv%C3%A9rio-13749a198/" target="_blank" class="btn">Linkedin</a> Walter Silvério</p>
<p><a href="https://www.linkedin.com/in/mailson-tiburcio-silva-santos-79764825" target="_blank" class="btn">Linkedin</a> Mailson Tiburcio Silva Santos</p>
</div>
</section>
<!-- cv section design -->
<section class="cv" id="cv">
<h2 class="heading">Currículos</h2>
<div class="cv-container">
<div class="cv-box">
<img src="images/cv-Igor.png" alt="cv">
<div class="cv-layer">
<a href="assets/CV - Igor_Fernandes.pdf" target="_blank"><i class='bx bx-link-external' ></i></a>
</div>
</div>
<div class="cv-box">
<img src="images/cv-mailson.png" alt="cv">
<div class="cv-layer">
<a href="assets/CV - Mailson_Tiburcio.pdf" target="_blank"><i class='bx bx-link-external' ></i></a>
</div>
</div>
<div class="cv-box">
<img src="images/cv-renan.png" alt="cv">
<div class="cv-layer">
<a href="assets/CV - Renan_Souza.pdf" target="_blank"><i class='bx bx-link-external' ></i></a>
</div>
</div>
<div class="cv-box">
<img src="images/cv-walter.png" alt="cv">
<div class="cv-layer">
<a href="assets/CV - Walter_Silvério.pdf" target="_blank"><i class='bx bx-link-external' ></i></a>
</div>
</div>
</div>
</section>
<!-- footer -->
<footer class="footer">
<div class="footer-iconTop">
<a href="#home"><i class='bx bx-up-arrow-alt'></i></a>
</div>
</footer>
<!-- scroll reveal -->
<script src="https://unpkg.com/scrollreveal"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"> </script>
<!-- custom js -->
<script src="js/script.js"></script>
</body>
</html>