Comment créer un site Web de texte
<!-- This is a simple text website -->
<!DOCTYPE html>
<html>
<head>
<title>Hello</title>
</head>
<body>
<h1>Hello World!</h1>
<p>This is my first website</p>
</body>
</html>
Insert_Name_Here