-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (74 loc) · 4.27 KB
/
index.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
<!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/main_dish.html">Main Dish</a></li>
<li><a href="http://nova.umuc.edu/~ct488a04/finalProject/side_dish.html">Side 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>
<div class="jumbotron">
<div class="container">
<div class="row">
<p>Do you think Japanese foods are only about sushi and tempura?</p><br />
<p>Then, let's explore true Japanese cuisine!</p>
</div>
</div>
</div>
<section class="container">
<div class="row">
<h2 class="col-md-12 text-center">Why Japanese Food?</h2>
</div>
<hr>
<div class="row">
<div class="col-md-6 col-md-offset-3 text-center" id="intro">Hello! My name is Erika Tharp, a creator of Taste of Japan.<br>I assume you are wondering why you need to be told what Japanese food is.It's so simple! Sushi and tempura, right? I've had the same comment over the last 5 years since I moved to the US from Japan, my home country.<br>Here, I want to share unique and delicious Japanese dish recipes beyond sushi and tempura!<br>Are you ready to explore?
</div>
</div>
<hr>
<div class="row">
<div class="col-md-12 popular-recipes">
<h2 id="popular-recipes-title">Popular Recipes</h2>
<div class='recipes-button text-center'>Show Recipes</div>
<ul class='recipes text-center row'>
<li class="col-md-4"><a target="_blank" href="https://partykitchen.jp/recipe/locomoco_wampaku_sandwich/">Stuffed Sandwich<img src="img/stuffed-sandwich.jpg" alt="Stuffed Sandwich"></a></li>
<li class="col-md-4"><a target="_blank" href="https://partykitchen.jp/recipe/autumn_sushi_cake/">Sushi Cake<img src="img/sushi-cake.jpg" alt="Sushi Cake"></a></li>
<li class="col-md-4"><a target="_blank" href="https://cookingwithdog.com/recipe/melonpan-melon-bread/">Melonpan<img src="img/melonpan.jpg" alt="Melonpan"></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%2Findex.html">index.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>