-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
168 lines (167 loc) · 6 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
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
158
159
160
161
162
163
164
165
166
167
168
<!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>Wolf - Developer and UX/UI Designer</title>
<meta
name="description"
content="Front End Developer & UX/UI Designer Based on Brazil"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/style.min.css" />
<link rel="icon" href="./favicon.svg" type="image/svg+xml" />
</head>
<body>
<header class="header">
<img src="./img/logo.svg" alt="Wolf" width="104" height="38" />
<nav>
<ul class="header-menu">
<li><a href="#experience">Experience</a></li>
<li><a href="#background">Background</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main class="container intro">
<img src="./img/perfil.jpg" alt="Grey Wolf" width="360" height="520" />
<div class="intro-details">
<h1>
Front End<br />
Developer &<br />
UX/UI Designer
</h1>
<p>Based in Brazil 🏝️</p>
</div>
</main>
<section
class="container experience"
id="experience"
aria-label="Experience"
>
<div>
<h2 class="subtitle">Experience</h2>
</div>
<div>
<p class="experience-text">
I develop small projects such as Bikcraft using only
<strong>HTML</strong>, <strong>CSS</strong> and
<strong>JavaScript</strong>. For web applications like the social
network Dogs, I worked on the <strong>UX e UI Design</strong> of the
project.
</p>
<div class="company">
<span class="company-year">2045</span>
<h3 class="company-title">Bikcraft</h3>
<span class="company-title">Junior Developer</span>
<p class="company-text">
I develop small projects such as Bikcraft using only HTML, CSS, and
JavaScript. For web applications like the social network Dogs.
</p>
<ul class="company-skills">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>UX Design</li>
<li>UI Design</li>
</ul>
</div>
<div class="company">
<span class="company-year">2044-45</span>
<h3 class="company-title">Surfbot</h3>
<span class="company-title">Junior Developer</span>
<p class="company-text">
I develop small projects such as Bikcraft using only HTML, CSS, and
JavaScript. For web applications like the social network Dogs.
</p>
<ul class="company-skills">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>UX Design</li>
<li>UI Design</li>
</ul>
</div>
<div class="company">
<span class="company-year">2044</span>
<h3 class="company-title">Brafé</h3>
<span class="company-title">Volunteer</span>
<p class="company-text">
I develop small projects such as Bikcraft using only HTML, CSS, and
JavaScript. For web applications like the social network Dogs.
</p>
<ul class="company-skills">
<li>Email Marketing</li>
<li>JavaScript</li>
<li>UX Design</li>
<li>UI Design</li>
</ul>
</div>
</div>
</section>
<section class="background" id="background" aria-label="Background">
<div class="container">
<h2 class="subtitle">Background</h2>
<div>
<p class="background-text">
My most recent academic experience was a master's degree 🎓 I
completed abroad in UX Design. Additionally, I always keep myself
updated with intensive online courses.
</p>
<ul class="university-list">
<li class="university">
<span class="university-degree">Bachelor's degree</span>
<h3 class="university-course">Business Administration</h3>
<span class="university-institution">UFRRJ</span>
</li>
<li class="university">
<span class="university-degree">Associate's degree</span>
<h3 class="university-course">Design Digital</h3>
<span class="university-institution">Infnet</span>
</li>
<li class="university">
<span class="university-degree">Master's degree</span>
<h3 class="university-course">User Experience Design</h3>
<span class="university-institution">UCLL</span>
</li>
</ul>
<div class="background-extra">
<div class="courses">
<h3>Intensive Courses</h3>
<ul>
<li>UX Design & UI Design <span>56h</span></li>
<li>Front-End for Beginners <span>72h</span></li>
</ul>
</div>
<div class="languages">
<h3>Languages</h3>
<ul>
<li>English <span>/ Advanced</span></li>
<li>Spanish <span>/ Beginner</span></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<footer class="footer" id="contact">
<div class="container">
<p class="footer-text">
I am open to new work at the moment. Fell free to contact me. 👋
</p>
<ul class="footer-contact">
<li>wolf@email.com</li>
<li>+55 00 0000-0000</li>
<li><a href="/">@instagram</a></li>
</ul>
<p class="footer-copy">Wolf. Some rights reserved.</p>
</div>
</footer>
</body>
</html>