-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
jcqlng
committed
Aug 15, 2020
1 parent
3f4da11
commit 9779fd2
Showing
5 changed files
with
233 additions
and
66 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,21 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | ||
<meta name="theme-color" content="#000000"> | ||
<link rel="manifest" href="/manifest.json"> | ||
<link rel="shortcut icon" href="/favicon.ico"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css"> | ||
<title>Clicky Game!</title> | ||
<link rel="stylesheet" | ||
href="https://d33wubrfki0l68.cloudfront.net/css/ba81d45f1eb54096e2d1717c5edcbf3af9a19812/static/css/main.269f401f.css"> | ||
</head> | ||
|
||
<body cz-shortcut-listen="true"> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<script>"http:" === window.location.protocol && (window.location.protocol = "https:")</script> | ||
<div id="root"> | ||
<div> | ||
<nav class="navbar"> | ||
<ul> | ||
<li class="brand"> | ||
<a href="/">Clicky Game</a> | ||
</li> | ||
<li class="">Click an image to begin!</li> | ||
<li>Score: 0 | Top Score: 0</li> | ||
</ul> | ||
</nav> | ||
<header class="header"> | ||
<h1>Clicky Game!</h1> | ||
<h2>Click on an image to earn points, but don't click on any more than once!</h2> | ||
</header> | ||
<main class="container"> | ||
<div role="img" aria-label="click item" class="click-item" | ||
style="background-image: url("/assets/images/birdperson.png");"></div> | ||
<div role="img" aria-label="click item" class="click-item" | ||
style="background-image: url("/assets/images/goldenford.png");"></div> | ||
<div role="img" aria-label="click item" class="click-item" | ||
style="background-image: url("/assets/images/jerry.png");"></div> | ||
<div role="img" aria-label="click item" class="click-item" | ||
style="background-image: url("/assets/images/rick.png");"></div> | ||
<div role="img" aria-label="click item" class="click-item" | ||
style="background-image: url("/assets/images/jessica.png");"></div> | ||
<div role="img" aria-label="click item" class="click-item" | ||
style="background-image: url("/assets/images/meeseeks.png");"></div> | ||
<div role="img" aria-label="click item" class="click-item" | ||
style="background-image: url("/assets/images/evilmorty.png");"></div> | ||
<div role="img" aria-label="click item" class="click-item" | ||
style="background-image: url("/assets/images/mr.png");"></div> | ||
<div role="img" aria-label="click item" class="click-item" | ||
style="background-image: url("/assets/images/beth.png");"></div> | ||
<div role="img" aria-label="click item" class="click-item" | ||
style="background-image: url("/assets/images/gianthead.png");"></div> | ||
<div role="img" aria-label="click item" class="click-item" | ||
style="background-image: url("/assets/images/summer.png");"></div> | ||
<div role="img" aria-label="click item" class="click-item" | ||
style="background-image: url("/assets/images/morty.png");"></div> | ||
</main> | ||
<footer class="footer"> | ||
<div class="bottom">Clicky Game! <img alt="react" src="assets/images/react.svg"></div> | ||
</footer> | ||
</div> | ||
</div> | ||
<script type="text/javascript"src="https://d33wubrfki0l68.cloudfront.net/js/69e9b48b853348cbee160b0699b939e7877c9e64/static/js/main.322bad46.js"></script> | ||
</body> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#000000" /> | ||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> | ||
<!-- Bootstrap --> | ||
<link | ||
rel="stylesheet" | ||
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" | ||
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" | ||
crossorigin="anonymous" | ||
/> | ||
<title>Clicky Game</title> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.