-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHome.html
More file actions
95 lines (90 loc) · 2.25 KB
/
Home.html
File metadata and controls
95 lines (90 loc) · 2.25 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
87
88
89
90
91
92
93
94
95
<html >
<head>
<title>Healthy Recipes </title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-image: url('ho.jpg');
background-size: 2000px 1200px;
background-position: center;
color: white;
background-repeat:no-repeat;
text-align: center;
}
.header {
padding: 50px;
background-color: darkslategray;
}
h1 {
font-size: 3em;
text-shadow: 2px 2px 4px darkgreen;
color: gold;
}
.meal-cards {
display: flex;
justify-content: center;
gap: 30px;
margin-top: 50px;
}
.meal-card {
background: lightblue;
padding: 20px;
border-radius: 15px;
width: 250px;
transition: transform 0.3s;
box-shadow: 0 8px 16px black;
}
.meal-card:hover {
transform: scale(1.1);
}
.meal-card img {
width: 200px;
height: 150px;
border-radius: 10px;
border: 3px solid white;
}
marquee {
background: green;
padding: 15px;
font-size: 1.2em;
margin-top: 50px;
color: white;
text-shadow: 1px 1px 2px black;
}
</style>
</head>
<body>
<br>
<br>
<div class="header">
<h1>Healthy Recipes Hub</h1>
<p>Discover Nutritious Meals for Every Meal Time!</p>
</div>
<br>
<br>
<br>
<br>
<br>
<br>
<div class="meal-cards">
<a href=br.html target="_blank" class="meal-card">
<img src="bf.jpg" >
<h2>Breakfast</h2>
</a>
<a href=lu.html target="_blank" class=meal-card>
<img src="lu.jpg">
<h2>Lunch</h2>
</a>
<a di.html target="_blank" class="meal-card">
<img src="di.jpg">
<h2>Dinner</h2>
</a>
</div>
<br>
<br>
<br>
<marquee>🍏Healthy Eating is Self-Care! Start Your Journey Today 🌟</marquee>
</body>
</html>