-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (48 loc) · 2.58 KB
/
index.html
File metadata and controls
48 lines (48 loc) · 2.58 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
<!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="description" content="Assignment portal for Samuel Riveros in WDD 230: Web Frontend Development at Brigham Young University - Idaho">
<link rel="stylesheet" href="./styles/normalize.css">
<link rel="stylesheet" href="./styles/small.css">
<link rel="stylesheet" href="./styles/medium.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<title>WDD230 Assignment Portal </title>
</head>
<body>
<main>
<header>
<img src="./images/pfp.jpeg" alt="profile-pic" class="pfp">
<h1>Samuel Riveros</h1>
</header>
<h2>WDD 230: Assignment Portal</h2>
<hr>
<ul>
<li>Lesson 01: <a href="https://codepen.io/samuriverosb/pen/abjmoYx?editors=1010" target="_blank">Codepen Date formatted</a></li>
<li>Lesson 02: <a href="./lesson2/design-principles.html" target="_blank">Design Principles</a></li>
<li>Lesson 03: <a href="./lesson3" target="_blank">Viña del Mar Chamber Site Plan</a></li>
<li>Lesson 04: <a href="./chamber" target="_blank">Viña del Mar Chamber Home Page</a></li>
<li>Lesson 05.1: <a href="./codepen" target="_blank">DOM Manipulation</a></li>
<li>Lesson 05.2: <a href="./chamber" target="_blank">Viña del Mar Chamber Content</a></li>
<li>Lesson 06: <a href="./chamber" target="_blank">Responsive Design</a></li>
<li>Lesson 07.1: <a href="./lesson-7/lazyload.html" target="_blank">Progressive Loading of Images</a></li>
<li>Lesson 07.2: <a href="./chamber/discover.html" target="_blank">Discover Subpage</a></li>
<li>Lesson 08.1: <a href="./lesson8/tablebuild.html" target="_blank">Table Build</a></li>
<li>Lesson 08.2: <a href="./chamber/join.html" target="_blank">Join Subpage</a></li>
<li>Lesson 09.1: <a href="./lesson9/prophets.html" target="_blank">Prophets JSON</a></li>
<li>Lesson 09.2: <a href="./chamber/directory.html" target="_blank">Directory Subpage</a></li>
<li>Lesson 10.1: <a href="./lesson10/weather-api.html" target="_blank">Weather API</a></li>
<li>Lesson 10.2: <a href="./chamber" target="_blank">Using Weather API</a></li>
<li>Lesson 11: <a href="./chamber/index.html">Viña del Mar Chamber Site</a></li>
</ul>
<hr>
<footer>
<h3>© <span id="year"></span> .:|:. Samuel Riveros .:|:. Chile</h3>
<p>Last Updated: <span id="date"></span></p>
</footer>
</main>
<script src="./scripts/script.js"></script>
</body>
</html>