-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (75 loc) · 2.45 KB
/
index.html
File metadata and controls
86 lines (75 loc) · 2.45 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
86
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Recipe App | Welcome</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Email Messaging Site">
<meta name="keywords" content="recipe, meals, snacks, ejs">
<meta name="author" content="Victor CHINEWUBEZE">
<link rel="stylesheet" type="text/css" media="screen" href="UI/css/styles.css" />
<link rel="shortcut icon" type="image/x-icon" href="UI/img/smiley.png">
</head>
<body>
<header>
<div class="container">
<div id="appName">
<span class="open-slide">
<a href="#" onclick="openSlideMenu()">
<svg width="30" height="30">
<path d="M0,5 30,5" stroke="#fff" stroke-width="5" />
<path d="M0,14 30,14" stroke="#fff" stroke-width="5" />
<path d="M0,23 30,23" stroke="#fff" stroke-width="5" />
</svg>
</a>
</span>
<h1 id="epic"><a href="index.html"><span class="highlight">Recipe </span>App</a></h1>
</div>
<nav>
<ul>
<a href="../index.html">
<li class="current">Home</li>
</a>
<a href="UI/html/addrecipe.html">
<li>Add Recipe</li>
</a>
<a href="UI/html/recipes.html">
<li>View Recipes</li>
</a>
</ul>
</nav>
</div>
</header>
<div id="headerSpace"></div>
<section id="index-side-bar">
<aside class="side-bar" id="side-bar">
<ul>
<a href="#" class="close-btn" onclick="closeSlideMenu()">×</a>
<a href="#">
<li class="current">Home</li>
</a>
<a href="UI/html/addrecipe.html">
<li>Add Recipe</li>
</a>
<a href="UI/html/recipes.html">
<li>View Recipes</li>
</a>
</ul>
</aside>
</section>
<section id="welcome">
<div class="container blur">
<h1>Welcome!</h1>
<p class="container">You can store various recipes here and come back to them whenever you need them</p>
</div>
</section>
<div class="pt50 pb50 container" id="items">
<a href="UI/html/addrecipe.html"><button>Add New Recipe</button></a>
<a href="UI/html/recipes.html"><button>View Recipes</button></a>
</div>
<div id="headerSpace"></div>
<script src="UI/js/main.js"></script>
<footer>Recipe App, Copyright © 2019</footer>
</body>
</html>