Skip to content

Instantly share code, notes, and snippets.

@cferdinandi
Created January 16, 2019 19:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cferdinandi/b6e24d347d59e7029c3c41398318bf20 to your computer and use it in GitHub Desktop.
Save cferdinandi/b6e24d347d59e7029c3c41398318bf20 to your computer and use it in GitHub Desktop.
Random quote project template from https://learnvanillajs.com.

Project Details

Write a script that gets a random quote from an API and renders it into the DOM.

Not sure what API to use? I like the Ron Swanson Quotes API.

Considerations

  • What do you do if the quote API fails?
  • How do you protect yourself from XSS attacks with third-party API data?

Need help?

This project is part of the Vanilla JS Academy.

<!DOCTYPE html>
<html>
<head>
<title>Project Template</title>
<style type="text/css">
body {
margin-left: auto;
margin-right: auto;
max-width: 40em;
width: 88%;
}
</style>
</head>
<body>
<h1>Random Quote</h1>
<div id="quote"></div>
<script>
// Project code...
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment