-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (78 loc) · 1.99 KB
/
index.html
File metadata and controls
90 lines (78 loc) · 1.99 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
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<title>Coming Soon</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(135deg, #2b5876, #4e4376);
color: white;
text-align: center;
flex-direction: column;
}
h1 {
font-size: 3rem;
margin-bottom: 10px;
}
p {
font-size: 1.2rem;
opacity: 0.8;
margin-bottom: 15px;
}
.progress-container {
width: 300px;
height: 10px;
background: rgba(255, 255, 255, 0.3);
border-radius: 5px;
margin-top: 20px;
overflow: hidden;
}
.progress-bar {
width: 0;
height: 100%;
background: #ffcc00;
animation: progress 3s infinite;
}
@keyframes progress {
0% { width: 0%; }
50% { width: 80%; }
100% { width: 100%; }
}
.link {
margin-top: 15px;
}
.link a {
color: #ffcc00;
text-decoration: none;
font-weight: bold;
font-size: 1.2rem;
}
.link a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Coming Soon!</h1>
<p>my website is under development. Stay tuned for something!</p>
<!-- Working Link Below -->
<div class="link">
<a href="profolio.html" target="_blank">Visit my site</a>
</div>
<div class="progress-container">
<div class="progress-bar"></div>
</div>
</body>
</html>