-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
53 lines (51 loc) · 1.16 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
<!DOCTYPE html>
<html>
<head>
<title>Your Website Title</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f1f1f1;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333333;
}
p {
color: #555555;
line-height: 1.5;
}
.cta-button {
display: inline-block;
padding: 12px 24px;
background-color: #007bff;
color: #ffffff;
font-size: 16px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.cta-button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to our WEBSERVER!</h1>
<p>This is the main page of our web server.</p>
<p class="message">This is the default page for my website. Start exploring by clicking the button below.</p>
<a class="cta-button" href="/start.html">Get Started</a>
</div>
</body>
</html>