<!--Page One--> <!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>Home Page</title> </head> <body style="background-color: rgb(82, 0, 82)"> <h1>Home Page</h1> <a href="page2.html">Page Two</a> </body> </html> <!--Page Two--> <!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>Page Two</title> </head> <body style="background-color: black"> <h1 style="color: red">This is Page Two</h1> <hr /> <a href="page1.html">Home</a> </body> </html>