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
56 lines (43 loc) · 1.87 KB
/
index.html
File metadata and controls
56 lines (43 loc) · 1.87 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
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Noto+Sans+SC" rel="stylesheet">
<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 id="links">News</div>
<div id="links">Videos</div>
<div id="links">Quizzes</div>
<div id="links">Tasty</div>
<input div id="search" placeholder="Search">
</div>
<div class="top">
<h1>Which Ilvermorny House Are You?</h1>
<img class="siliconValley" src="https://i.pinimg.com/originals/ec/3a/79/ec3a791674ecd19bb589e646ae984268.png">
</div>
<div class="questions">
<h2>Let's start with your name.</h2>
<input id="name" placeholder="">
<h2> Which do you most value: freedom, individuality, service, or ambition?</h2>
<input id="question1" placeholder="freedom, individuality, service, ambition">
<h2>What's your favorite genre: fantasy, mystery, adventure, or science fiction?</h2>
<input id="question2" placeholder="fantasy, mystery, adventure, science fiction">
<h2>Which is your favorite color: green, red, yellow, or blue? </h2>
<input id="question3" placeholder="green, red, yellow, blue">
<h2>Which would you most like to discover: a magical creature, a powerful spell, a plant with healing properties, or a hidden city? </h2>
<input id="question4" placeholder="creature, spell, plant, city">
</div>
<div class="result">
<button>Discover your Ilvermorny house</button>
</div>
<div id="house">
<p></p>
<img id="houseimg" src="">
</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>