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>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
</body>
</html>
Originally written at Brainly
Top comments (0)