-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathside_dish.html
88 lines (85 loc) · 4.52 KB
/
side_dish.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
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
86
87
88
<!DOCTYPE html>
<html>
<head>
<title>Taste of Japan</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Quattrocento" rel="stylesheet">
<link href="https://fonts.googleapis.com/earlyaccess/mplus1p.css" rel="stylesheet" />
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<script src='https://code.jquery.com/jquery-3.1.0.min.js'></script>
<script src='final_project.js'></script>
<script src="https://use.fontawesome.com/90ea8e36de.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<header class="container">
<div class="row">
<h1 class="col-md-5 col-md-offset-4 col-xs-9">Taste of Japan <a href="http://nova.umuc.edu/~ct488a04/finalProject/index.html"><img src="img/japanese-flag.png" class="japanese-flag" alt="Japanese Flag"></a></h1>
<nav class="col-md-1 col-md-offset-2 col-xs-1">
<div class="dropdown">
<button class="btn dropdown-toggle" type="button" data-toggle="dropdown">Menu</button>
<ul class="dropdown-menu">
<li><a href="http://nova.umuc.edu/~ct488a04/finalProject/index.html">Home</a></li>
<li><a href="http://nova.umuc.edu/~ct488a04/finalProject/main_dish.html">Main Dish</a></li>
<li><a href="http://nova.umuc.edu/~ct488a04/finalProject/dessert.html">Dessert</a></li>
<li><a href="http://nova.umuc.edu/~ct488a04/finalProject/search.html">Search</a></li>
<li><a href="http://nova.umuc.edu/~ct488a04/finalProject/contact.html">Contact</a></li>
<li><a href="http://nova.umuc.edu/~ct488a04/finalProject/references.html">References</a></li>
</ul>
</div>
</nav>
</div>
</header>
<section class="jumbotron">
<div class="container">
<div class="row">
<h2 class="text-center">Side Dish Recipes</h2>
</div>
</div>
</section>
<section class="container">
<div class="row">
<div class="col-md-5 popular-recipes">
<h3 class="text-center">Yaki Gyoza Recipe</h3>
<div class='recipes-button text-center'>Show Link</div>
<ul class='recipes text-center row'>
<li class="col-md-12"><a target="_blank" href="https://cookingwithdog.com/recipe/yaki-gyoza-fried-dumplings/"><img src="img/yaki-gyoza.jpg" alt="Yaki Gyoza"></a></li>
</ul>
</div>
<div class="col-md-5 popular-recipes">
<h3 class="text-center">Tamagoyaki Recipe</h3>
<div class='recipes-button text-center'>Show Link</div>
<ul class='recipes text-center row'>
<li class="col-md-12"><a target="_blank" href="https://cookingwithdog.com/recipe/tamagoyaki-japanese-omelette/"><img src="img/tamagoyaki.jpg" alt="Tamagoyaki"></a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-5 popular-recipes">
<h3 class="text-center">Infinite Grilled Bell Peppers Recipe</h3>
<div class='recipes-button text-center'>Show Link</div>
<ul class='recipes text-center row'>
<li class="col-md-12"><a target="_blank" href="https://partykitchen.jp/recipe/grilled-infinite-bell-pepper/"><img src="img/infinite-grilled-bellpeppers.jpg" alt="Infinite Grilled Bell Peppers"></a></li>
</ul>
</div>
<div class="col-md-5 popular-recipes">
<h3 class="text-center">Shiitake Pizza Recipe</h3>
<div class='recipes-button text-center'>Show Link</div>
<ul class='recipes text-center row'>
<li class="col-md-12"><a target="_blank" href="https://partykitchen.jp/recipe/mini_shiitake_pizza/"><img src="img/shiitake-pizza.jpg" alt="Shiitake Pizza"></a></li>
</ul>
</div>
</div>
</section>
<footer>
<div class="row">
<div class="col-md-4 col-md-offset-2"><a target="_blank" href="https://validator.w3.org/nu/?doc=http%3A%2F%2Fnova.umuc.edu%2F~ct488a04%2FfinalProject%2Fside_dish.html">side_dish.html Validation</a></div>
<div class="col-md-4"><a target="_blank" href="https://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fnova.umuc.edu%2F~ct488a04%2FfinalProject%2Fstyle.css&profile=css3&usermedium=all&warning=1&vextwarning=&lang=en">CSS Validation</a></div>
</div>
<p>© 2017 Erika N Tharp</p>
</footer>
</body>
</html>