Skip to content

Commit 440e56a

Browse files
Add landing page HTML structure and styles
1 parent 9b94608 commit 440e56a

File tree

1 file changed

+82
-0
lines changed

1 file changed

+82
-0
lines changed

index.html

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Saurabh Mishra | Landing Page</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<!-- Google Fonts for awesome style -->
8+
<link href="https://fonts.googleapis.com/css2?family=Pacifico&family=Montserrat:wght@700&display=swap" rel="stylesheet">
9+
<style>
10+
body {
11+
margin: 0;
12+
padding: 0;
13+
min-height: 100vh;
14+
display: flex;
15+
flex-direction: column;
16+
justify-content: space-between;
17+
align-items: center;
18+
background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
19+
font-family: 'Montserrat', sans-serif;
20+
}
21+
.container {
22+
flex: 1;
23+
display: flex;
24+
flex-direction: column;
25+
justify-content: center;
26+
align-items: center;
27+
width: 100vw;
28+
}
29+
.name {
30+
font-family: 'Pacifico', cursive;
31+
font-size: 4rem;
32+
color: #22223b;
33+
letter-spacing: 0.1em;
34+
opacity: 0;
35+
transform: translateY(40px) scale(0.95);
36+
animation: fadeInUp 2.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
37+
animation-delay: 0.5s;
38+
text-shadow: 2px 4px 30px #fcb69f, 0 2px 8px #22223b77;
39+
background: linear-gradient(90deg, #ff758c 0%, #ff7eb3 100%);
40+
-webkit-background-clip: text;
41+
-webkit-text-fill-color: transparent;
42+
background-clip: text;
43+
text-fill-color: transparent;
44+
}
45+
@keyframes fadeInUp {
46+
to {
47+
opacity: 1;
48+
transform: translateY(0) scale(1);
49+
}
50+
}
51+
footer {
52+
width: 100vw;
53+
text-align: center;
54+
padding: 20px 0;
55+
background: rgba(34, 34, 59, 0.08);
56+
font-size: 1.2rem;
57+
letter-spacing: 0.05em;
58+
color: #22223b;
59+
font-family: 'Montserrat', sans-serif;
60+
position: relative;
61+
}
62+
.heart {
63+
color: #ff758c;
64+
animation: pulse 1.2s infinite;
65+
font-size: 1.2em;
66+
vertical-align: middle;
67+
}
68+
@keyframes pulse {
69+
0%, 100% { transform: scale(1); }
70+
50% { transform: scale(1.25); }
71+
}
72+
</style>
73+
</head>
74+
<body>
75+
<div class="container">
76+
<div class="name">Saurabh Mishra</div>
77+
</div>
78+
<footer>
79+
Made with <span class="heart"></span> by Saurabh
80+
</footer>
81+
</body>
82+
</html>

0 commit comments

Comments
 (0)