-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlu.html
More file actions
71 lines (62 loc) · 1.79 KB
/
lu.html
File metadata and controls
71 lines (62 loc) · 1.79 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
<html >
<head>
<title>Lunch Recipes</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: lightblue;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
}
h1 {
color: blue;
text-align: center;
text-shadow: 2px 2px 4px white;
}
.recipe-card {
background: white;
padding: 20px;
margin: 20px 0;
border-radius: 10px;
box-shadow: 0 4px 8px black;
}
.recipe-card a {
text-decoration: none;
color: red;
font-weight: bold;
}
marquee {
background: blue;
padding: 10px;
color: white;
margin-bottom: 20px;
}
</style>
</head>
<body>
<marquee>🍲 Enjoy a Healthy and Tasty Lunch! 🍚</marquee>
<div class="container">
<h1>Lunch Recipes</h1>
<div class="recipe-card">
<h2><a href="tr.html"target=_blank>Tomato Rice</a></h2>
<img src=tr.jpg width=180 align=center>
<p>Tangy and flavorful rice dish</p>
</div>
<div class="recipe-card">
<h2><a href="cb.html"target=_blank>Chicken Biryani</a></h2>
<img src=cb.jpg width=160 align=center>
<p>Spicy and aromatic rice with chicken</p>
</div>
<div class="recipe-card">
<h2><a href="fr.html" target=_blank>Fried Rice</a></h2>
<img src=fr.jpg width=120 align=center>
<p>Quick and easy veg fried rice</p>
</div>
</div>
</body>
</html>