-
Notifications
You must be signed in to change notification settings - Fork 55
/
index.html
46 lines (46 loc) · 1.75 KB
/
index.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
<!-- The following is a HTML file that contains a form for a website called Poastal -->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Specifies the character encoding of the HTML document -->
<meta charset="UTF-8">
<!-- Defines the viewport for mobile devices -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- The title of the page -->
<title>Poastal</title>
<!-- Link to the external CSS file -->
<link rel="stylesheet" href="styles.css">
<!-- Link to the website icon -->
<link rel="icon" type="image/x-icon" href="./img/favicon.png" width="30" height="40">
<!-- Links to Google Fonts -->
<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=Lato&display=swap" rel="stylesheet">
</head>
<body>
<!-- Header section -->
<div class="header">
<!-- Image logo for the website -->
<img src="./img/icon.png" alt="poastal" width="30" height="40">
<!-- Title of the website -->
<h1>Poastal</h1>
</div>
<div class="main-content">
<input type="email" id="email" placeholder="Enter email address">
<!-- Display section for search results (hidden by default) -->
<div id="loading" class="hidden">Searching...</div>
<div id="image-container"></div>
<table id="result-table">
<!-- Table header section -->
<thead>
<tr>
</tr>
</thead>
<!-- Table body section for displaying search results -->
<tbody id="result">
</tbody>
</table>
</div>
<script src="script.js"></script>
</body>
</html>