-
Notifications
You must be signed in to change notification settings - Fork 0
/
car.html
executable file
·55 lines (43 loc) · 1.67 KB
/
car.html
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
<!doctype html>
<!--[if lte IE 8]><html class="no-js oldie"><![endif]-->
<!--[if (gt IE 8)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="" />
<meta property="og:title" content="" />
<meta property="og:site_name" content="" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:image" content="" />
<meta property="og:url" content="" />
<meta property="twitter:card" content="summary" />
<meta property="twitter:title" content="" />
<meta property="twitter:description" content="" />
<meta property="twitter:image" content="" />
<meta property="twitter:url" content="" />
<title>QUIZCHASER</title>
<link rel="stylesheet" href="static/resources/css/style.css" />
</head>
<body>
<header> </header>
<section class="choose-car">
<h1 class="heading">Select your car...</h1>
<div class="cars">
<div class="car car-black">
<a href="quiz.html/black" class="button">Black Rubber 2000</a>
</div>
<div class="car car-white">
<a href="quiz.html/white" class="button">Tha Sticky Loctite</a>
</div>
</div>
</section>
<script src="static/resources/js/main.js"></script>
</body>
</html>