Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conception d'un site web #1994

Open
Djamal-franck opened this issue Dec 3, 2023 · 0 comments
Open

Conception d'un site web #1994

Djamal-franck opened this issue Dec 3, 2023 · 0 comments

Comments

@Djamal-franck
Copy link

Djamal-franck commented Dec 3, 2023

<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Accessoires Téléphoniques</title>
    <style>
        /* Styles CSS pour le site web */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }

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

        h1 {
            margin: 0;
        }

        nav {
            background-color: #666;
            color: #fff;
            padding: 10px;
            text-align: center;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            margin-right: 10px;
        }

        main {
            padding: 20px;
        }

        footer {
            background-color: #333;
            color: #fff;
            padding: 20px;
            text-align: center;
        }
    </style>
</head>
<body>
    <header>
        <h1>Accessoires Téléphoniques</h1>
    </header>

    <nav>
        <a href="#">Accueil</a>
        <a href="#">Produits</a>
        <a href="#">Contact</a>
    </nav>

    <main>
        <h2>Nos Produits</h2>
        <!-- Insérez ici votre contenu lié aux produits -->
    </main>

    <footer>
        &copy; 2023 Accessoires Téléphoniques. Tous droits réservés.
    </footer>
</body>
</html>
@Djamal-franck Djamal-franck changed the title introducing an image into GiTHUB Conception d'un site web Dec 3, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant