Skip to content

Instantly share code, notes, and snippets.

@faithgaiciumia
Last active June 29, 2020 20:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save faithgaiciumia/8d5f88392a6c75c83635ad4a346e9d6e to your computer and use it in GitHub Desktop.
Save faithgaiciumia/8d5f88392a6c75c83635ad4a346e9d6e to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
href="https://fonts.googleapis.com/css2?family=Cookie&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/main.css" />
<title>Random Quote Generator</title>
</head>
<body>
<div id="quote-box">
<!-- Start of quote display area -->
<div>
<p class="insert-quote" id="quote">
Want to see a quote?
</p>
</div>
<!-- end of quote display area -->
<!-- start of author display area -->
<div class="controls">
<p class="insert-author" id="author"></p>
</div>
<!-- end of author display area -->
</div>
<!-- Generate new quote button -->
<div id="btn" onclick="generateQuote()">
<span class="noselect">New Quote</span>
<div id="circle"></div>
</div>
<!-- our Javascript file -->
<script src="scripts/app.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment