-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
227 lines (193 loc) · 9.94 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Linktree</title>
<link id="favicon" rel="icon" href="assets/images/favicon-dark.svg" />
<meta name="title" content="Linktree" />
<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 / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://anuswarr.netlify.app/" />
<meta property="og:title" content="Linktree" />
<meta property="og:description" content="Personal profile page with social media links, contact buttons, and a brief introduction." />
<meta property="og:image" content="assets/images/profile-picture.jpg" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://anuswarr.netlify.app/" />
<meta property="twitter:title" content="Linktree" />
<meta property="twitter:description" content="Personal profile page with social media links, contact buttons, and a brief introduction." />
<meta property="twitter:image" content="assets/images/profile-picture.jpg" />
<!-- Google fonts -->
<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=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap" rel="stylesheet" />
<!-- Font Awesome -->
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'" />
<!-- Animate.css CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" />
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/styles.css" />
</head>
<body>
<!-- Dark Mode Toggle -->
<div id="dark-mode-toggle" class="position-absolute top-0 end-0 m-3"></div>
<!--=============== MAIN CONTAINER ===============-->
<main class="container text-center py-5">
<!--=============== HEADER SECTION ===============-->
<section class="head-section animate__animated animate__fadeInDown">
<img src="assets/images/profile-picture.jpg" alt="profile-picture" class="rounded-circle img-fluid mb-3 animate__animated animate__fadeInLeft" style="width: 8rem" />
<h1 class="fw-bold animate__animated animate__fadeInRight">
Anuswar R Rao
</h1>
<!-- New Buttons -->
<div class="button-container">
<a href="tel:+911234567890" class="btn btn-dark btn-lg number-btn">
<i class="fas fa-phone"></i> +91 12345 67890
</a>
<a href="mailto:[email protected]" class="btn btn-dark btn-sm mail-btn">
<i class="fas fa-envelope"></i>
</a>
<a class="btn btn-dark btn-sm share-btn" id="shareBtn">
<i class="fas fa-share-alt"></i>
</a>
</div>
<p class="lead animate__animated animate__fadeInUp">
Based in India, I'm a Full-stack developer passionate about building
accessible web apps that users love.
</p>
</section>
<!--=============== SHARE MODE ===============-->
<div class="modal fade" id="shareModal" tabindex="-1" aria-labelledby="shareModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="shareModalLabel">Share This</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<!-- Flexbox Layout for Social Media Buttons -->
<div class="social-media-container">
<div class="social-card">
<button class="btn btn-outline-primary social-btn" onclick="shareOn('facebook')">
<i class="fab fa-facebook"></i> Facebook
</button>
</div>
<div class="social-card">
<button class="btn btn-outline-info social-btn" onclick="shareOn('twitter')">
<i class="fab fa-twitter"></i> Twitter
</button>
</div>
<div class="social-card">
<button class="btn btn-outline-primary social-btn" onclick="shareOn('linkedin')">
<i class="fab fa-linkedin"></i> LinkedIn
</button>
</div>
<div class="social-card">
<button class="btn btn-outline-danger social-btn" onclick="shareOn('whatsapp')">
<i class="fab fa-whatsapp"></i> WhatsApp
</button>
</div>
<div class="social-card">
<button class="btn btn-outline-dark social-btn" onclick="shareOn('email')">
<i class="fas fa-envelope"></i> Email
</button>
</div>
</div>
<!-- URL Copy Section -->
<div class="copy-url-container mt-3">
<input type="text" id="shareUrl" class="form-control" value="https://anuswarr.netlify.app/" readonly />
<button id="copyBtn" class="btn" data-clipboard-target="#shareUrl">
<i class="fas fa-copy me-2"></i> Copy
</button>
</div>
</div>
</div>
</div>
</div>
<!--=============== LINKS SECTION ===============-->
<section class="social-links animate__animated animate__fadeInUp">
<ul class="list-unstyled">
<!-- My Website -->
<li class="mb-3 animate__animated animate__bounceIn" style="animation-delay: 0.2s">
<a href="https://anuswarrrao.netlify.app/" target="_blank" class="microlink btn btn-dark d-flex align-items-center p-3 rounded-3 text-start">
<i class="fas fa-globe me-3"></i>
<div class="text-start">
<h5 class="mb-0">My Website</h5>
<small>Visit my personal website.</small>
</div>
</a>
</li>
<!-- GitHub -->
<li class="mb-3 animate__animated animate__bounceIn" style="animation-delay: 0.4s">
<a href="https://github.com/Anuswar" target="_blank" class="btn d-flex btn-dark align-items-center p-3 rounded-3 text-start">
<i class="fab fa-github me-3"></i>
<div class="text-start">
<h5 class="mb-0">GitHub</h5>
<small>Download free source code on GitHub.</small>
</div>
</a>
</li>
<!-- LinkedIn -->
<li class="mb-3 animate__animated animate__bounceIn" style="animation-delay: 0.6s">
<a href="https://www.linkedin.com/in/anuswarrrao" target="_blank" class="btn btn-dark d-flex align-items-center p-3 rounded-3 text-start">
<i class="fab fa-linkedin me-3"></i>
<div class="text-start">
<h5 class="mb-0">LinkedIn</h5>
<small>Connect with me on LinkedIn.</small>
</div>
</a>
</li>
<!-- Instagram -->
<li class="mb-3 animate__animated animate__bounceIn" style="animation-delay: 0.8s">
<a href="https://www.instagram.com/anuswarrrao" target="_blank" class="btn btn-dark d-flex align-items-center p-3 rounded-3 text-start">
<i class="fab fa-instagram me-3"></i>
<div class="text-start">
<h5 class="mb-0">Instagram</h5>
<small>Follow me for more updates.</small>
</div>
</a>
</li>
<!-- Facebook -->
<li class="mb-3 animate__animated animate__bounceIn" style="animation-delay: 1s">
<a href="https://www.facebook.com/people/Anuswar-R-Rao/100086760363819/" target="_blank" class="btn btn-dark d-flex align-items-center p-3 rounded-3 text-start">
<i class="fab fa-facebook me-3"></i>
<div class="text-start">
<h5 class="mb-0">Facebook</h5>
<small>Check out my Facebook page.</small>
</div>
</a>
</li>
<!-- Twitter -->
<li class="mb-3 animate__animated animate__bounceIn" style="animation-delay: 1.2s">
<a href="https://x.com/anuswarrrao" target="_blank" class="btn btn-dark d-flex align-items-center p-3 rounded-3 text-start">
<i class="fab fa-twitter me-3"></i>
<div class="text-start">
<h5 class="mb-0">Twitter</h5>
<small>Follow me on Twitter.</small>
</div>
</a>
</li>
</ul>
</section>
<!--=============== TOGGLE BTN ===============-->
<div id="dark-mode-toggle" class="position-fixed top-0 end-0 m-3">
<button id="theme-toggle" class="btn btn-light rounded-circle p-2 shadow-sm">
<i id="theme-icon" class="fas fa-moon"></i>
</button>
</div>
</main>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Share.js CDN -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<!-- Clipboard.js CDN -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.6/clipboard.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>