-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path24.html
96 lines (86 loc) · 2.64 KB
/
24.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
92
93
94
95
<html>
<head>
<title>2023 Quotes</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style> /*start css*/
* {
box-sizing: border-box;
}
/*body style*/
body {
margin: 0;
font-family: Tahoma;
}
/*side nav styling*/
.sidenav {
height: 100%;
width: 200px;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: mediumseagreen;
overflow-x: hidden;
}
/* side nav text style*/
.sidenav a {
color: white;
padding: 16px;
text-decoration: none;
display: block;
font-family: Tahoma;
font-size: 110%;
}
/* side nav hhover sttyle*/
.sidenav a:hover {
background-color: slateblue;
color: white;
}
/* body content style*/
.content {
margin-left: 200px;
padding-left: 10px;
}
.content {
background-color: white;
color: white;
}
/* list styling */
ul {
/*list-style-image: url('lowres_robmug.PNG');*/
}
ul li {
background:slateblue;
padding:5px;
margin: 3px;
list-style-position: inside;
list-style-type: square;
}
</style> <!-- end css -->
</head>
<body>
<div class="sidenav"> <!--side bar-->
<a href="https://www.frc4131.org/">OUR WEBSITE</a>
<a href="http://frc4131.github.io/home.html">HOMEPAGE</a>
<a href="http://frc4131.github.io/15.html">2015</a>
<a href="http://frc4131.github.io/16.html">2016</a>
<a href="http://frc4131.github.io/17.html">2017</a>
<a href="http://frc4131.github.io/18.html">2018</a>
<a href="http://frc4131.github.io/19.html">2019</a>
<a href="http://frc4131.github.io/20.html">2020</a>
<a href="http://frc4131.github.io/21.html">2021</a>
<a href="http://frc4131.github.io/22.html">2022</a>
<a href="http://frc4131.github.io/23.html">2023</a>
</div>
<div class="content">
<!--<h3><a href="http://frc4131.github.io/home.html"><h3><a href="http://frc4131.github.io/home.html"><img src="/new_logo.png" height="25%" width="25%"></a></h3></a></h3> I HATE THIS STUPID LOGO-->
<h3><a href="http://frc4131.github.io/home.html"><h3><a href="http://frc4131.github.io/home.html"><img src="/akash_logo.png" height="45%" width="45%"></a></h3></a></h3>
<h1 style="color:mediumseagreen;font-size:300%;font-family:georgia;"><img src="/lowres_robmug.PNG" height="5%" width="5%"> 2024 QUOTES (the great depression) <img src="/lowres_robmug.PNG" height="5%" width="5%"> </h1>
<p style="color:slateblue;"> This is an archive of all quotes dictated in 2023. Please contact contact@frc4131.org if you have any questions or concerns regarding the content of this site.</p>
<ul>
<li><q>Victor is a catfish?</q> <i>Aniket, 1/01/23</i></li>
</div>
</ul>
</body>
</html>