-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (53 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coming Soon - Shozon Roy</title>
<!-- Link to Google Fonts for Lato -->
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap" rel="stylesheet">
<!-- Link to Font Awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f8f9fa;
font-family: 'Lato', sans-serif;
}
h1 {
font-size: 3rem;
color: #333;
text-align: center;
}
.floating-icon {
position: fixed;
bottom: 40px;
right: 40px;
font-size: 1.2rem;
color: #fff;
background: rgba(0, 0, 0, 0.7);
padding: 10px;
border-radius: 50%;
cursor: pointer;
z-index: 1000;
transition: all 0.3s ease;
}
</style>
</head>
<body>
<h1>Coming Soon...</h1>
<!-- Floating eye icon -->
<a href="#" target="_blank" class="floating-icon">
<i class="fas fa-eye"></i>
<i class="fas fa-eye"></i>
</a>
<script>
// Optional: You can add any JavaScript functionality here
console.log("Page is under construction.");
</script>
</body>
</html>