-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathobjects.html
More file actions
31 lines (25 loc) · 775 Bytes
/
objects.html
File metadata and controls
31 lines (25 loc) · 775 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
<!DOCTYPE html>
<html>
<head>
<title>Hostel Reservations
</title>
<link rel="stylesheet" href="CSS/global.css">
<script src="JS/global.js"></script> <!-- external js file -->
<link rel="stylesheet" href="Bootstrap/css/bootstrap.min.css">
<script src="Bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="Bootstrap/Jquery/jquery-3.6.0.min.js"> </script>
<link rel="stylesheet" href="Bootstrap/fontawesome-free-5.15.3-web/css/all.css">
<script type="text/javascript">
// Create an object:
const person = {
firstName: "John",
lastName: "Doe",
age: 50,
eyeColor: "blue"
};
</script>
</head>
<body>
<h2>JavaScript</h2>
</body>
</html>