-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththird.html
103 lines (88 loc) · 2.5 KB
/
third.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!--
Group: Team B
Members: Orus, Valen, Carol, Samarth
-->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta tags for character encoding and viewport settings -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Title of the web page -->
<title>Journey</title>
<!-- Styles for the web page -->
<style>
/* Resetting some default browser styles */
body {
background-color: black;
color: white;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 100vh;
}
/* Styling for the header section */
header {
text-align: center;
padding: 5%;
}
/* Styling for the main content section */
main {
padding: 1em;
text-align: center;
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
/* Styling for the footer section */
footer {
padding: 1em;
padding-bottom: 45%;
text-align: center;
}
/* Styling for buttons */
button {
background-color: white;
color: black;
padding: 20px 40px;
border: none;
border-radius: 40px;
font-size: 2em;
cursor: pointer;
}
/* Styling for headings */
h1 {
margin-top: 20%;
margin-bottom: 0.5em;
font-size: 3.5em;
}
/* Styling for paragraphs */
p {
margin: 0.6em 0;
font-size: 1.1em;
}
</style>
<!-- Linking to the external JavaScript file -->
<script src="sketch.js"></script>
</head>
<body>
<!-- Header section with instructions title -->
<header>
<h1>When you are ready</h1>
</header>
<!-- Main content section with instructions for visitors -->
<main>
<p>Walk and hand your phone to the <br> monitor, or wait for them to come <br> collect it from you.</p>
</main>
<!-- Footer section with a navigation button -->
<footer>
<!-- Navigation button linking to the index.html page -->
<a href="index.html"><button>Begin your journey</button></a>
</footer>
</body>
</html>