-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (83 loc) · 2.2 KB
/
Copy pathindex.html
File metadata and controls
91 lines (83 loc) · 2.2 KB
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>Carter Tollman</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #1f1f1f; /* Dark background */
color: #ffffff; /* White text */
margin: 0;
padding: 0;
line-height: 1.6;
}
header {
background-color: #333333; /* Dark gray header */
padding: 1rem;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
nav {
background-color: #444444; /* Slightly lighter gray */
text-align: center;
padding: 0.5rem;
}
nav a {
color: #ffffff; /* White links */
text-decoration: none;
margin: 0 1rem;
font-size: 1.2rem;
}
nav a:hover {
text-decoration: underline;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
}
footer {
background-color: #333333;
text-align: center;
padding: 1rem;
position: fixed;
bottom: 0;
width: 100%;
}
footer p {
margin: 0;
font-size: 0.9rem;
color: #cccccc; /* Light gray text */
}
</style>
</head>
<body>
<header>
<h1>Carter Tollman</h1>
</header>
<nav>
<a href="projects.html">Projects</a>
<a href="gallery.html">Gallery</a>
</nav>
<div class="container">
<section>
<h2>Welcome to my Website!</h2>
<p>Check out my <a href="projects.html">Projects</a> or browse through my <a href="gallery.html">Gallery</a>.</p>
</section>
</div>
<div class="container">
<section>
<h2>Reid late counter:</h2>
<p>Reid has been late <b>1</b> time this year.</p>
</section>
</div>
<footer>
<p>© 2024 Carter Tollman. All rights reserved.</p>
</footer>
</body>
</html>