-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (38 loc) · 1.74 KB
/
Copy pathindex.html
File metadata and controls
41 lines (38 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="icon" href="pics/JMU_logo_no_bkgd.png">
<link rel="stylesheet" href="styles/sidebar.css">
<link rel="stylesheet" href="styles/index_style.css">
</head>
<body>
<nav class="sidebar">
<div class="logo-container">
<a href="https://www.jmu.edu/index.shtml" target="_blank" rel="noopener noreferrer">
<img id="jmu_logo" src="pics/James_Madison_University_Athletics_logo.svg.png" alt="JMU Logo" class="logo">
</a>
</div>
<ul>
<li><a href="index.html"><i class="fas fa-cogs"></i> Home</a></li>
<li><a href="crossword.html"><i class="fas fa-home"></i> Crosswords!</a></li>
<li><a href="wordle.html"><i class="fas fa-info-circle"></i> Wordle!</a></li>
<li><a href="solutions.html">Solutions</a></li>
<li><a href="feedback.html">Feedback</a></li>
<li><a href="report.html"><i class="fas fa-envelope"></i> Report</a></li>
</ul>
</nav>
<button type="button" class="toggle-btn" id="toggle-btn">☰</button>
<div class="content">
<img id="duke_dog" src="pics/Duke.png" alt="Duke Dog!">
<h1>JMU Games!</h1>
<h2>Welcome to JMU Games! To begin playing, click the menu item in the top left and select a game!</h2>
<p>If you need help with crosswords or wordles, there are tutorials on each webpage!</p>
<div id="weather"></div>
</div>
<img id="jmu" src="pics/JMU-art-scaled.jpg" alt="Drawn picture of the Quad at James Madison University">
<script src="script/index.js"></script>
</body>
</html>