-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 1017 Bytes
/
Copy pathindex.html
File metadata and controls
33 lines (30 loc) · 1017 Bytes
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
<!-- Front-End: HTML -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Custom Search Engine</title>
<link rel="stylesheet" href="/styles.css"> <!-- Link to external CSS -->
<style>
@font-face {
font-family: 'Amsterdam Four';
src: url('/amsterdam-four.ttf') format('truetype');
text-align:center;
}
</style>
<script async src="https://cse.google.com/cse.js?cx=2540cbeec7da44e3c"></script>
</head>
<body>
<header>
<h1 style="font-family: 'Amsterdam Four', sans-serif; text-align:center;color:#e6b61a;"><strong>H&N</strong></h1>
</header>
<main>
<div class="gcse-search"></div>
</main>
<footer>
<p style="text-align:center";>© 2024 H&N </p>
</footer>
<script src="/script.js"></script> <!-- Link to external JS -->
</body>
</html>