-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbr.html
More file actions
70 lines (62 loc) · 1.83 KB
/
br.html
File metadata and controls
70 lines (62 loc) · 1.83 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>Breakfast Recipes</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: lightgreen;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
}
h1 {
color: green;
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: orange;
font-weight: bold;
}
marquee {
background: green;
padding: 10px;
color: white;
margin-bottom: 20px;
}
</style>
</head>
<body>
<marquee>🥞 Start Your Day Right with These Breakfast Recipes! 🍳</marquee>
<div class="container">
<h1>Breakfast Recipes</h1>
<div class="recipe-card">
<h2><a href="dosa.html" target=_blank>Dosa</a></h2>
<img src=dosa.jpg width=200 align=center>
<p>Crispy and delicious South Indian crepe</p>
</div>
<div class="recipe-card">
<h2><a href="idli.html" target=_blank>Idli</a></h2>
<img src=idli.jpg width=120 align=center>
<p>Soft and fluffy steamed rice cakes</p>
</div>
<div class="recipe-card">
<h2><a href="vada.html" target=_blank>Vada</a></h2>
<img src=vada.jpg width=200 align=center>
<p>Spicy and crispy lentil donuts</p>
</div>
</div>
</body>
</html>