HTML Intermédiaire

Bonjour après avoir réalisé le niveau débutant de la catégorie html je me suis attaqué au niveau intermédiaire, je l’ai réalisé grâce aux notes que j’ai prise mais j’ai aussi utilisé les liens pour les types (je ne sais pas si c’est ce qu’il faut faire c’est à dire, aller chercher dans les ressources si besoin ou bien seulement faire l’exercice avec ses connaissances)

Je pense avoir bien respecter les consignes …

N’hésitez pas a juger mon code et à me dire ce qu’il ne va pas.
Merci

<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="utf-8">
    <title>Calculatrice en HTML</title>
    <meta name="Auteur" content="Louis">
    <meta name="description" content="Voici un calculette html réalisé par mes soin, elle ressemble a la forme basique que propose l'application calculette d'un iphone, cependant elle a été 
    modifié selon les conditions imposés par un exercice">
    <link rel="icon" href="test.jpg"></head>
<body>
<table>
    <tr>
        <th><button type="button" style="background-color: blue; border-radius: 30px; width: 60px;">M1</button></th>
        <th><button type="button" style="background-color: red; border-radius: 30px; width: 60px">M2</button></th>
        <th></th>
        <th><button type="button">%</button></th>
        
    </tr>
    <tr>
        <th><button type="button" style="background-color: green; color: white;">7</button></th>
        <th><button type="button" style="background-color: green; color: white;">8</button></th>
        <th><button type="button" style="background-color: green; color: white;">9</button></th>
        <th><button type="button" >*</button></th>
    </tr>
    <tr>
        <th><button type="button" style="background-color: green; color: white;">4</button></th>
        <th><button type="button" style="background-color: green; color: white;">5</button></th>
        <th><button type="button" style="background-color: green; color: white;">6</button></th>
        <th><button type="button">-</button></th>
    </tr>
    <tr>
        <th><button type="button" style="background-color: green; color: white;">3</button></th>
        <th><button type="button" style="background-color: green; color: white;">2</button></th>
        <th><button type="button" style="background-color: green; color: white;">1</button></th>
        <th><button type="button">+</button></th>
    </tr>
    <tr>
        <th><button type="button" style="background-color: green; color: white;">0</button></th>
        <th><button type="button">,</button></th>
        <th colspan="2"><button type="submit">=</button></th>
    </tr>
</table>
</body>
</html>```