-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class = "menu">
<nav>
<p class = "logo">Sandhya</p>
<ul>
<li><a href = "index.html">Home</a></li>
<li><a href = "about.html">About Me</a></li>
<li><a href = "skills.html">My Skills</a></li>
<li><a href = "projects.html">My Projects</a></li>
<li><a href = "contact.html">Contact</a></li>
</ul>
<a href = "#" class = "btn">E-mail</a>
</nav>
</div>
<div class = "content">
<h1>I'm <span>Sandhya</span></h1>
<img src="img\SandhyaH.jpg" alt = "Sandhya's photo" class = "image">
<p>I'm an aspiring Full-stack Engineer and you can find all <br>my works related to Web-development on this website!</p>
<div class = "media">
<a href = "#" target ="_blank"><ion-icon name="logo-twitter"></ion-icon></a>
<a href = "#" target="_blank"><ion-icon name="logo-facebook"></ion-icon></a>
<a href = "#" target="_blank"><ion-icon name="logo-instagram"></ion-icon></a>
<a href = "#" target="_blank"><ion-icon name="logo-linkedin"></ion-icon></a>
</div><br>
<a href = "#" class = "btn">Download CV</a>
</div>
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
</body>
</html>