-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 977 Bytes
/
index.html
File metadata and controls
29 lines (29 loc) · 977 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My Profile</title>
</head>
<body>
<div class="header">
<h1>Hello! I'm Kaviya ⭐️</h1>
<img src="images/Kaviya_Dhanapal.png" alt="kaviya's pic" id = "profile-pic">
<a href="#" class="btn-blue">Discover Le Wagon</a>
</div>
<div class="main">
<p>I'm a fullstack developer, I love to learn new technology 👩💻</p>
<p>You can check out my recent projects at <a href="https://github.com/kavi-codes">my github</a> page</p>
</div>
<div class="footer">
<h2>Follow me</h2>
<ul>
<li><a href="https://www.instagram.com/">instagram</a></li>
<li><a href="https://www.facebook.com/">facebook</a></li>
<li><a href="https://www.lewagon.com/berlin">le wagon</a></li>
</ul>
</div>
</body>
</html>