-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (43 loc) · 1.28 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
<!DOCTYPE html>
<html>
<head>
<title>My Profile</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">
<link rel="stylesheet" href="style.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
</head>
<body>
<div class="container">
<div class="card">
<h1>Hello, I'm Chris 💻</h1>
<img src="images/img.jpeg" alt="My Profile">
<h2>Junior Developer | Programmer in progress</h2>
</div>
<div class="card">
<p>I come from an IT background in the public health sector where I discovered my passion for programming and problem solving. My goal at the completion of this course is to become a full-stack developer.</p>
<button><a href="www.lewagon.com">Discover Le Wagon</a></button>
</div>
<div class="card">
<h3>Follow my work!</h3>
<ul>
<li>
<a href="#">
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-linkedin-in"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-github"></i>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>