HTML file structure
We are use gulp for compile html,scss files
You can check our main layout code structure for new page design
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin - HTML Admin Template</title>
<link rel="icon" type="image/png" href="assets/images/favicon.png" sizes="16x16">
<!-- All library css -->
<!-- main css -->
</head>
<body>
<aside class="sidebar">
<!-- Sidebar code here... -->
</aside>
<main class="dashboard-main">
<div class="navbar-header">
<!-- Navbar code here... -->
</div>
<div class="dashboard-main-body">
<!-- All Dashboard content here... -->
</div>
<footer class="d-footer mt-24">
</footer><!-- footer end -->
</main>
<!-- All library -->
<!-- main js -->
</body>
</html>