Skip to content

Commit

Permalink
Merge pull request #11 from gabrielarce/Main
Browse files Browse the repository at this point in the history
wrapped html elements inside section, added paragraph tag
  • Loading branch information
jamespeeler committed May 28, 2022
2 parents 5797fcb + 0c1786c commit da8a2d4
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
<!DOCTYPE html>
<html>
<head>

<head>
<meta charset="utf-8">
<title>Rating LGBTQ+ Acceptance</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 href="https://fonts.googleapis.com/css2?family=Glory:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
</head>

<body>

<body>
<h1>Rating LGBTQ+ Acceptance</h1>
<section>
<section id="inputSection">
<input id="business" type="text" name="" placeholder="Enter Business Name">
<button id="clickMe" type="button" name="button">Results</button>
<h1>Hello, world! (index.html)</h1>
<p>Do you want to know how friendly a company is towards the LGBTQ+ community? Search for a company to find out their rating</p>
</section>
<section id="apiResults">
<h2 id="businessName"></h2>
<p id="businessRating"></p>
<a id="businessUrl"></a>
<img id="businessImg">
</section>
<h2 id="businessName"></h2>
<p id="businessRating"></p>
<a id="businessUrl"></a>
<img id="businessImg">
<script type="text/javascript" src="/js/main.js"></script>
</body>
</html>
</body>

</html>

0 comments on commit da8a2d4

Please sign in to comment.