-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (49 loc) · 2.29 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href='style.css' rel='stylesheet'>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css">
<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=Montserrat&family=Open+Sans&display=swap" rel="stylesheet">
<title>My profile</title>
<meta name='description' content="My Profile Page">
</head>
<body>
<div id='container'>
<div class='card'>
<img src="images/image01.jpeg" alt="My picture" width="100" class="round shadowed">
<h1>Giovanna Nunes</h1>
<h2>Full Stack Developer Student</h2>
<p>Learning my way around web-development, a technology enthusiast and in my spare time, a comic lover.</p>
</div>
<div class='card'>
<h2>Coolest study points</h2>
<a href="https://kitt.lewagon.com/camps/690/lectures/01-Ruby%2F04-Hash-Symbols" target="_blank" class="btn">Hash & Symbol</a>
<a href="https://kitt.lewagon.com/camps/690/lectures/02-OOP%2F02-OO-Advanced" target="_blank" class="btn">Inheritance & Self</a>
<a href="https://kitt.lewagon.com/camps/690/lectures/03-AR-Database%2F03-ActiveRecord-Basics" target="_blank" class="btn">Active Record</a>
<p>To learn more go to <a href="https://www.lewagon.com" target="_blank" class="btn2">Le Wagon</a>!</p>
</div>
<div class='card'>
<h2>Are you free? Read some comic!</h2>
<p>My top recommendations</p>
<img src="images/invincible.jpg" alt="Invincible" width="150">
<img src="images/sandman.jpg" alt="Sandman" width="150">
<img src="images/spiderman.jpg" alt="Spiderman" width="150">
</div>
<div class='card'>
<h2>Follow me</h2>
<ul class='list-inline'>
<li style="display: inline;">
<a href="https://github.com/giovannalnc" target="_blank"><i class="fab fa-github"></i></a>
</li>
<li style="display: inline;">
<a href="https://www.linkedin.com/in/giovannanunescoelho/" target="_blank"><i class="fab fa-linkedin"></i></a>
</li>
</ul>
</div>
</div>
</body>
</html>
<!-- end of file -->