STARTUP TEMPLATES:-
Now is the time to save time with these html startup templates. You also know that when you start a new web project, you also need a startup template to get started. So you can copy startup templates from this page and you can save your time.
HTML 5 Professional Startup:-
This HTML startup template has all the elements that are used for starting html and with some meta tags that help you make the website responsive.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>
HTML5 With Internal CSS Startup:-
This HTML startup template has all the elements that are used for starting html and with the style element and the basic CSS that everyone uses at the starting of the CSS. .
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-family: /*'name',*/ sans-serif;
scroll-behavior: smooth; }
a {
text-decoration: none;
transition: all 0.3s ease-in-out; }
a:hover, a:focus {
text-decoration: none;
outline: none; }
li {
list-style-type: none; }
li:hover, li:focus {
list-style-type: none; }
button:focus {
outline: none;
box-shadow: none; }
</style>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
HTML 5 Simple Startup:-
This HTML startup template has all the elements that are used for starting html but without meta tags that help you make the website responsive.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
</body>
</html>
HTML 4 Startup:-
This HTML startup template has all the elements that are used for starting html 4 and this startup is not recommended because the latest version is also upgraded and better than the previous one.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
...
</head>
<body>
...
</body>
</html>

0 Comments