-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
108 lines (99 loc) · 4.51 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
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Linktree</title>
<!-- Meta tags for SEO and social sharing -->
<meta name="description" content="Personal profile page with social media links, contact buttons, and a brief introduction." />
<meta name="keywords" content="Linktree, personal profile, social media links, contact, developer profile" />
<meta name="author" content="Anuswar R Rao" />
<!-- Open Graph meta tags for social media sharing -->
<meta property="og:title" content="Anuswar R Rao - Full-stack Developer" />
<meta property="og:description" content="Based in India, I'm a Full-stack developer passionate about building accessible web apps that users love." />
<meta property="og:image" content="profile-picture.jpg" />
<meta property="og:url" content="https://anuswarr.netlify.app/" />
<meta property="og:type" content="website" />
<!-- Font Awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
<!-- Animate.css CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<!-- Custom CSS -->
<link rel="stylesheet" href="styles.css" />
<!-- preload Img -->
<link rel="preload" as="image" href="profile-picture.jpg" />
</head>
<body>
<!-- Main container -->
<div class="container">
<!--=============== HEADER ===============-->
<div class="head-section animate__animated animate__fadeInDown">
<img src="profile-picture.jpg" alt="profile-picture" class="animate__animated animate__fadeInLeft" />
<h1 class="animate__animated animate__fadeInRight">Anuswar R Rao</h1>
<p class="animate__animated animate__fadeInUp">
Based in India, I'm a Full-stack developer passionate about building accessible web apps that users love.
</p>
</div>
<!--=============== SOCIAL MEDIA LINKS ===============-->
<div class="social-links animate__animated animate__fadeInUp">
<ul>
<!-- Social media links with individual animations -->
<li class="website animate__animated animate__bounceIn" style="animation-delay: 0.2s;">
<a href="https://anuswarrrao.netlify.app/" target="_blank">
<i class="fas fa-globe"></i>
<span>
<h3>My Website</h3>
<p>Visit my personal website.</p>
</span>
</a>
</li>
<li class="github animate__animated animate__bounceIn" style="animation-delay: 0.4s;">
<a href="https://github.com/Anuswar" target="_blank">
<i class="fab fa-github"></i>
<span>
<h3>GitHub</h3>
<p>Download free source code on GitHub.</p>
</span>
</a>
</li>
<li class="linkedin animate__animated animate__bounceIn" style="animation-delay: 0.6s;">
<a href="https://www.linkedin.com/in/anuswarrrao" target="_blank">
<i class="fab fa-linkedin"></i>
<span>
<h3>LinkedIn</h3>
<p>Connect with me on LinkedIn.</p>
</span>
</a>
</li>
<li class="instagram animate__animated animate__bounceIn" style="animation-delay: 0.8s;">
<a href="https://www.instagram.com/anuswarrrao" target="_blank">
<i class="fab fa-instagram"></i>
<span>
<h3>Instagram</h3>
<p>Follow me for more updates.</p>
</span>
</a>
</li>
<li class="facebook animate__animated animate__bounceIn" style="animation-delay: 1s;">
<a href="https://www.facebook.com/people/Anuswar-R-Rao/100086760363819/" target="_blank">
<i class="fab fa-facebook"></i>
<span>
<h3>Facebook</h3>
<p>Check out my Facebook page.</p>
</span>
</a>
</li>
<li class="twitter animate__animated animate__bounceIn" style="animation-delay: 1.2s;">
<a href="https://x.com/anuswarrrao" target="_blank">
<i class="fab fa-twitter"></i>
<span>
<h3>Twitter</h3>
<p>Follow me on Twitter.</p>
</span>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>