-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (47 loc) · 1.71 KB
/
Copy pathindex.html
File metadata and controls
50 lines (47 loc) · 1.71 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.5.1/css/all.css">
<link href="https://fonts.googleapis.com/css?family=Lora:400,700|Roboto:300,400,500,700,900" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>My profile content</title>
</head>
<body>
<div class="container">
<div class="card_white" id="introduction">
<h1>Hello, I'm Ilyass 😎</h1>
<img src ="https://media.licdn.com/dms/image/D4D03AQGGkryHg63veg/profile-displayphoto-shrink_800_800/0/1694248749267?e=1709769600&v=beta&t=qJq4bhjez3vHJQdG8N2IQHWiBLAFG42wY8prrueOjjI" alt="My profile picture">
<p>
I love Music, life, web-development and motorbikes 🏍️. I am a member of Le Wagon's 1506 batch and I love being part of a community spanning worldwide 🌍.
</p>
<a class="btn-blue" href="http://lewagon.github.io/html-css-challenges/01-profile-content-new/" target="_blank">Discover Le Wagon</a>
</div>
<div class="card_white">
<h2>Follow me</h2>
<ul class="list-inline">
<li>
<a href="http://github.com/" target="_blank">
<i class="fa-brands fa-github">
</i>
</a>
</li>
<li>
<a href="http://https://twitter.com/" target="_blank">
<i class="fa-brands fa-x-twitter">
</i>
</a>
</li>
<li>
<a href="http://https://medium.com/" target="_blank">
<i class="fa-brands fa-medium">
</i>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>