-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcv.html
157 lines (143 loc) · 5.73 KB
/
cv.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!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" />
<link rel="stylesheet" href="reset.css">
<title>Portfolio</title>
<link rel="shortcut icon" type="image/icon" href="img/r.png" />
<link rel="stylesheet" href="css/cv.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="css/nav.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
rel="stylesheet">
</head>
<body>
<!--------------------------nav bar---------------------------------------->
<header class="header">
<a href="#" class="header-link header-logo">
Ruama
<img src="img/bb.gif" />
</a>
<div class="responsive only-mobile">
<div class="line one"></div>
<div class="line two"></div>
<div class="line three"></div>
</div>
<nav class="header-nav only-desktop">
<ul class="nav-list">
<li><a class="header-link" href="index.html">Home</a></li>
<li><a class="header-link" href="about.html">About me</a></li>
<li><a class="header-link" href="cv.html">Education</a></li>
<li><a class="header-link" href="projects.html">Projects</a></li>
<li><a class="header-link" href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div class="header-overlay">
<a class="header-link" href="index.html">Home</a>
<a class="header-link" href="about.html">About me</a>
<a class="header-link" href="cv.html">Education</a>
<a class="header-link" href="projects.html">Project</a>
<a class="header-link" href="contact.html">Contact</a>
</div>
<!----------------------------end of navbar---------------------------------------->
<div class="title">
<h1>Educational background</h1>
</div>
<ul class="timeline">
<!-- Item 1 -->
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="hexa"></span>
<span class="flag">Uninassau</span>
<span class="time-wrapper"><span class="time">Aug 2022</span></span>
</div>
<div class="desc">Análise e Desenvolvimento de Sistemas.</div>
</div>
</li>
<!-- Item 2 -->
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="hexa"></span>
<span id="colors" class="flag">Google</span>
<span class="time-wrapper"><span class="time">Feb 2022</span></span>
</div>
<div class="desc">Principios Básicos de apoio Técnico, Tecnologia da
Informação <h6 class="media">Nota final: 97.50%</h6>
</div>
</div>
</li>
<!-- Item 3 -->
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="hexa"></span>
<span class="flag">University of Michigan</span>
<span class="time-wrapper"><span class="time">April 2022</span></span>
</div>
<div class="desc">Introdution to HTML5 & CSS3
<h6 class="media">Nota final: 93.66%</h6>
</div>
</div>
</li>
<!-- Item 4 -->
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="hexa"></span>
<span class="flag">Johns Hopkins University</span>
<span class="time-wrapper"><span class="time">July 2022</span></span>
</div>
<div class="desc">HTML, CSS, and Javascript for Web Developers.
</div>
</div>
</li>
<!-- Item 5 -->
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="hexa"></span>
<span class="flag">Alura</span>
<span class="time-wrapper"><span class="time">April - Sep 2022</span></span>
</div>
<div class="desc">ONE next Education, Iniciante em Programação, Trilha Front-End.
</div>
<!-- Item 6 -->
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="hexa"></span>
<span class="flag">Startse</span>
<span class="time-wrapper"><span class="time">april-july 2022</span></span>
</div>
<div class="desc">Tech Academy.
</div>
</div>
</li>
</div>
</li>
</ul>
<!---------------End of timeline---------->
</section>
<!-----Footer-->
<footer>
<div class="footer-bottom">
<p> Developed & Programmed by Ruama Maranhão </p>
<div class="footer-bottom">
<p>Copyright © 2022 RM</p>
</div>
<div class="footer-last">
<a href="https://github.com/gothvadeer" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</footer>
<!-----End of footer-->
<!-- script-->
<script src="js/nav.js"></script>
</body>
</html>