DEV Community

Cover image for HTML5 Skeleton: A Basic Template File
Srikanth Kumar
Srikanth Kumar

Posted on • Updated on

HTML5 Skeleton: A Basic Template File

Why & What?

HTML5 Skeleton is basically a boilerplate, because we developers do NOT want to use a blank html file to start with, we’ll use a already-made boilerplate.

Just like writers get the writers block, you might get a “developers block“.

So here’s how to create one:

If you are using Visual Studio code (VS Code) then it’s pretty easy. Just use the keyboard combination: (place cursor on the first line) " ! + Enter " and that will generate a HTML5 skeleton for you.

The Boilerplate
Jobs, TSPSC, Notifications, Recruitment, Admit Cards, TSPSC
If you just want to copy/paste, Here’s the code:

<!DOCTYPE html&gt;
<html lang="en"&gt;
<head&gt;
    <meta charset="UTF-8"&gt;
    <meta name="viewport" content="width=device-width, initial-scale=1.0"&gt;
    <meta http-equiv="X-UA-Compatible" content="ie=edge"&gt;
    <title&gt;Document</title&gt;
</head&gt;
<body&gt;

</body&gt;
</html&gt;

Originally written at Brainly

Top comments (0)