-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathabout.html
More file actions
104 lines (98 loc) · 3.95 KB
/
about.html
File metadata and controls
104 lines (98 loc) · 3.95 KB
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
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="./css/card.css">
<link rel="stylesheet" href="./css/footer.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
</head>
<body>
<div class="container">
<div class="bg">
<img src="./img/flowers-aesthetic.gif" alt="prettyyy">
</div>
<div class="wrapper">
<a href="#about">
<div class="card">
<div class="content">
<img src="./img/delight.jpg" alt="delight">
</div>
</div>
</a>
<div class="button">
<a href="#section">About Me</a>
</div>
</div>
</div>
<div id="section">
<nav>
<ul>
<li> <a href="./index.html">Home</a></li>
<li> <a href="./minecraft.html">Minecraft</a></li>
<li id="active"> <a href="./about.html" style="color: black;">About Me</a></li>
<li> <a href="./link.html">Links</a></li>
</ul>
</nav>
<section id='about' class="desc">
<p>Hi! I am Devansh Asthana from Lucknow, India. I am currently pursuing business management from Shiv Nadar
University. This website is meant to be a collection of everything I love and enjoy.</p>
<p>Stay delighted :)</p>
<!-- <div class="image">
<img src="anime.png" alt="">
</div> -->
<div class="small"></div>
</section>
</div>
<div class="footer">
<div class="follow">
<span>follow me</span>
<ul>
<li><a href="https://www.linkedin.com/in/devanshasthana/"><i class="bi bi-linkedin"></i>LinkedIn</a>
</li>
<li><a href="https://www.youtube.com/channel/UCp5s2bOTDdGJSxO9h1WpIXg"><i
class="bi bi-youtube"></i>Youtube</a></li>
<li><a href="./tinder.html"><span class="iconify-inline" data-icon="simple-icons:tinder" style="color: #d4f5d4;"></span>Tinder</a></li>
<li><a href="https://twitter.com/DelighteDev"><i class="bi bi-twitter"></i>Twitter</a></li>
<li><a href="https://www.instagram.com/delightedev/"><i class="bi bi-instagram"></i>Instagram</a>
</li>
</ul>
</div>
<div class="devs">
<span>Developed by</span>
<span class="names">
<span>
<a href="https://www.linkedin.com/in/shivpreet-padhi-828273223/">Shivpreet Padhi</a>
And
<a href="https://www.linkedin.com/in/jayantigoswami/">Jayanti Goswami</a>
</span>
<span>
From <a href="https://github.com/crazycodigo">Crazy Codigo</a>
</span>
</span>
</div>
</div>
<script type="text/javascript" src="vanilla-tilt.js"></script>
<script type="text/javascript">
VanillaTilt.init(document.querySelector(".card"), {
max: 15,
speed: 300,
glare: true,
"max-glare": 1,
});
//It also supports NodeList
VanillaTilt.init(document.querySelectorAll(".card"));
</script>
<script>
const card = document.querySelector('.card');
const button = document.querySelector('.button');
const small = document.querySelector('.small');
window.addEventListener('scroll', () => {
let value = window.scrollY;
card.style.bottom = value * 0.5 + 'px';
});
</script>
<script src="https://code.iconify.design/2/2.2.1/iconify.min.js"></script>
</body>
</html>