Index.html site code

<!DOCTYPE html>
<html lang="et">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="Simon Sassiani veebirakenduste tööde koduleht. Tutvuge minu HTML, CSS ja PHP projektidega.">
    <meta name="keywords" content="veebirakendused, HTML, CSS, PHP, Simon Sassian">
    <title>Simon Sassian Veebirakenduste Tööde Koduleht</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <h1>Simon Sassian Veebirakenduste Tööde Koduleht</h1>
    </header>
    
    <main>
        <section>
            <h2>Minu HTML/CSS Tööd</h2>
            <ul>
                <li><a href="RetseptiRaamat/index.html">RetseptiRaamat</a></li>
                <li><a href="must-valge/mouse-events-ylesanne.html">Must-Valge</a></li>
                <li><a href="#">Tulemas</a></li>
                <li><a href="#">Tulemas</a></li>
                <li><a href="#">Tulemas</a></li>
                <li><a href="#">Tulemas</a></li>
            </ul>
        </section>
        
        <section>
            <h2>Minu PHP Tööd</h2>
            <ul>
                <li><a class="PHP" target="_blank" href="Loomad/loomad.php">Loomad</a></li>
                <li><a class="PHP" target="_blank" href="jalgrattaeksam/registreerimine.php">JalgrattaEksam</a></li>
                <li><a class="PHP" target="_blank" href="Loomad/loomad1kaupa.php">Loomade loeng</a></li>
                <li><a class="PHP" target="_blank" href="autoremont/AutoRemont.php">Auto Remont</a></li>
                <li><a href="#">Tulemas</a></li>
                <li><a href="#">Tulemas</a></li>
            </ul>
        </section>
    </main>

    <footer>
    </footer>
</body>
</html>

Ja css kujundus on lisatud eraldi failina

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 20px;
}

h1 {
    margin: 0;
    font-size: 2em;
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 20px;
}

h2 {
    color: #007bff;
    font-size: 1.5em;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0056b3;
}

a:visited {
    color: #663399;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
}