-
Notifications
You must be signed in to change notification settings - Fork 0
/
theThirdPage.html
23 lines (23 loc) · 920 Bytes
/
theThirdPage.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!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>The Third Page</title>
</head>
<body style="background-color: #2dc79e;">
<h1 style="
color: #ce6565;
width: fit-content;
border-radius: 54px;
border: 3px green solid;
background: black;
">You are now on the third page</h1>
<p><a href="/index">Back to page one!</a> </p>
<a href="/theSecondPage">This should take you back to the second page</a>
<h2> <button onclick="document.getElementById('dateInfo').innerHTML = Date()" <="" button=""> This should display the current date because why not? </button></h2>
<p id="dateInfo"> This should be where the date is displayed</p>
<footer><object data="foot.html" width="100%" height="400px"></object></footer>
</body>
</html>