Introduction à HTML & CSS

Bienvenue dans ce cours pour débutants. Nous allons apprendre les bases du web.

Votre premier fichier HTML

<!DOCTYPE html>
<html>
<head>
    <title>Ma Page</title>
</head>
<body>
    <h1>Bonjour le monde !</h1>
</body>
</html>

Ajouter du CSS

body {
    background-color: #f0f0f0;
    font-family: sans-serif;
}
h1 {
    color: blue;
}