-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (74 loc) · 2.25 KB
/
index.html
File metadata and controls
82 lines (74 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Satyam Sagar's Portfolio</title>
<!-- Favicon Link -->
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<!-- You can also use a PNG favicon if preferred -->
<!-- <link rel="icon" href="/favicon.png" type="image/png"> -->
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #ff7a18, #af002d, #319197);
color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
h1 {
font-size: 4em;
margin: 0;
background: -webkit-linear-gradient(#ff6a00, #ee0979);
-webkit-background-clip: text;
color: transparent;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.container {
background-color: rgba(0, 0, 0, 0.5);
padding: 40px;
border-radius: 10px;
backdrop-filter: blur(5px);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
p {
font-size: 1.5em;
margin: 20px 0 30px;
color: rgba(255, 255, 255, 0.8);
}
a {
color: #f0f0f0;
font-size: 1.2em;
text-decoration: none;
padding: 10px 20px;
background-color: #ee0979;
border-radius: 5px;
transition: background-color 0.3s ease;
}
a:hover {
background-color: #ff6a00;
}
@media (max-width: 768px) {
h1 {
font-size: 3em;
}
p {
font-size: 1.2em;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Satyam Sagar</h1>
<p>Welcome to my personal space! I’m a passionate developer and tech enthusiast.</p>
<a href="https://github.com/lostboysatyam" target="_blank">Visit My GitHub</a>
</div>
</body>
</html>