-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (63 loc) · 2.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Meet Your Veggies!</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<link href="style.css" type="text/css" rel="stylesheet" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<div id="navbar"></div>
<script>
// use JQuery to load the navigation bar without having to copy all the HTML
$(function () {
$("#navbar").load("navbar.html");
});
</script>
<div id="grid_main">
<div id="index_tut">
<a href="tutorials.html">
<h2 class="header">Tutorials</h2>
<br /><br /><br /><br /><br /><br /><br /><br />
<span>
Want to learn how to cook plant-based foods, like tofu and seitan?
</span>
<span>Click here to find all the tutorials you need!</span>
</a>
</div>
<div id="index_rec">
<a href="rec_home.html">
<h2 class="header">Alternatives</h2>
<br /><br /><br /><br /><br /><br /><br /><br />
<span>Having trouble finding what to eat instead of chicken?</span>
<span>These tools will help you learn what to love instead!</span>
</a>
</div>
</div>
<br />
<div id="index_blurb">
<h2 class="header">What is "Meet Your Veggies"?</h2>
<hr />
<span
>Meet Your Veggies is a website that aims to help users learn how to
transition to a plant-based diet while avoiding many of the issues that
others have experienced with such a change.</span
>
<span
>The website came about through the realization that there is tons of
information on <i>why</i> someone should pursue a vegan diet, without
actually explaining <i>how</i> to do so.</span
>
<br />
<span
>So, make yourself at home and learn all that you can about how to live
the plant-based lifestyle with Meet Your Veggies!</span
>
</div>
</body>
</html>