forked from itscodenation/int-buzzfeed-quiz-18-19-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (39 loc) · 1.82 KB
/
index.html
File metadata and controls
44 lines (39 loc) · 1.82 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
<!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 Gossip Girl character would be your best friend?</h1>
<p id="caption">Are you ready to be part of Manhattan's elite? </p>
<img id="tomImg" src="http://th.downloadblog.it/jSwEBLI80OIF2oYywP73GVj3zCo=/fit-in/655xorig/http%3A%2F%2Fmedia.downloadblog.it%2F5%2F57d%2Ftom-di-myspace.jpg">
<a href="https://en.wikipedia.org/wiki/Tom_Anderson">Tom Anderson</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> If you were to pick a store to shop at for the rest of your life, which one would it be?</h2>
<input id="question1" placeholder="Bloomingdales, Topshop, Zara, L Train Vintage">
<h2> Which borough would you like to live in?</h2>
<input id="question2" placeholder="Manhattan, Queens, or Brooklyn">
<h2>What would you rather have as a pet?</h2>
<input id="question3" placeholder="Puppy, kitty, bunny, birds">
</div>
<div class="result">
<button>Click here to find out who is your next best friend!</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>