-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (90 loc) · 2.38 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<style>
body {
font-family: 'Times New Roman', serif;
background-color: lavender;
margin: 0;
padding: 0;
}
header {
background-color: #f5f5f5;
padding: 20px;
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1 {
margin: 0;
color: #333;
}
nav {
background-color: #e0e0e0;
padding: 10px;
text-align: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
nav h2 {
margin: 0 0 10px;
color: #444;
}
nav a {
margin: 0 15px;
text-decoration: none;
color: #007BFF;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
main {
padding: 20px;
text-align: center;
}
footer {
background-color: #f5f5f5;
padding: 10px;
text-align: center;
font-size: 14px;
position: fixed;
bottom: 0;
width: 100%;
box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}
footer br {
display: none; /* Hide line breaks for better spacing */
}
footer p {
margin: 0;
}
</style>
</head>
<body>
<!-- Date: 2024-08-03 -->
<header>
<h1>Welcome to the Home Page</h1>
</header>
<nav>
<h2>Navigation</h2>
<a href="index.html">Home</a>
<a href="meme.html">Meme</a>
<a href="game.html">Game</a>
<a href="palindrome.html">Palindrome</a>
<a href="user-input.html">User Input</a>
<a href="boards.html">Boards</a>
<a href="table.html">Table</a>
</nav>
<main>
<p>This is the landing page. Use the navigation menu to access other pages.</p>
</main>
<footer>
<p>Mason</p>
<p>University of Advancing Technology</p>
<p>2625 W Baseline Rd</p>
<p>Tempe, AZ 85283</p>
</footer>
</body>
</html>