-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
47 lines (47 loc) · 2.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WDD 230 Assignment Portal</title>
<meta name="description" content="Assignment portal for William Meza in WDD 230: Web Frontend Development at Brigham Young University - Idaho">
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<header class="header">
<h1>William E. Meza</h1>
<img class="profile-picture" src="images/profile-picture-william.jpg" alt="william meza profile picture">
</header>
<main class="main">
<h2>WDD 230: Assigment Portal</h2>
<hr>
<ul>
<li>Lesson 02: <a href="lesson2/design-principles.html"> Design Principles</a></li>
<li>Lesson 03: <a href="lesson3/">Weathersite Plan</a></li>
<li>Lesson 04: <a href="lesson4/preston-4.html">Preston Town Homepage</a></li>
<li>Lesson 05: <a href="lesson5/preston-5.html"> Preston Town Page Part 2</a></li>
<li>Lesson 06: <a href="lesson6/preston-6.html"> Preston Weather Part 3</a></li>
<li>Lesson 07: <a href="lesson7/lazyload.html"> Lazyload activity</a> | <a href="lesson7/gallery-7.html"> Gallery page</a></li>
<li>Lesson 08: <a href="lesson8/stormcenter.html"> Storm center</a> | <a href="lesson8/tablebuild.html"> Table build</a></li>
<li>Lesson 09: <a href="lesson9/prophets.html"> Prophets </a> | <a href="lesson9/index.html"> Home page</a></li>
<li>Lesson 10: <a href="lesson10/preston-10.html">Preston Weather API</a></li>
<li>Lesson 11: <a href="lesson11/index.html">Full weather site</a></li>
</ul>
</main>
<footer class="footer">
<p>
© 2020 | William E. Meza | Colombia | <span>BYUI Online Learning</span>
</p>
<p class="last-update" id="lastModified"></p>
</footer>
<script src="js/last-modified.js" defer></script>
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
<script>
WebFont.load({
google: {
families: ['Roboto']
}});
</script>
</body>
</html>