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
46 lines (43 loc) · 1.75 KB
/
index.html
File metadata and controls
46 lines (43 loc) · 1.75 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
46
<!DOCTYPE html>
<html>
<head>
<title>Buzzfeed Quiz</title>
<link type='text/css' rel='stylesheet' href='css/style.css' />
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
</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>
<h1>What Type of Bender Should You Be?</h1>
<p id="caption">Yes, I mean from one of the best shows ever, Avatar: The Last Airbender.</p>
<img class="siliconValley" src="https://ih1.redbubble.net/image.374734659.0797/ap,550x550,16x12,1,transparent,t.u1.png">
<div class="questions">
<h2>Let's start with your Name</h2>
<input id="name" placeholder="enter your name here">
<h2>What attribute do you define success with?</h2>
<input id="question1" placeholder="health, happiness, wealth, fulfillment">
<h2>What do you think the root of power comes from?</h2>
<input id="question2" placeholder="knowledge, strength, balance, or emotion">
<h2>Choose an animal.</h2>
<input id="question3" placeholder="badgermole, eelhound, turtleduck, or polarbear dog">
<h2>What is your favourite season?</h2>
<input id="question4" placeholder="spring, summer, fall, or winter">
<h2>What is your zodiac animal?</h2>
<input id="question5" placeholder="mine is a snake">
</div>
<div class="result">
<button>Click here to find your answer!</button>
</div>
<div id="finalAnswer">
<p></p>
</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>