-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (102 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>billion - Developer</title>
<style>
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body Styling */
body {
font-family: 'Arial', sans-serif;
background-color: #1a1a1a;
color: #f5f5f5;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
/* Container Styling */
.container {
text-align: center;
animation: fadeIn 2s ease-in-out;
}
/* Name Styling */
h1 {
font-size: 4rem;
font-weight: bold;
margin-bottom: 0.5rem;
color: #00ffcc;
}
/* Tagline Styling */
p {
font-size: 1.2rem;
color: #ccc;
}
/* Social Links Styling */
.social-links {
margin-top: 2rem;
}
.social-links a {
color: #00ffcc;
text-decoration: none;
margin: 0 0.5rem;
font-size: 1.2rem;
transition: color 0.3s ease;
}
.social-links a:hover {
color: #ff0066;
}
/* Animation */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Responsive Design */
@media (max-width: 768px) {
h1 {
font-size: 3rem;
}
p {
font-size: 1rem;
}
.social-links a {
font-size: 1rem;
}
}
@media (max-width: 480px) {
h1 {
font-size: 2rem;
}
p {
font-size: 0.9rem;
}
.social-links a {
font-size: 0.9rem;
}
}
</style>
</head>
<body>
<div class="container">
<h1>billion</h1>
<p>Developer | Problem Solver | Tech Enthusiast</p>
<div class="social-links">
<a href="http://github.com/billionbucks" target="_blank">GitHub</a>
<a href="mailto:[email protected]">Email</a>
</div>
</div>
</body>
</html>