-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathretrieve_secondpage.html
46 lines (36 loc) · 1.35 KB
/
retrieve_secondpage.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
<!DOCTYPE html>
<html lang="en">
<!-- Link back to the first page -->
<a href="index.html">HOME</a>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Retrieving Customers Data From The Database</title>
<style>
body {
font-size: 20px; /* Set the default text size for the entire body */
}
h1 {
font-size: 30px; /* Increase the text size for h1 */
}
p {
font-size: 20px; /* Increase the text size for paragraphs */
}
</style>
</head>
<body>
<h1>Retrieving Customers Data From The Database</h1>
<p>Using the sql_store database, I used this query to retrieve all the customers informations from this database:</p>
<!-- Inserting text and image -->
<div>
<p> Query: </p>
<img src="images/1. retriev data.query.png" alt=""First Image" width="480" height="200">
</div>
<div>
<p> Output: </p>
<img src="images/1. retriev data.output.png" alt=""First Image" width="500" height="200">
</div>
<p>The output above shows that there are 10 customers found in this database.
It includes the customer_id, first_name, last_name, birth_date, phone, address, city, state and points.</p>
</body>
</html>