forked from belugawhalesarecool/EmberWebmaster2024
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreferencePage.html
More file actions
117 lines (95 loc) · 5.06 KB
/
referencePage.html
File metadata and controls
117 lines (95 loc) · 5.06 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>References</title>
<link rel="stylesheet" href="Real website/Html/standard format/embêr.css">
<link rel="stylesheet" href="Real website/Html/standard format/calendar.css">
<link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed&display=swap" rel="stylesheet">
<link rel="icon" href="Real website/Html/standard format/logo.png"/>
<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=Inter:ital,opsz,wght@0,14Real website/Html32,100Real website/Html900;1,14Real website/Html32,100Real website/Html900&family=Playfair+Display:ital,wght@0,400Real website/Html900;1,400Real website/Html900&family=Quattrocento:wght@400;700&family=Sanchez:ital@0;1&display=swap" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script> <!-- initalize the script -->
<script src="embêr.js"></script>
</head>
<body>
<script src=".//standard format/embêr.js"></script>
<div class = "left side">
<p id="heading"> EMBÊR </p>
<p id="heading1"> EMBÊR #2192-1 </p>
<img class="hover-rotate" src="Real website/Html/standard format/logo.png" id="logo" />
</div>
<nav class="nav-bar">
<div class="navlink-container">
<div class="dropcdown">
<button id="dropc-btn" class="navc-link"> ≡ </button>
<div class="dropc-links">
<a class="dropc-link" href="index.html"> HOME </a>
<a class="dropc-link" href="index.html?scroll=about"> ABOUT </a>
<a class="dropc-link" href="sustainabilityPage.html"> SUSTAINABILITY</a>
<a class="dropc-link" href="menuPage.html"> MENU </a>
<a class="dropc-link" href="reservePage.html"> RESERVE </a>
<form onsubmit="goToAbout(event)">
<a onsubmit="goToAbout(event)" class ="dropc-link" href="referencePage.html"> REFERENCES </a>
</form>
</div>
</div>
<form action = "index.html">
<button class="nav-link">HOME</button>
</form>
<form onsubmit="goToAbout(event)">
<button class="nav-link" type="submit">ABOUT</button>
</form>
<div class="dropdown">
<button id='drop-btn'class="nav-link">CONTACT US</button>
<div class="drop-links">
<a Href=tel:1234567890 class="tel-link"><b>Phone:</b><br>123-456-7890<br></a>
<a href="mailto:emberdining@gmail.com"class= 'mail-link'><b>Email:</b><br>emberdining@gmail.com</a>
</div>
</div>
<form action = "sustainabilityPage.html">
<button class="nav-link">SUSTAINABILITY</button>
</form>
<form action = "menuPage.html">
<button class="nav-link">MENU</button>
</form>
<form action = "reservePage.html">
<button class="nav-link">RESERVE</button>
</form>
<form action = "referencePage.html">
<button class="nav-link">REFERENCES</button>
</form>
</div>
<script>
function goToAbout(event) {
event.preventDefault();
window.location.href = "index.html?scroll=about";
}
</script>
<script>
window.onload = function() {
const urlParams = new URLSearchParams(window.location.search);
if (urlParams.get('scroll') === 'about') {
document.getElementById("end-container").scrollIntoView({ behavior: "smooth" });
}
};
</script>
</nav>
<div class="references-back">
<h1 class='name1'>References</h1>
</div>
<div class="works-cited">
<a target="_blank" href="Real website/Html/standard format/work-log.pdf" class="end-link3">Link to Work Log.</a>
<a target="_blank" href="Real website/Html/standard format/webmaster-team-2192-1-documentation.pdf" class="end-link4">Link to Documentation.</a>
<img class="embed-container" src="Real website/Html/standard format/pg1.png" alt="Loading References...">
<img class="embed-container" src="Real website/Html/standard format/pg2.png" alt="Loading References...">
<img class="embed-container" src="Real website/Html/standard format/pg3.png" alt="Loading References...">
</div>
<footer>
<p><a href="https://tsaweb.org/competitions/computer-science/lists/high-school-computer-science---information-technology-competitions/webmaster" class="end-link">This website was created by Webmaster Team #2192-1.</a></p>
</footer>
</body>
<div class="background"></div>
</html>