-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (59 loc) · 3.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=
, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://kit.fontawesome.com/e85e0c4e55.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Slab:ital,wght@0,100;0,700;1,100;1,700&family=Open+Sans:ital,wght@0,300;0,500;0,700;1,300;1,500;1,700&display=swap" rel="stylesheet">
<title>Manu Vasconcelos - GitHub Profile</title>
</head>
<body>
<div class="container">
<!--Welcome Section-->
<section class="welcome-section">
<img src="images/avatar-2.jpg" alt="woman with crossed arms" class="avatar">
<h1>Hi! I’m Manu.</h1>
<h4>programmer in training</h4>
<p>I worked as a designer for over 10 years. I was lucky to work in great projects inside and outside of Brasil. But it was time to change, and I decided to give programming a go. Turns out it’s a lot of fun!</p>
<p>Besides learning on my own, I decided to take the LeWagon Bootcamp, where I learned a lot of skills: Ruby, Rails, JavaScript, CSS, HTML, SQL, and many more. Currently I'm diving deeper into js, next up is learning React, and I'm looking for the next challenge: working as full stack developer.</p>
<hr>
</section>
<!--About Me Section-->
<section class="about-section">
<h3>some other things about me</h3>
<div class="about-section__item">
<h4>fullstack developer</h4>
<p>I finished the LeWagon Bootcamp recently, and am now looking for my first opportunity as a fullstack developer. You can check out my projects <a href="https://cheap-ships.herokuapp.com/" target='_blank'>cheap ships</a> and <a href="https://singytalkie.fun/" target='_blank'>singy talkie</a> </p>
</div>
<div class="about-section__item">
<h4>skills</h4>
<p>HTML, CSS, Git, Ruby, Rails, Bootstrap, Javascript, Heroku, SQL , Figma, Photoshop, Illustrator, Indesign</p>
</div>
<div class="about-section__item">
<h4>graphic design</h4>
<p>if you want to check out my old <a href="https://manuvasconcelos.myportfolio.com/">design work</a></p>
</div>
<div class="about-section__item">
<h4>roller derby</h4>
<p>I used to be team captain of my roller derby team, and played for <a href="https://www.instagram.com/p/BWMSkXkHklU/">team brasil</a> in 2014.</p>
</div>
<div class="about-section__item">
<h4>mein deustch ist kaputt</h4>
<p>Despite having zero german relatives, I went to a german school.
Nowadays I like to say ‘Mein Deutsch ist kaputt’, though I’m trying to catch up on vocabulary by playing <a href="https://wordle.uber.space/">wordle</a></p>
</div>
</section>
<!--Social Section-->
<section class="social-section">
<h5>follow me</h5>
<ul>
<li><a href="https://github.com/vasconsaurus" id="profile-link" target="_blank"><i class="fa-brands fa-github"></i></a></li>
<li><a href="https://www.instagram.com/vasconsaurus/" id="profile-link" target="_blank"><i class="fa-brands fa-instagram"></i></a></li>
<li><a href="https://www.linkedin.com/in/manu-vasconcelos-883669b/" id="profile-link" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</section>
</div>
</body>