-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (45 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Suryansh rana</title>
<link rel="stylesheet" href="./css/main.css" />
<link rel="shortcut icon" href="./img/logo.svg" type="image/x-icon" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<a href="#" data-aos="fade-up"><img src="./img/logo.svg" alt="logo" /></a>
</header>
<main class="content">
<h1 data-aos="fade-up"><strong>Hey, I'm Suryansh Rana.</strong> I'm Engineering Undergrad.</h1>
<h3 data-aos="fade-up">Web Designer, Frontend Developer, Django Developer and AIML Enthusiast.</h3>
<nav>
<a href="mailto:Suryanshrana91@gmail.com" data-aos="fade-up">Contact</a>
</nav>
</main>
<footer>
<div class="social">
<a href="https://www.linkedin.com/in/suryanshrana14/"><img src="img/youtube.svg" alt="linkedin" /></a>
<a href="https://leetcode.com/u/suryanshrana91/"><img src="img/leet.svg" alt="linkedin" /></a>
<a href="https://x.com/suryanshranaa?t=a_YT0YrqQRzu88KIb8nZ4w&s=08"><img src="img/twitter.svg" alt="Twitter" /></a>
<a href="https://github.com/ranasuryansh14"><img src="img/facebook.svg" alt="github" /></a>
</div>
</footer>
</div>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
once: true,
delay: 0
});
</script>
</body>
</html>