-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (74 loc) · 2.31 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="../Resources/ithastobeicowompwomp.ico">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" type="text/css" href="home.css">
<style>
body {
background-color: #000000; /* Black background */
color: #ffffff; /* White text color for contrast */
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
}
main {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background: #1c1c1c; /* Slightly lighter black for the main container */
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Darker shadow for depth */
}
header h1 {
margin: 0;
color: #ffffff;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 10px;
}
nav a {
text-decoration: none;
color: #0078d7; /* Keep link color for visibility */
}
nav a:hover {
text-decoration: underline;
}
footer {
text-align: center;
padding: 20px;
margin-top: 20px;
border-top: 1px solid #333333; /* Lighter border color for footer */
}
footer p {
color: #aaaaaa; /* Grey text color for footer */
}
</style>
</head>
<body>
<main>
<header>
<h1>Project-SPCT</h1>
<h3>spct-ai is out!</h1>
<p>Check it out by clicking the spct-ai button below!</h1>
</header>
<nav>
<ul>
<li><a href="Clockwork OS/Clockwork.html">Clockwork OS</a></li>
<li><a href="spct-ai/index.html">spct-ai (NEW!)</a></li>
<li><a href="https://iddu0.github.io">iddu01's Website</a></li>
</ul>
</nav>
<footer>
<p>Made by iddu01, and djsnorlax6707. With help from AI. <a href="https://iddu0.github.io">Website</a></p>
</footer>
</main>
</body>
</html>