-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome.html
51 lines (47 loc) · 1.64 KB
/
welcome.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
<!DOCTYPE html>
<html>
<head>
<title>SwiftpeakDevelopment</title>
<!-- Link to the Tailwind CSS CDN -->
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<style>
/* Custom CSS styles */
body {
background-color: #1c1917; /* Set the background color to #1c1917 */
color: #fff; /* Text color to white */
font-family: Arial, sans-serif; /* Specify the font */
padding: 20px;
text-align: center;
}
h1 {
font-size: 3rem; /* Font size */
color: #0ea5e9; /* Change the h1 color to #0ea5e9 */
text-decoration: underline;
}
nav {
background-color: #1a202c; /* Dark blue background */
border: 1px solid #3182ce; /* Blue border */
padding: 10px; /* Padding around the navigation */
display: flex;
justify-content: space-evenly;
}
nav a {
color: #ff0000; /* Change link color to red */
border: 1px solid #ff0000; /* Red border for each link */
padding: 5px 10px; /* Space around each link (5px top/bottom, 10px left/right) */
}
</style>
</head>
<body>
<nav>
<a href="home.html">home</a>
<a href="about.html">About</a>
<a href="services.html">Services</a>
<a href="status.html">Status Page</a>
<a href="login.html">Login</a>
<a href="signup.html">comingsoon</a>
</nav>
<h1>Welcome to Swiftpeak Development!</h1>
<!-- Additional content or links can be added here -->
</body>
</html>