-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (29 loc) · 956 Bytes
/
index.html
File metadata and controls
37 lines (29 loc) · 956 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Reactive Programming</title>
</head>
<body>
<h1>Reactive Programming</h1>
<div class="section">
<h2>1. Taking Orders</h2>
<button id="order-btn">Order Lemonade</button>
<div class="output" id="order-output"></div>
</div>
<div class="section">
<h2>2. Temperature Updates</h2>
<button id="temp-btn">Simulate Temp Change</button>
<div class="output" id="temp-output"></div>
</div>
<div class="section">
<h2>3. Filter Lemonade Orders</h2>
<button id="filter-btn">Send Mixed Orders</button>
<div class="output" id="filter-output"></div>
</div>
<script src="https://unpkg.com/rxjs@7.8.1/dist/bundles/rxjs.umd.min.js"></script>
<script src="src/order.js"></script>
<script src="src/temperature.js"></script>
<script src="src/filter.js"></script>
</body>
</html>