-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (81 loc) · 1.56 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
<!DOCTYPE html>
<html>
<head>
<title>30somethings</title>
<style>
body {
background-color: #f0f8ff;
color: #000080;
font-family: "Courier New", Courier, monospace;
text-align: center;
}
h1 {
color: #ff0000;
font-size: 48px;
text-shadow: 2px 2px 0px #00ff00;
}
h2 {
color: #ff4500;
font-size: 36px;
}
a {
color: #0000ff;
text-decoration: underline;
}
table {
width: 80%;
margin: auto;
border: 2px solid #0000ff;
background-color: #ffffe0;
}
td {
padding: 20px;
border: 1px solid #000;
}
.marquee {
color: #ff00ff;
font-size: 24px;
}
.blink {
font-weight: bold;
color: #ff0000;
}
.navbar {
background-color: #00ffff;
padding: 10px;
margin: 20px;
}
</style>
</head>
<body>
<!-- Marquee -->
<marquee behavior="scroll" direction="left" class="marquee">
We suck, but Jesus doesn't. 🚀
</marquee>
<!-- Title -->
<h1>Welcome to the 30somethings' class</h1>
<!-- Navbar -->
<div class="navbar">
<a href="index.html">Home</a> |
<a href="index3.html">Archive</a>
</div>
<!-- Content -->
<table>
<tr>
<td>
<h3><a href="SBFdec1.html">December 1</a></h3>
</td>
<td>
<h3><a href="SBFdec8.html">December 8</a></h3>
</td>
<td>
<h3><a href="SBFdec15.html">December 15</a></h3>
</td>
</tr>
</table>
<!-- Footer -->
<footer>
<p>© 2024 | <a href="mailto:[email protected]">Email</a></p>
</footer>
</body>
</html>