-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (36 loc) · 1.83 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
<!-- ALERT!!! You'll need a basic understanding of code to make changes to this file. If you don't fit this description, then please close this file! -->
<!-- ONLY CHANGE CODE THAT HAS A COMMENT ABOVE IT! -->
<!-- This does NOT need to change! only change if you know what you are doing! -->
<!DOCTYPE html>
<html>
<head>
<title> NWRESD Rainier Trail </title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!-- This is where you change the colors of the page. Change the hex codes below to give the page a little bit of flair! -->
<script id="page colors">
document.documentElement.style.setProperty("--background_1", "#D9D9D9");
document.documentElement.style.setProperty("--background_2", "#AFAFAF");
document.documentElement.style.setProperty("--borders_text", "#000000");
document.documentElement.style.setProperty("--link", "#364E72");
</script>
<nav>
<script src="nav.js"></script>
</nav>
<main>
<!-- This is where you change the page's background. Replace the address in src to the new background image's address -->
<img id="cover" src="assets/placeholder.jpg" />
<!-- This is where you change the page's logo. Replace the address in src to the logo image's address -->
<div id="home-logo">
<img src="assets/test_logo.png"/>
</div>
<h2> Rainier Trail Guide </h2>
<h3> Hover over the left side of the page for navigation </h3>
</main>
<footer>
Northwest Regional Educational Service District 2024 <span style="color: #252525;">|</span> Designed by Mischa Larkins
</footer>
</body>
</html>