-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (101 loc) · 3.59 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>João Lola</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Merriweather|Montserrat|Sacramento&display=swap" rel="stylesheet">
</head>
<body>
<div class="topContainer">
<img class="topcloud" src="images/cloud.png" alt="cloud-img">
<h1>I'm João.</h1>
<h2>I am a aspering <span class="programmer">programmer</span>.</h2>
<img class="bottomCloud " src="images/cloud.png" alt="cloud-img">
<img src="images/mountain.png" alt="mountain-img">
</div>
<div class="middle-container">
<div class="profile">
<img class="mypicture" src="images/Joao.jpg" alt="My-Profile-Picture">
<h2>Hello.</h2>
<p class="bioParagraf">
I am 25 years old and i live in Amadora. Currently i am completing my master degree in
telecommunications and computing at Instituto Universatário de Lisboa (ISCTE-IUL)
and looking for new professional challenges in programming, cloud or business intelligence.
</p>
</div>
<hr>
<div class="skills">
<h2>My Skills.</h2>
<div class="skill-row">
<table class="table" cellspacing="10">
<thead>
<tr>
<td>CSS(3)</td>
<td colspan="2">⭐⭐</td>
<td>MVC Pattern</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>HTML(5)</td>
<td colspan="2">⭐⭐⭐</td>
<td>Object Orientated Programming</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>MySQL</td>
<td colspan="2">⭐⭐⭐</td>
<td>Scrum</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>PHP</td>
<td colspan="2">⭐⭐</td>
<td>UML</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Java</td>
<td colspan="2">⭐⭐⭐⭐</td>
<td>Ruby</td>
<td>⭐⭐</td>
</tr>
<tr>
<td>Javascript</td>
<td colspan="2">⭐⭐</td>
<td>Outsystems</td>
<td>⭐⭐⭐</td>
</tr>
</thead>
</table>
<div class="skill-row">
<img class="drivingImg" src="images/driving.png" alt="Steering-Wheel-Picture">
<h3>Driving</h3>
<p>I enjoy a casual drive throw the back roads from time to time.</p>
</div>
<div class="skill-row">
<img class="ridingImg" src="images/bike.png" alt="Bicycle-Picture">
<h3>Bike Riding</h3>
<p>I enjoy a casual cycle tour from time to time.</p>
</div>
</div>
<hr>
<div class="contact-me">
<h2>Get In Touch</h2>
<h3>Want to get in touch?</h3>
<p>Bellow you will find different ways of contact me if you wish to know more about me.</p>
<a class="btn" href="mailto:[email protected]">CONTACT ME</a>
</div>
</div>
<div class="bottom-container">
<table class="linksTable" cellspacing="40">
<tr>
<td><a class="footer-link" href="https://www.linkedin.com/in/joão-lola-682428147">LinkedIn</a></td>
<td><a class="footer-link" href="https://github.com/jpsla-iscteiul">GitHub</a></td>
</tr>
</table>
<p class="copyrightParagrafe">© 2020 João Lola.</p>
</div>
</body>
</html>