-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdinner.html
More file actions
70 lines (62 loc) · 1.77 KB
/
dinner.html
File metadata and controls
70 lines (62 loc) · 1.77 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
<html >
<head>
<title>Dinner Recipes</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: lightpink;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
}
h1 {
color: purple;
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: purple;
font-weight: bold;
}
marquee {
background: purple;
padding: 10px;
color: white;
margin-bottom: 20px;
}
</style>
</head>
<body>
<marquee>🍜 End Your Day with a Delicious Dinner! 🍛</marquee>
<div class="container">
<h1>Dinner Recipes</h1>
<div class="recipe-card">
<h2><a href="pasta.html "target=_blank>Pasta</a></h2>
<img src=pasta.jpg width=150 >
<p>Creamy and cheesy pasta</p>
</div>
<div class="recipe-card">
<h2><a href="noodles.html" target=_blank>Noodles</a></h2>
<img src=oodles.jpg width=150 >
<p>Quick and tasty stir-fried noodles</p>
</div>
<div class="recipe-card">
<h2><a href="pr.html" target=_blank>Paneer Roti</a></h2>
<img src=pr.jpg width=150>
<p>Soft roti stuffed with spiced paneer</p>
</div>
</div>
</body>
</html>