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
40 lines (38 loc) · 1.53 KB
/
index.html
File metadata and controls
40 lines (38 loc) · 1.53 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
<!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>
<h1>Which Boyband are You?</h1>
<p id="caption">A true representation of who you are. </p>
<img id="tomImg" src="https://pbs.twimg.com/media/DyWmjNaVAAAybxT.jpg">
<a href="https://en.wikipedia.org/wiki/Tom_Anderson">Luzmarie Gonzalez</a>
<div id="tom">Buzzfeed Contributor</div>
<img class="siliconValley" src="https://www.hbo.com/content/dam/hbodata/series/silicon-valley/episodes/s3/silicon-valley-3-3000x1688.jpg/_jcr_content/renditions/cq5dam.web.1200.675.jpeg">
<div class="questions">
<h2>Let's start with your Name</h2>
<input id="name" placeholder="Enter Your Name Here">
<h2>What decade are you from</h2>
<input id="question1" placeholder=" 90's 20's, 10's">
<h2> Which genre is your favorite?</h2>
<input id="question2" placeholder="Rap,Pop,Indie">
<h2> where are you from?</h2>
<input id="question3" placeholder="Big city,Small Town ">
</div>
<div class="result"
<button> Click here know the band you are!</button>
</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>