-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (36 loc) · 1.49 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
<html>
<head>
<title>Myriam's profile</title>
<meta charset="utf-8">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<div class="card">
<h1>Hello, I'm Myriam 👩💻</h1>
<img id="image-circle" src="images/profile_picture.png" width="100px" alt="Myriam Dubois">
<p id="introduction">
I'm currently a web-developer student at Le Wagon - Batch#400. Previously, I worked for 6 years in digital companies, mainly on webmarketing roles. For my future position, I would like to join a web company as Product Manager.
</p>
<a id="light-blue-btn" href="#">Email me</a>
</div>
<div class="card">
<h2>Follow me</h2>
<ul class="list-inline">
<li>
<a href="https://github.com/myriamdbs" target="_blank">
<i class="fab fa-github-square"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/myriam-dubois-5263aa50/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>