-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecord.html
More file actions
49 lines (49 loc) · 2.31 KB
/
record.html
File metadata and controls
49 lines (49 loc) · 2.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="WDD 230 - Web Frontend Development, Ian William Barnie, Irving Chamber of Commerce Form Submission">
<meta name="author" content="Billy Barnie">
<meta property="og:title" content="Ian William Barnie - WDD 230 - Frontend Web Development">
<meta property="og:type" content="website">
<meta property="og:image" content="https://www.tourtexas.com/bodyCopy_images/Irving/mandalay-canals-las-colinas-texas.jpg">
<meta property="og:url" content="https://billybarnie.github.io/wdd230/">
<link rel="stylesheet" href="styles/normalize.css">
<link rel="stylesheet" href="styles/base.css">
<link rel="stylesheet" href="styles/small.css">
<link rel="stylesheet" href="styles/form.css">
<link rel="icon" href="favicon.ico">
<title>Irving Chamber of Commerce Form Submission</title>
</head>
<body>
<header>
<h1>Ian W. Barnie</h1>
<img class="profile-picture" src="images/ian_barnie.webp" alt="Picture of the student">
</header>
<nav>
<button id="menu"></button>
<ul class="navigation">
<li><a href="index.html" target="_blank">Home</a></li>
<li><a href="lesson03/chamber-site-plan.html">Site Plan</a></li>
<li><a href="chamber/index.html" target="_blank">Chamber</a></li>
<li><a href="https://www.byui.edu/" target="_blank">BYU-Idaho</a></li>
<li><a href="https://www.churchofjesuschrist.org/study/scriptures" target="_blank">Scripture</a></li>
<li><a href="form.html">Rate Us</a></li>
</ul>
</nav>
<div class="record">
<main>
<p class="recorded">Thank you for your time and patience! Your rating has been recorded in our system. Have a wonderful day!</p>
</main>
</div>
<footer>
<p>© <span id="year"></span> | Billy Barnie | Texas</p>
<p>Last Moditication: <span id="lastmodified"></span></p>
</footer>
<script src="scripts/getdates.js"></script>
<script src="scripts/menu.js"></script>
<script src="scripts/visits.js"></script>
<script src="scripts/form.js"></script>
</body>
</html>