-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecord.html
50 lines (45 loc) · 2.06 KB
/
record.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Favio Fernandez - WDD 230 - Web Frontend Development</title>
<meta name="description" content="WDD 230 - Web Frontend Development course assignment portal by Favio Andre Fernandez Mori.">
<meta name="author" content="Favio Andre Fernandez Mori">
<meta property="og:title" content="Favio Fernandez - WDD 230 - Web Frontend Development"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://andrek4z.github.io/wdd230/"/>
<meta property="og:image" content="https://ddclalibertad.gob.pe/wp-content/gallery/inauguracion-plaza-de-armas/08.jpg"/>
<link rel="icon" href="faicon.ico">
<link rel="stylesheet" href="styles/normalize.css">
<link rel="stylesheet" href="styles/base.css">
<link rel="stylesheet" href="styles/larger.css">
<link rel="stylesheet" href="styles/form.css">
</head>
<body>
<header>
<img src="images/profile.webp" alt="Profile Image" loading="lazy" width="140" height="140">
<h1>Favio Andre Fernandez Mori</h1>
</header>
<a id = "menu" href = "#"></a>
<nav>
<ul class = "navigation">
<li><a href="#" class="active">Home</a></li>
<li><a href="https://andrek4z.github.io/wdd230/chamber/index.html">Chamber</a></li>
<li><a href="https://andrek4z.github.io/wdd230/week01/chamber-site-plan.html">Site Plan</a></li>
<li><a href="https://andrek4z.github.io/wdd230/form.html">Form</a></li>
</ul>
</nav>
<main>
<p class="finalMessage">Thanks for create a user for our online videogame. You can close the window now.</p>
</main>
<footer>
<p>© ${copyrightYear}</p>
<p id="lastModified">${lastModifiedDate}</p>
</footer>
<script src="scripts/getDates.js"></script>
<script src="scripts/burguerMenu.js"></script>
<script src="scripts/darkMode.js"></script>
<script src="scripts/numberVisits.js"></script>
</body>
</html>