-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (78 loc) · 4.52 KB
/
index.html
File metadata and controls
85 lines (78 loc) · 4.52 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>this-events</title>
<link href="https://fonts.googleapis.com/css?family=Jura|Oxygen" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
<script defer src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
</head>
<body>
<nav id="navmenu">
<div class="navi">Home
<a href="#" class="inner">About Us</a>
</div>
<div class="navi">Location
<a href="#" class="inner">Hawaii</a>
</div>
<div class="navi">Blog
<a href="#" class="inner">Nov 2018</a>
</div>
</nav>
<div id="banner">
</div>
<div id="newMenu">
<h1><span>"This"</span> Secret Menu</h1>
<p class="instruct">Click on your favorite restaurant to unlock the secret menu item.</p>
<div id="main">
<h2 class="name">McDonald's
<p class="menu">Air Land Sea Burger $5.99<img src="http://hackthemenu.com/wp-content/uploads/2015/11/mcdonalds-land-sea-and-air-burger-1032px.jpg" alt="">
</p>
</h2>
<h2 class="name">Starbucks
<p class="menu">Red Velvet Frappuccino $7.99<img src="http://starbuckssecretmenu.net/wp-content/uploads/2012/12/red-tuxedo-red-velvet-frappuccino.jpg" alt="">
</p>
</h2>
<h2 class="name">Taco Bell
<p class="menu">Chilli Cheese Burrito $1.99<img src="http://1.bp.blogspot.com/-UwYG6JSEUB4/UvVy9UncVlI/AAAAAAAAa_U/sonxQ659ChE/s1600/taco-bell-chili-cheese-burrito.jpg" alt="">
</p>
</h2>
<h2 class="name">Subway
<p class="menu">Pizza Sub $4.99<img src="http://hackthemenu.com/wp-content/uploads/2013/08/subway-pizza-sub.jpg" alt="">
</p>
</h2>
<h2 class="name">Burger King
<p class="menu">Suicide Burger $19.99<img src="http://cdn.secretmenus.com/wp-content/uploads/2014/03/suicide-burger.png" alt="">
</p>
</h2>
</div>
<div id="socialMedia">
<h1>Rate <span>"This"</span> Week's Losers</h1>
<p class="instruct">Add a counter to the thumbs down icon.</p>
<div class="rank">
<img class="mcd" src="https://i.kinja-img.com/gawker-media/image/upload/s--RmQjcpRt--/c_scale,fl_progressive,q_80,w_800/qxapq7y76btrv0fcwgb9.jpg" alt="">
<div class="descrip">The Filet-O-Fish otherwise known as the 'Fish-O-Filet' is a fish sandwich sold by the international fast food chain store McDonald's. It was invented in 1962 by Lou Groen, a McDonald's franchise owner in Cincinnati, Ohio, in response to falling hamburger sales on Fridays resulting from the Roman Catholic practice of abstaining from meat on Fridays. While the fish composition of the sandwich has changed through the years to satisfy taste and supply shortcomings, the framework of its ingredients have remained constant; a fried breaded fish fillet, a steamed bun, tartar sauce, and pasteurized processed American cheese.</div>
<div class="thumb" style="font-size:3em; color:cornflowerblue">
<i class="far fa-thumbs-down"></i>
</div>
</div>
<div class="rank">
<img class="mcd" src="https://localtvwiti.files.wordpress.com/2018/01/nuggets.jpg?quality=85&strip=all&w=1200" alt="">
<div class="descrip">Chicken McNuggets are a type of chicken product offered by international fast-food restaurant chain McDonald's, which they introduced in select markets in 1981,and made available nationwide by 1983. They consist of small pieces of processed chicken meat that have been battered and deep fried.</div>
<div class="thumb" style="font-size:3em; color:cornflowerblue">
<i class="far fa-thumbs-down"></i>
</div>
</div>
<div class="rank">
<img class="mcd" src="https://www.mcdonalds.com.my/storage/foods/September2017/thumb2applepie-43cb5ce301.jpg" alt="">
<div class="descrip">McDonald's apple pies were introduced on the menu in 1968, but in 1992 they were phased out in favor of a baked pie (claimed to be healthier) in the United States. There are some McDonald's restaurants throughout the US and world which still offer the fried pies, including all McDonald's restaurants in the United Kingdom, Japan, and Russia. Flavors include cherry and apple (US mainland), taro (Hawaii), and green bean or red bean (China). The Burger King chain also offers fried pies on its menu, in apple and "wild berry" flavors.</div>
<div class="thumb" style="font-size:3em; color:cornflowerblue">
<i class="far fa-thumbs-down"></i>
</div>
</div>
</div>
</div>
<div id="footer">© 2017 Gin Drinkers Association (GDA)</div>
<script src="js/app.js"></script>
</body>
</html>