Html Template

default html template
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>My Page Title</title>
<meta name="description" content="My Page Description">
<link rel="stylesheet" href="css/styles.css?v=1.0">
</head>
<body>
<script src="js/scripts.js"></script>
</body>
</html>
html template
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Title Goes Here</title>
<meta name="description" content="Description Goes Here">
<link rel="stylesheet" href="style.css">
</head>
<body>
// if scripts is required add:
<script src="js/scripts.js"></script>
</body>
</html>
HTML Template
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>YOUR TITLE HERE!</title>
<link href="filename.css" rel="stylesheet">
</head>
<body>
<!-- YOUR CODE HERE! -->
<script src="filename.js"></script>
</body>
</html>
html template
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your title</title>
</head>
<body>

</body>
</html>
html template
<!-- From VSCODE Emmet -->
<!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>
html template
16,405+ HTML,CSS & JavaScript Templates
https://bit.ly/3HQMUyC

Leave a Comment