-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcpad.html
76 lines (66 loc) · 3.3 KB
/
calcpad.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
<!-- https://www.physicsclassroom.com/calcpad/launch/CPGL3 -->
<!DOCTYPE html>
<html>
<head>
<title>Calculator Zone</title>
<link rel="stylesheet" href="calcpad.css">
<script defer src="calcpad.js"></script>
</head>
<body>
<section class="card GL3Q1">
<div class="title">
<div>1. GL3Q1</div>
</div>
<div class="info">
<p>
Tierra is South's star center on the girl's basketball team.
The recent lesson on gas laws reminded her of an event that recently took place.
She inflated her basketball inside her house at <span class="iTemp"></span>°C to a pressure of <span class="iPressure">23.8</span> psi.
Tierra threw the ball into the back of her car to head to practice.
The car, having been outside all evening, had a temperature of <span class="fTemp">3.0</span>°C.
After arriving at school, the ball felt flat.
Now Tierra wants to use Chemistry to calculate what the new pressure of the ball would have been.
What value should Tierra calculate?
</p>
<div class="interactives">
<div class="answer-box">
<div class="name">Pressure</div>
<input type="number" class="answer-input">
<div class="unit">psi</div>
</div>
<div class="feedback"></div>
<div class="attempts-and-check">
<div class="check-button">Check Answer</div>
<div class="attempts-count">Attempts: <span class="attempts">0</span></div>
</div>
</div>
</div>
</section>
<section class="card GL3Q3">
<div class="title">
<div>3. GL3Q3</div>
</div>
<div class="info">
<p>
The new helium gas cylinders have just arrived at the loading dock of a local party store.
In the cool January air, the <span class="constVol"></span>-L cylinders have a pressure of <span class="iPressure"></span> atm.
Once brought into the store, the cylinder’s temperatures increases to <span class="fTemp"></span>°C
and the pressure adjusts to <span class="fPressure"n></span> atm.
What is the outdoor temperature in °C? (Assume a constant volume.)
</p>
<div class="interactives">
<div class="answer-box">
<div class="name">Temperature</div>
<input type="number" class="answer-input">
<div class="unit">°C</div>
</div>
<div class="feedback"></div>
<div class="attempts-and-check">
<div class="check-button">Check Answer</div>
<div class="attempts-count">Attempts: <span class="attempts">0</span></div>
</div>
</div>
</div>
</section>
</body>
</html>