This template will give you the basic building blocks so you will not have to worry about things such as standard CSS, HTML and JavaScript links.
<!DOCTYPE html> <html lang="en"> <head> <title>DIY: Extended Version</title> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://yr.media/statics/yr-media-typography/yr-typography.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.8.0/css/reset.min.css" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.8.0/css/reveal.min.css" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.8.0/css/theme/white.min.css" /> <link rel="stylesheet" href="/style.css"> </head>
<body> <!-- Change the TITLE text to the title of your quiz. Look at the example version below!--> <h1> TITLE </h1> <!-- This is going to turn into the below text --> <h1> Get to Know Shanya Williams <!-- Your title goes here --> </h1> </body> </body>
How to use them - An example:
What are we doing: We are going to take the answers you entered in the document and put them in the quiz.
<body> <div style="font-weight: bold; text-align: center;"> <!-- Change the area that says QUESTION #1 to the first question you put in your google document. --> QUESTION #1 </div> <!-- Below is an example of how I changed the QUESTION #1 section to the first question I had in my document. I changed QUESTION #1 to "What is Shanya's favorite color?" --> <div style="font-weight: bold; text-align: center;"> What is Shanya's favorite color? </div> </body>