-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyrecipes.html
53 lines (51 loc) · 1.66 KB
/
myrecipes.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Housewives Recepies</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<header>
<div class="logo">
<div></div>
</div>
<div class="navi container">
<button class="btn">Logout</button>
<button class="btn">My Recipies</button>
<button class="btn">Write Recipie</button>
<input type="text" class="search" /> <button class="btn fr">Search</button>
</div>
</header>
<div class="container">
<div class="col-md-3" >
<h2>Categories</h2>
<hr/>
<ul>
<li>Holiday</li>
<li>Pie</li>
<li>Main Dish</li>
<li>Desert</li>
<li>Fish</li>
<li>Chicken</li>
<li>Asian</li>
<li>Traditional</li>
</ul>
</div>
<div class="col-md-9 border-round">
<hr class="dontent-start"/>
Here will be the first page.
And my-recipes page is also very similar so - copy&paste.
<hr class="dontent-end"/>
</div>
</div>
</body>
</html>