-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsQue.html
35 lines (32 loc) · 868 Bytes
/
jsQue.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coming Soon</title>
<style>
/* Basic styling for body */
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
}
/* Styling for the message */
.message {
font-size: 24px;
font-weight: bold;
color: #007acc;
text-align: center;
}
</style>
</head>
<body>
<!-- Message displayed on the webpage -->
<div class="message">JavaScript code will be uploaded soon. Stay tuned!</div>
</body>
</html>