Skip to content

Instantly share code, notes, and snippets.

@tjstalcup
Created March 30, 2016 01:58
Show Gist options
  • Save tjstalcup/61f48030f3e78e3de03bd5d81187faa4 to your computer and use it in GitHub Desktop.
Save tjstalcup/61f48030f3e78e3de03bd5d81187faa4 to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Quiz App</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="css/styles.css">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>TJ's Quiz App</h1>
<div class="question">
<h2 class="title">Question Title Here</h2>
<ul>
<li><input type="radio" id="0" name="answer"><label for="0">Answer</label></li>
<li><input type="radio" id="1" name="answer"><label for="1">Answer</label></li>
<li><input type="radio" id="2" name="answer"><label for="2">Answer</label></li>
<li><input type="radio" id="3" name="answer"><label for="3">Answer</label></li>
</ul>
</div>
</div>
<!-- Latest compiled and minified JavaScript -->
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment