-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WDD331 Course Portal of CWM</title>
<meta name="author" content="Carlos Washington Mercado">
<meta name="description" content="This site links to all WDD331 assignments. Fall 2020. Carlos W. Mercado. Any questions about this, please, mail me at [email protected]">
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="favicon.png" type="image/png">
</head>
<body>
<header>
<h1>WDD331 <br> Advanced CSS</h1>
<img src="images/profile-picture.png" alt="Carlos Washington Mercado" class="profile-picture">
<h2>CARLOS W. MERCADO</h2>
</header>
<main>
<nav>
<ul>
<li>Lesson 01: <a href="lesson1/Kids Read for Fun Home.html" target="_blank">Review Webpage</a></li>
</ul>
</nav>
</main>
<footer>
<p>©2020 | Carlos W. Mercado</p>
<p><a href="https://www.byui.edu/online">BYU Online</a></p>
<p>Last updated: <span id="currentDate"></span></p>
</footer>
<script src="js/script.js"> </script>
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
<script src="js/webfontload.js"></script>
</body>
</html>