about.html (302B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>About - HTML Test App</title> 5 </head> 6 <body> 7 <h1>About Page</h1> 8 <p>This is the about page of the HTML Test App.</p> 9 10 <p><a href="index.html">Back to Home</a></p> 11 12 <script> 13 console.log("About page loaded!") 14 </script> 15 </body> 16 </html>