arrow_back
Back

HTML starter snippets: boilerplate document and table skeleton

Andrew Dorokhov Andrew Dorokhov schedule 1 min read

Basic HTML tempalte:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Title</title>
</head>
<body>
</body>
</html>

Table:

<table>
    <thead>
        <tr>
            <th></th>
            <th></th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td></td>
            <td></td>
        </tr>
    </tbody>
</table>
code

Need Help with Development?

Happy to help — reach out via the contacts or go straight to my Upwork profile.

work View Upwork Profile arrow_forward
Next Article

HTML Canvas API: 2D context, drawing, and animation basics

arrow_forward