EthelGomez / Portfolio

Quality Assurance Portfolio Assignment 2
0 stars 0 forks source link

404 Page #8

Open EthelGomez opened 4 months ago

EthelGomez commented 4 months ago

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>404 Not Found</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
            color: #333;
            text-align: center;
            padding: 50px;
        }
        .container {
            max-width: 600px;
            margin: 0 auto;
        }
        h1 {
            font-size: 3em;
        }
        p {
            font-size: 1.2em;
            margin-bottom: 20px;
        }
        a {
            color: #007bff;
            text-decoration: none;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>404 - Not Found</h1>
        <p>Oops! The page you're looking for cannot be found.</p>
        <p>Maybe try one of these:</p>
        <ul>
            <li><a href="/">Homepage</a></li>
            <li><a href="/portfolio.html">Portfolio</a></li>
        </ul>
    </div>
</body>
</html>```
EthelGomez commented 4 months ago

404 Page Added

404page