-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (51 loc) · 2.16 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
<!DOCTYPE html>
<html>
<head>
<title> Profile Page</title>
<meta name="description" content="Page description. No longer than 155 characters.">
<meta charset="utf-8">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.1.1/css/all.css">
<link rel = "stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Lora:400,700|Roboto:300,400,500,700,900" rel="stylesheet">
</head>
<body>
<div class="card-white">
<h1> Hi! I'm Rob 😎 </h1>
<img src="images/profile.JPG" width = "100px" alt="photo of Rob" class="img-circle">
<p>I am a former Emergency nurse turned web developer. I love Ruby on Rails, Business development(former founder of a start-up) and ...I just love Cricket!
I am a full-stack web developer after completing the Le Wagon bootcamp 🚌.
Check them out!</p>
<a href="https://www.lewagon.com"
class="btn-red">Discover Le Wagon</a>
</div>
<div class="card-white">
<h2>Ruby on Rails</h2>
<p>I have fallen in love with <strong>Ruby on Rails</strong></p>
</div>
<div class="card-white">
<h2>Business development</h2>
<p>Previously had and sold a start-up in recruitment. Passionate about the <strong>start-up scene, healthcare technology</strong> and using my new found skills to develop new and exciting programmes</p>
</div>
<div class="card-white">
<h2>Cricket</h2>
<p>A keen cricketer with my local club. <strong>Leg-spinning allrounder</strong>, Shane Warne and Anil Kumble are my idols</p>
</div>
<div class="card-white">
<h2>Follow me</h2>
<ul class="list-inline">
<li>
<a href="https://github.com/Robsta76" target= "_blank" class="icon-social">
<i class="fab fa-github-square"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/rob-fernandes-a844282b" target="_blank" class="icon-social">
<i class="fa-brands fa-linkedin"></i></a>
</li>
<li>
<a href="https://www.facebook.com/robsta76" target= "_blank" class="icon-social">
<i class="fab fa-facebook-square"></i></a>
</li>
</ul>
</div>
</body>
</html>