-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
102 lines (91 loc) · 3.08 KB
/
test.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap demo</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
</head>
<body>
<!DOCTYPE html>
<html>
<head>
<title> Coffee List</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
#coffee-list {
background-color: #ffffff;
width: 400px;
margin: 0 auto;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
h1 {
text-align: center;
font-size: 32px;
margin-bottom: 20px;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
li {
padding: 10px;
border-bottom: 1px solid #e6e6e6;
}
li:last-child {
border-bottom: none;
}
.coffee-name {
font-size: 20px;
font-weight: bold;
margin-bottom: 5px;
}
.coffee-description {
font-size: 14px;
color: #666666;
}
.coffee-price {
font-size: 16px;
font-weight: bold;
color: #4CAF50;
margin-top: 10px;
}
</style>
</head>
<body>
<div id="coffee-list">
<h1> MCA Coffee List</h1>
<ul>
<li>
<div class="coffee-name">Espresso</div>
<div class="coffee-description">A concentrated shot of coffee served in a small cup.</div>
<div class="coffee-price">$2.50</div>
</li>
<li>
<div class="coffee-name">Cappuccino</div>
<div class="coffee-description">Espresso with steamed milk and foam, topped with cinnamon or chocolate powder.</div>
<div class="coffee-price">$3.50</div>
</li>
<li>
<div class="coffee-name">Latte</div>
<div class="coffee-description">Espresso with steamed milk and a thin layer of foam.</div>
<div class="coffee-price">$3.00</div>
</li>
<li>
<div class="coffee-name">Mocha</div>
<div class="coffee-description">Latte with chocolate syrup and whipped cream.</div>
<div class="coffee-price">$4.00</div>
</li>
</ul>
</div>
</body>
</html>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
</body>
</html>