-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (31 loc) · 825 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ByteSizedJS - Under Construction</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
text-align: center;
padding: 50px;
}
h1 {
color: #333;
}
.construction-sign {
font-size: 48px;
margin-bottom: 20px;
}
p {
color: #666;
}
</style>
</head>
<body>
<h1>Welcome to ByteSizedJS</h1>
<div class="construction-sign">🚧 Under Construction 🚧</div>
<p>We're currently working hard to bring you exciting JavaScript mini projects. Stay tuned!</p>
</body>
</html>