-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·79 lines (76 loc) · 2.69 KB
/
index.html
File metadata and controls
executable file
·79 lines (76 loc) · 2.69 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description"
content="A project portal for WDD230 or Web Frontend Development 1. Will contain links to multiple projects that will be submitted." />
<title>Project Portal for WDD230(Web Frontend Development 1)</title>
<link rel="stylesheet" href="css/small.css" />
<link rel="stylesheet" href="css/medium.css" />
<link rel="stylesheet" href="css/normalize.css" />
<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&display=swap" rel="stylesheet" />
</head>
<body>
<div class="page">
<header>
<img src="images/20210905_163738.jpg" alt="A picture of me" class="mePic verticalCenter" />
<div class="verticalCenter">
<h1>Thomas Scott</h1>
</div>
</header>
<main>
<h2>WDD230: Assignment Portal</h2>
<hr />
<ul class="lessonList">
<li>
<p>Lesson 02: <a href="lesson02/design-principles.html">Design Principles</a></p>
</li>
<li>
<p>Lesson 03: <a href="lesson03/">Chamber of Commerce Site Plan</a></p>
</li>
<li>
<p>Lesson 05: <a href="lesson05/bom.html">Top 25 BoM Chapters</a></p>
</li>
<li>
<p>Lesson 07: <a href="lesson07/lazyload.html">Lazy Loading</a></p>
</li>
<li>
<p>Lesson 07: <a href="chamber/discover.html">Chamber Discover Page</a></p>
</li>
<li>
<p>Lesson 08: <a href="lesson08/table.html">Table Accessibility</a></p>
</li>
<li>
<p>Lesson 08: <a href="chamber/join.html">Join the Chamber</a></p>
</li>
<li>
<p>Lesson 09: <a href="video.html">Video Presentation</a></p>
</li>
<li>
<p>Lesson 09: <a href="lesson09/prophets.html">Latter-day Prophets</a></p>
</li>
<li>
<p>Lesson 09: <a href="wireframe/directory_wireframe.html">Directory Wireframe</a></p>
</li>
<li>
<p>Lesson 09: <a href="chamber/directory.html">Chamber Directory</a></p>
</li>
<li>
<p>Lesson 10: <a href="lesson10/weather-api.html">Fairbanks Alaska Weather</a></p>
</li>
<li>
<p>Lesson 11: <a href="chamber/">Final Chamber Draft</a></p>
</li>
</ul>
</main>
<footer>
<p id="copyright" class="biggerText"></p>
<p id="lastUpdated"></p>
</footer>
</div>
<script src="scripts/portal.js" type="text/javascript"></script>
</body>
</html>