HTML Boilerplate
When create a new project from scratch without any template, please restructure HTML code according to the standard scaffolding that stated below.
<!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">
<title>Title Name</title>
<-- Favicon icon -->
<link rel="icon" href="" type="image/png" sizes="16x16">
<-- Favicon icon -->
<-- Link CSS -->
<link href="css/style.css" rel="stylesheet">
<-- Link CSS -->
<head>
<body>
<-- Content -->
<-- Content -->
</body>
<-- Link JS -->
<script src="js/scripts.js" type="text/javascript"></script>
<-- Link JS -->
<script>
<-- Function -->
<-- Function -->
</script>
</html>