-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAq4.html
More file actions
38 lines (37 loc) · 1 KB
/
Aq4.html
File metadata and controls
38 lines (37 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Details and Summary</title>
</head>
<body>
<h1>Coffee Shop Frequently Asked Questions</h1>
<details>
<summary>What types of coffee do you serve?</summary>
<ul>
<li>Espresso</li>
<li>Americano</li>
<li>Latte</li>
<li>Mocha</li>
<li>Macchiato</li>
</ul>
</details>
<details>
<summary>Do you offer any non-coffee drinks?</summary>
<ul>
<li>Hot Chocolate</li>
<li>Chai Latte</li>
<li>Iced Tea</li>
<li>Fruit Smoothies</li>
</ul>
<details>
<summary>Do you have any vegan options?</summary>
<ul>
<li>Plant-based milk (soy, almond, oat)</li>
<li>Vegan pastries and snacks</li>
</ul>
</details>
</details>
</body>
</html>