-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterfacecoursework2.html
More file actions
47 lines (36 loc) · 1.15 KB
/
Copy pathinterfacecoursework2.html
File metadata and controls
47 lines (36 loc) · 1.15 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
<html lang="en">
<head>
<title>Coursework 2</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="coursework2style.css" />
</head>
<div class="grid-container" id="container">
<header>
<h1>People Search</h1>
<ul class="navigation">
<li><a href="interfacecoursework2.html">People search</a></li>
<li><a href="carsearch.html">Vehicle search</a></li>
<li><a href="addvehicle.html">Add a vehicle</a></li>
</ul>
</header>
<aside class="sidebar">
<img src="supabase.png">
</aside>
<main>
<label for="name" id="names">Enter name:</label>
<input placeholder="Rachel Smith" id="name" type="text">
<label for="license" id="licenses">Enter license</label>
<input placeholder="GHT56FN" id="license" type="text">
<button id="searcher">Submit</button>
<div id="message">
</div>
</main>
<div id="results">
</div>
<!-- <script src="https://cdn.jsdelivr.net/npm/@supabase/supabase-js@2"></script> -->
<script src="practice.js" type="module"></script>
<footer>
<p>Creator: Aryan Sunil</p>
</footer>
</div>
</html>