forked from itscodenation/int-buzzfeed-quiz-18-19-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (41 loc) · 1.94 KB
/
index.html
File metadata and controls
45 lines (41 loc) · 1.94 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<title>Buzzfeed Quiz</title>
<link type='text/css' rel='stylesheet' href='css/style.css' />
</head>
<body>
<div class="header">
<div><img class="logo" src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/BuzzFeed.svg/1280px-BuzzFeed.svg.png"></div>
<div>News</div>
<div>Videos</div>
<div>Quizes</div>
<div>Tasty</div>
<input placeholder="Search">
</div>
</div>
<h1>Which Funny Food are You?</h1>
<p id="caption">With dedication, you'll be there before you know it. </p>
<img id="tomImg" src="https://www.popsci.com/sites/popsci.com/files/styles/655_1x_/public/import/2013/images/2013/09/redfoxyawn.jpg?itok=DgODP4Yg">
<a href="https://www.popsci.com/sites/popsci.com/files/styles/655_1x_/public/import/2013/images/2013/09/redfoxyawn.jpg?itok=DgODP4Yg">Fox McCloud </a>
<div id="tom">Buzzfeed Contributor</div>
<img class="siliconValley" src="http://ghostshark.weebly.com/uploads/1/1/9/9/11993879/5197809_orig.jpg">
<div class="questions"><a></a>
<h2>Let's start with your Name</h2>
<input id="name" placeholder="Enter Your Name Here">
<h2> Out with Friends? Where we eating?
(Answers: Mexico, Italia, Americana, Hispaniola) </h2>
<input id="questionSan" placeholder="Mexico?, Italia?, Americana?, Hispaniola?">
<h2> Which would you rather stay on earth forever while the others dissapear: Burritos, Spaghetti, Burgers, or Mofongo?</h2>
<input id="questionNii" placeholder= "One last trip to flavortown">
<h2>Ok so the fridge is empty for the 3rd time this week, what we eatin?: Cemita, Pizza Time, Tater Tots, Rice Chicken and Beans</h2>
<input id="questionIchii" placeholder="Guy Fieri ">
</div>
<div class="result">
<button>Click here to be your dream food!</button>
</div>
<div id="answer"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src='js/script.js'></script>
</body>
</html>