-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (72 loc) · 3.46 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
<!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">
<meta name="name" content="Matthew Anderson - WDD 230 - Web Frontend Development">
<meta name="description" content="WDD 230 - Web Frontend Development - Matthew Anderson - course assignment portal">
<meta name="author" content="Matthew Anderson">
<title>Matthew Anderson - WDD 230 - Web Frontend Development</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="styles/smaller.css" media="screen and (max-width: 37.5em)">
<link rel="stylesheet" type="text/css" href="styles/normalize.css">
<link rel="stylesheet" type="text/css" href="styles/base.css">
<link rel="stylesheet" type="text/css" href="styles/larger.css">
<link rel="icon" href="../images/favicon.ico">
</head>
<body>
<header>
<img src="images/matt.jpg" alt="Matt" class="imgheadermattjpg">
</header>
<nav>
<ul class="navigation">
<!-- <button id="menu"></button> -->
<li><a href="index.html" class="active">Home</a></li>
<li><a href="chamber/index.html">Chamber</a></li>
<li><a href="week01/chamber-site-plan.html">Site Plan</a></li>
<li><a href="underconstruction.html">Form</a></li>
</ul>
</nav>
<main>
<h1>WDD 230: Web Frontend Development</h1>
<!-- <div id="temple">
<div id="temple-box">
<img id="temple-img" src="images/temple.jpg" alt="background">
</div>
<section id="temple-msg">
<div class='button-box'>
</div>
</section>
</div> -->
<!-- <h2>WDD 230: Web Frontend Development</h2> -->
<section class="card">
<h2>Learning Activities</h2>
<ul>
<!-- Populate this list with learning activities as you progress through the course -->
<li>Week One: <a href="week01/chamber-site-plan.html">Chamber Siteplan</a></li>
<li>Week One: <a href="week01/lesson1/holygrail.html">CSS Activity</a></li>
<li>Week Two: <a href= "https://codepen.io/BYUIOMDA/pen/vYvROZx">Responsive Hamburger</a></li>
<li>Week Two: <a href= "week02/bom.html">BOM Top 10</a></li>
<!-- <li>Lesson 00: <a href= "index.html">Title</a></li> -->
</ul>
</section>
<section class="card">
<h2>Information</h2>
<p>Placeholder</p>
<p>Placeholder</p>
<p>Placeholder</p>
</section>
</main>
<footer>
<button id="mode">Darkmode Toggle ☑️</button>
<p id="lastModified">Last modified: [Date]</p>
<p>© <span id="currentYear">Year</span> Matthew Anderson UT/US</p>
</footer>
<script src="scripts/getDates.js"></script>
<script src="scripts/hamburgermenu.js"></script>
<script src="scripts/darkmode.js"></script>
</body>
</html>