forked from Vimall03/Alimento
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.html
106 lines (96 loc) · 3.38 KB
/
1.html
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
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Food Delivery App</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<style>
/* Custom styles */
body {
background-color: #f8f9fa;
}
.restaurant-card {
margin-bottom: 20px;
border: 1px solid #e2e8f0;
border-radius: 10px;
overflow: hidden;
}
.restaurant-card img {
max-width: 100%;
height: auto;
object-fit: cover;
}
.restaurant-info {
padding: 10px;
}
.restaurant-title {
font-size: 1.2rem;
font-weight: bold;
margin-bottom: 5px;
}
.restaurant-type {
font-size: 0.9rem;
color: #6c757d;
}
/* Different cuisine styles */
.chinese {
background-color: #ffce54; /* Yellow */
}
.italian {
background-color: #fc6e51; /* Orange */
}
.mexican {
background-color: #4fc1e9; /* Blue */
}
.indian {
background-color: #a0d468; /* Green */
}
</style>
</head>
<body>
<div class="container mt-4">
<h1 class="mb-4">Food Delivery App</h1>
<div class="row">
<div class="col-md-6">
<div class="restaurant-card chinese">
<img src="vendor/restaurant/5.webp" alt="Chinese Restaurant">
<div class="restaurant-info">
<div class="restaurant-title">Chinese Delights</div>
<div class="restaurant-type">Chinese Cuisine</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="restaurant-card italian">
<img src="vendor/restaurant/5.webp" alt="Italian Restaurant">
<div class="restaurant-info">
<div class="restaurant-title">Pasta Paradise</div>
<div class="restaurant-type">Italian Cuisine</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="restaurant-card mexican">
<img src="vendor/restaurant/5.webp" alt="Mexican Restaurant">
<div class="restaurant-info">
<div class="restaurant-title">Taco Town</div>
<div class="restaurant-type">Mexican Cuisine</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="restaurant-card indian">
<img src="vendor/restaurant/5.webp" alt="Indian Restaurant">
<div class="restaurant-info">
<div class="restaurant-title">Spice Kingdom</div>
<div class="restaurant-type">Indian Cuisine</div>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap JS and optional popper.js for dropdowns and tooltips -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>