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
42 lines (39 loc) · 1.81 KB
/
index.html
File metadata and controls
42 lines (39 loc) · 1.81 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
<!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 Tech Company is the Perfect Fit for You?</h1>
<p id="caption">With dedication, you'll be there before you know it. </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> Would you rather spend the day reading, coding, playing a sport or designing clothing?</h2>
<input id="question1" placeholder="Reading, Coding, Sports, Designing">
<h2> Which would you rather disappear from earh forever: Waffles, Pancakes, or French Toast?</h2>
<input id="question2" placeholder="Pancakes, Waffles, or French Toast">
<h2>What is your spirit animal?</h2>
<input id="question3" placeholder="Mine is a Duck">
</div>
<div class="result">
<button>Click here to land your dream job!</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>