-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecord.html
More file actions
80 lines (77 loc) · 2.92 KB
/
record.html
File metadata and controls
80 lines (77 loc) · 2.92 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
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
<!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="author" content="Isai Mar" />
<meta
name="description"
content="WDD 230 - Web Frontend Development - Isai Mar - course assignment portal"
/>
<meta property="og:title" content="Isai Mar Web dev Project" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://isaimar.github.io/wdd230/" />
<meta
property="og:image"
content="https://upload.wikimedia.org/wikipedia/commons/0/0d/Tampico%2C_Centro_Historico_%2812059306706%29.jpg"
/>
<title>Isai Mar - WDD 230 - Web Frontend Development Site</title>
<link rel="stylesheet" href="styles/normalize.css" />
<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=Hind+Madurai:wght@300;400;500;600;700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet"
/>
<link rel="icon" href="images/favico_palmtree.ico" />
<link rel="stylesheet" href="styles/base.css" />
<link rel="stylesheet" href="styles/larger.css" />
<link rel="stylesheet" href="styles/form.css" />
</head>
<body>
<div id="mode">☑️</div>
<header>
<img id="me" src="images/Mar128_1471_.avif" alt="Me" />
<h3>Isai Mar</h3>
</header>
<nav>
<button id="menu"></button>
<ul class="navigation">
<!-- <a href="https://isaimar.github.io/wdd230/chamber/index.html">
<img id="logo" src="images/logo.webp" alt="tampico logo" />
</a> -->
<li><a href="https://isaimar.github.io/wdd230/index.html">Home</a></li>
<li>
<a href="https://isaimar.github.io/wdd230/chamber/index.html">
Chamber
</a>
</li>
<li>
<a
href="https://isaimar.github.io/wdd230/week01/chamber-site-plan.html"
>
Site Plan
</a>
</li>
<li><a href="https://isaimar.github.io/wdd230/form.html">Contact us</a></li>
</ul>
</nav>
<main>
<h1>Thanks!</h1>
<section>
<p>Thanks for submitting this form. We will get back to you within a week with a response.</p>
</section>
</main>
<footer>
<p id="year"><span>🇲🇽</span></p>
<p id="lastModified"></p>
</footer>
<script src="scripts/getDates.js"></script>
<script src="scripts/hamburger_menu.js"></script>
<script src="scripts/darkmode.js"></script>
<script src="scripts/localStorage.js"></script>
<script src="scripts/password.js"></script>
<script src="scripts/range.js"></script>
</body>
</html>