-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
40 lines (34 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>LGBTQ+ Friendliness Rating</title>
<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=Glory:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main>
<h1>LGBTQ+ Friendliness Rating</h1>
<p>Do you want to know how friendly a company is towards the LGBTQ+ community? Search below to find out their
rating out of 10!</p>
<form>
<input id="business" type="text" name="" placeholder="Company Name">
<input id="location" type="text" name="" placeholder="Company Location">
<input id="clickMe" type="submit" value="Results"></input>
</form>
<section class="requestInfo">
<h2 id="businessName"></h2>
<span id="businessRating"></span>
<p id="businessRatingMessage"></p>
<a id="businessUrl" src=""></a>
<img id="businessImg">
</section>
</main>
<footer>
<p>Disclaimer: Ratings are currently random and do not reflect the actual businesses being looked up.</p>
</footer>
<script type="text/javascript" src="main.js"></script>
</body>
</html>