Html comment créer des textes dans le corps

<!DOCTYPE html>
<html>
 
<head>
    <title>HTML body Text Attribute</title>
</head>
 
<!-- body tag starts here -->
 
<body text="green">
    <center>
        <h1>GeeksforGeeks</h1>
        <h2>HTML <body> Text Attribute</h2>
         
 
 
<p>It is a Computer Science portal For Geeks</p>
 
 
 
    </center>
</body>
<!-- body tag ends here -->
 
</html>
Xixika