-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (49 loc) · 2.12 KB
/
index.html
File metadata and controls
49 lines (49 loc) · 2.12 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
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Raj's Robot Rentals</title>
<!-- style sheets -->
<link rel="stylesheet" href="styles/reset.css">
<link rel="stylesheet" href="styles/styles.css">
<!-- web fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap"
rel="stylesheet">
</head>
<body>
<!-- javascript -->
<script src="scripts/scripts.js"></script>
<header class = "flex">
<img src="images/robot.jpg" alt="photo of a white plastic robot with
a black background">
<h1>Raj's Robot Rentals</h1>
</header>
<main>
<h2>Quote Generator</h2>
<p>We have 2 models available for booking:</p>
<ul>
<li>Model XYZ: $100 per day</li>
<li>Model CPRG: $213 per day</li>
</ul>
<p>The cost to book <span id = "model-text">Model XYZ</span> for <span id = "duration-text">0</span> days is $<span id = "calculated-cost">0.00</span>.</p>
<div class = "flex">
<p id = "model-button">Switch Model</p>
<p id = "duration-button">Change Duration</p>
</div>
<p>Thank you for your interest in booking a 'bot!</p>
</main>
<footer>
<p>Photo by <a
href="https://unsplash.com/@possessedphotography?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Possessed
Photography</a> on <a
href="https://unsplash.com/s/photos/robot-face?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a>
</p>
</footer>
<script src="scripts/scripts.js"></script>
</body>
</html>