Bienvenue dans ce cours pour débutants. Nous allons apprendre les bases du web.
<!DOCTYPE html>
<html>
<head>
<title>Ma Page</title>
</head>
<body>
<h1>Bonjour le monde !</h1>
</body>
</html>
body {
background-color: #f0f0f0;
font-family: sans-serif;
}
h1 {
color: blue;
}