-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (43 loc) · 1.5 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
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Iris</title>
<link rel="stylesheet" href="public/css/styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rosarivo:ital@0;1&display=swap" rel="stylesheet">
</head>
<body class="home">
<div class="animation">
<div class="circular-loading"></div>
</div>
<div id="animate">
</div>
<nav class="nav">
<div class="nav_div">
<ul class="nav_ul">
<li class="nav_li">
<a href="index.html" class="nav_links">About</a>
</li>
<li class="nav_li">
<a href="projects.html" class="nav_links">Projects</a>
</li>
<li class="nav_li">
<a href="contact.html" class="nav_links">Contact Me</a>
</li>
</ul>
</div>
</nav>
<div class="home" id="about">
<img src="public/images/pfp.jpeg" class="home-img" alt="img" />
<div class="abouttext">
<p class="about-title">Hi! I am Ayushka Garg</p>
<p class="about-text">
I have a keen interest in development. I also love to read and paint. My alias is Iris.
</p>
</div>
</div>
</body>
</html>