-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathannouncements.html
58 lines (57 loc) · 1.89 KB
/
announcements.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/x-icon" href="./images/cream.ico">
<title>Announcements Page</title>
<style>
.container {
text-align: center;
}
p {
border: 2px solid white;
color: white;
background-color: #808080;
padding: 12px 24px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 18px;
margin: 2px 2px;
}
</style>
</head>
<body>
<div class="container">
<p>List of Announcements</p>
</div>
<div class="container">
<p>Message posted by Rico:</p>
<p>guys i'm not dead, i had a very long nap</p>
<p>Posted on 09/01/2024</p>
</div>
<div class="container">
<p>Message posted by Rico:</p>
<p>okay i'm officially back</p>
<p>Posted on 05/18/2024</p>
</div>
<div class="container">
<p>Message posted by Rico:</p>
<p>I will be taking a break from The RicoAnimations Site for a few days because I want to do other things. I should be back on Friday (05/17/2024), or Saturday (05/18/2024).</p>
<p>Posted on 05/14/2024</p>
</div>
<div class="container">
<p>Message posted by Rico:</p>
<p>i'm fixing a lot of the games on here it's gonna take a couple of days and calvin do what i say pls unless on special occasions</p>
<p>Posted on 04/24/2024</p>
</div>
<div class="container">
<p>Message posted by Rico:</p>
<p>guys i put millionux as blocked so please stop asking me</p>
<p>Posted on 02/02/2024</p>
</div>
</body>
</html>