-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (43 loc) · 1.86 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Subscripton Calculator</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Cabin&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/styles.css" />
<script src="js/script.js" defer></script>
</head>
<body>
<div class="container">
<h1>Subscription Calculator</h1>
<div class="selections">
<div class="subscription-select">
<label for="subscription">Subscription:</label>
<select name="subscription" id="subscription">
<option value="basic">Basic</option>
<option value="standard">Standard</option>
<option value="premium">Premium</option>
</select>
</div>
<div class="duration-select">
<label for="months">Duration:</label>
<select name="months" id="months">
<option value="1">1 Month</option>
<option value="6">6 Months</option>
<option value="12">12 Months</option>
</select>
</div>
</div>
<div class="congrats">
<h3>Congratulations!</h3>
<p class="result">You have chosen a 1 month basic plan for $5.</p>
</div>
</p>
</div>
<footer><span>Photo by <a href="https://unsplash.com/@ninjason?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Jason Leung</a> on <a href="https://unsplash.com/s/photos/confetti-jason-leung?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a></span></footer>
</body>
</html>