-
Notifications
You must be signed in to change notification settings - Fork 2
/
quotes.html
33 lines (33 loc) · 1.41 KB
/
quotes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Cheer Up-Quotes</title>
<link href="https://fonts.googleapis.com/css?family=Francois+One|Lobster|Paytone+One|Sanchez|Shadows+Into+Light|Teko" rel="stylesheet">
<link rel="stylesheet" href="quotes.css" type= "text/css">
</head>
<body>
<header>
<ul>
<li><a href = "homepage.html">Home</a></li>
<li><a href= "quotes.html">Quotes</a></li>
<li><a href = "songs.html">Songs</a></li>
<li><a href = "images.html">Images</a></li>
<li><a href = "aframe.html">Cheerful VR</a></li>
<li><a href = "aboutus.html">About us</a></li>
</ul>
</header>
<h1><center><img src = "https://media.giphy.com/media/xlM0VeGGe9ShdtrXg2/giphy.gif" width = "90vw"> QUOTES <img src = "https://media.giphy.com/media/xlM0VeGGe9ShdtrXg2/giphy.gif" width = "90vw"></center></h1>
<h2><center>What kind of quote do you want?</center></h2><br>
<form><center>
<input type="radio" name="choice" value="Inspirational"> Inspirational
<input type="radio" name="choice" value="Silly">Silly</center>
</form>
<center><button onclick="submitAnswer()">Submit</button> </center>
<center><h4 id="display"></h4></center><br>
<script type="text/javascript" src="quotes.js"></script>
<div class = "credit">
<h4>Made by Carbon Copy</h4>
</div>
</body>
</html>