-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml sample.html
More file actions
85 lines (74 loc) · 1.72 KB
/
html sample.html
File metadata and controls
85 lines (74 loc) · 1.72 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Recipe Meal Planner & Grocery List Generator</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header>
<h1>Recipe Meal Planner & Grocery List Generator</h1>
</header>
<main>
<section id="recipe-list">
<h2>Recipes</h2>
<ul id="recipes">
<!-- Recipe items will be added here using JavaScript -->
</ul>
</section>
<section id="meal-plan">
<h2>Meal Plan</h2>
<ul id="plan">
<!-- Meal plan items will be added here using JavaScript -->
</ul>
</section>
<section id="grocery-list">
<h2>Grocery List</h2>
<ul id="list">
<!-- Grocery list items will be added here using JavaScript -->
</ul>
</section>
</main>
<footer>
© 2023 Recipe Meal Planner
</footer>
<script src="script.js"></script>
</body>
/* Your CSS styles go here */
/* This is a simplified example; you can style it as you prefer */
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
}
main {
margin: 20px;
display: flex;
justify-content: space-between;
}
section {
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
flex-basis: 30%;
margin: 10px;
}
h2 {
color: #333;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
font-size: 0.8em;
}
</html>