-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
145 lines (137 loc) · 2.78 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<html>
<head>
<style>
body {
font-family: Arial;
padding: 10px;
background: #f1f1f1;
}
.header {
padding: 30px;
text-align: center;
background: white;
}
.header h1 {
font-size: 50px;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.leftcolumn {
float: left;
width: 80%;
}
.rightcolumn {
float: left;
width: 25%
background-color: #f1f1f1;
padding-left: 20px;
}
.card {
background-color: white;
padding: 20px;
margin-top: 20px;
}
.card_about {
background-color: white;
padding: 20px;
margin-top: 20px;
width: 190px;
}
.row:after {
content: "";
display: table;
clear: both;
}
.footer {
padding: 18px;
text-align: left;
background: #333;
margin-top: 20px;
color: #FFFFFF
}
.footer_contact_info {
}
@media screen and (max-width: 800px) {
.leftcolumn, .rightcolumn {
width: 100%;
padding: 50;
}
}
@media screen and (max-wdith: 400px) {
.topnav a {
float: none;
width: 100%;
}
}
</style>
<title>NAU Chess Club</title>
</head>
<body>
<div class="header">
<h1>NAU Chess Club</h1>
<p>Northern Arizona Chess Club</p>
</div>
<div class="topnav">
<a href="#">Home</a>
<a href="#">Events</a>
<a href="#">Schedule</a>
<a href="#" style="float: right">Contact Info</a>
</div>
<div class="row">
<div class="leftcolumn">
<div class="card">
<h2>Announcements</h2>
<h5>Upcoming Tournaments</h5>
<p>ASU December Open<br><font size = "2">Tempe, Arizona<br>Saturday, December 17, 2022</font></p>
<p>Prescott Chess Club Quads #19<br><font size = "2">Prescott, Arizona<br>Saturday, Februray 11, 2023</font></p>
<p>SACA Tournament<br><font size = "2">Tuscon, Arizona<br>Sunday, Decemeber 4, 2022</font></p>
<p>SACA Tournament<br><font size = "2">Tuscon, Arizona<br>Januray 20-23, 2022</font></p>
</div>
</div>
<div class="rightcolumn">
<div class="card_about">
<h2>About Info</h2>
<div class="fakeimg" style="height: 100px;">Image</div>
<p>Bio</p>
</div>
<div class="card_about">
<h2>Meeting times</h2>
<p>TBD</p>
<p>Monday:<br> 4pm - 7pm</p>
<p>Tuesday:<br> 4pm - 7pm</p>
<p>Wensday:<br> 6pm - 7pm<p>
<p>Thursday:<br> 6pm - 7pm</p>
<p>Friday:<br> 6pm - 7pm</p>
</div>
<div class="card_about">
<h2>Socials</h2>
<p>Instagram - </p>
<p>Discord - </p>
<p>TikTok - </p>
</div>
</div>
</div>
<div class="footer">
<h2>Contact Information</h2>
<hr>
<h4><font size = "4">Email</font></h4> - [email protected]</h4>
<h4><font size = "4">President</font> - Sean Ly</h4>
<h4><font size = "4">Vice President</font> - Daira Santacruz</h4>
<h4><font size = "4">Associate officer</font> - Ronan DeGeyter</h4>
</div>
</body>
</html>