-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (86 loc) · 2.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ryan Taniguchi: WDD 230 Assignment Portal</title>
<meta
name="description"
content="Assignment portal for Ryan Taniguchi's assignments in WDD 230: Web Frontend Development at Brighanm Young University - Idaho."
/>
<link rel="shortcut icon" href="images/favicon.ico" />
<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&family=Roboto&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/small.css" />
<link rel="stylesheet" href="css/medium.css" />
</head>
<body>
<header>
<img
src="images/indexportrait.jpg"
alt="Portrait for Ryan Taniguchi"
width="130"
height="150"
/>
<div class="headertext">
<h1>Ryan Taniguchi</h1>
</div>
</header>
<nav></nav>
<main>
<h2>WDD 230: Assignment Portal</h2>
<hr />
<div>
<ul>
<li>
Lesson 02:
<a href="lesson2/design-principles.html">Design Principles</a>
</li>
<li>Lesson 03: <a href="lesson3/">Chamber Site Plan</a></li>
<li>Lesson 04: <a href="chamber/">Chamber of Commerce</a></li>
<li>Lesson 05: <a href="lesson5/bom.html">DOM Manipulation</a></li>
<li>
Lesson 06:
<a href="lesson6/">Chamber of Commerce - Responsive Images</a>
</li>
<li>
Lesson 07:
<a href="lesson7/lazyload.html">Progressive Loading of Images</a> ||
<a href="chamber/discover.html">Chamber of Commerce Discover</a>
</li>
<li>
Lesson 08:
<a href="lesson8/tablebuild.html">ACME Wildwest Table</a> ||
<a href="chamber/join.html">Chamber of Commerce Join</a>
</li>
<li>
Lesson 09:
<a href="lesson9/prophets.html">Latter-day Prophet Card Page</a> ||
<a href="lesson9/wireframes.html">Directory Wireframes</a> ||
<a href="chamber/directory.html">Chamber of Commerce Directory</a>
</li>
<li>
Lesson 10: <a href="lesson10/weather-api.html">Weather API</a> ||
<a href="chamber/">Chamber of Commerce Weather</a>
</li>
<li>
Lesson 11:
<a href="chamber/">Chamber of Commerce - Final Submission</a> ||
<a href="chamber/contact.html">Chamber of Commerce Contact</a>
</li>
</ul>
</div>
<hr />
</main>
<footer>
<p id="currentyear"></p>
<p id="lastmodified"></p>
</footer>
<script src="js/footer.js"></script>
</body>
</html>