-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (88 loc) · 2.75 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="style.css">
</head>
<style>
.details{
margin-top: 9%;
margin-left: 8%;
}
.details h1 {
/* font-style: italic; */
font-family:cursive;
font-size: 40px;
margin-bottom: 10px;
}
.details p{
font-size: 25px;
font-family:fantasy;
line-height: 45px;
color: #6f6a6a;
}
.details a{
background: #000;
padding: 10px 20px;
text-decoration: solid;
font-weight: bold;
color: #ffffff;
display: inline-block;
margin: 10px 0px;
border-radius: 8%;
}
.image{
width: 45%;
height: 80%;
position:absolute;
bottom: 0;
right: 100px;
}
.image img{
height: 100%;
position: absolute;
left: 50%;
bottom: 10;
transform: translateX(-50%);
transition: bottom 1s,left 1s;
}
.image:hover .well{
bottom: 40px;
}
.image:hover .hi{
left:45%;
}
</style>
<body background="background_image .jpeg">
<div class="hello">
<nav>
<img src="ANANYA_logo_1-removebg-preview.png" class="logo" alt="name logo">
<ul>
<li><a href="#" > HOME</a></li>
<li><a href="about_me.html" > ABOUT ME</a></li>
<li><a href="education.html" > EDUCATION</a></li>
<li><a href="let's connect.html" > LET'S CONNNECT</a></li>
</ul>
</nav>
<div class="details">
<h1>Hi! I am Ananya<span style="color: rgb(249, 57, 159);"> Narang</Nav></span></h1>
<p>A passionate undergraduate at <br><span > Newton School of Technology X Rishihood University</span></br>pursuing Btech in<br> Computer Science along with specialization in Data Science</p>
<p style="color: #262525c2;">Presenting my resume...</p>
<a href="Resume-Ananya Narang.pdf" target="_blank" style="font-weight: bold;margin-top: 90; font-size: 25px; font-family:serif;" class="resume" > RESUME</a>
</div>
<div class="image">
<img src="splash.png" class="well"/>
<img src="11.png" class="hi"/>
</div>
</div>
<br>
<br>
<br>
<br>
<audio controls default>
<source src="VOICE.opus" >
</audio>
</body>
</html>