generated from Sanmandresy/web-session-td
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (30 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Social links profile</title>
<link rel="stylesheet" href="styles/index.css" />
</head>
<body>
<div>
<div id="contactContainer">
<div id="profilPictureContainer">
<img src="assets/images/avatar-jessica.jpeg" alt="photo de profile">
</div>
<div id="aboutMeContainer">
<p id="name">Jessica Randall</p>
<p id="address">London, United Kingdom</p>
<p id="occupation">"Front-end developer and avid reader."</p>
</div>
<div id="socialLinksContainer">
<a href="https://github.com">Github</a>
<a href="https://www.frontendmentor.io/">Frontend Mentor</a>
<a href="https://fr.linkedin.com/">LinkedIn</a>
<a href="https://twitter.com">Twitter</a>
<a href="https://www.instagram.com/">Instagram</a>
</div>
</div>
</div>
</body>
</html>