generator-webapp-partial
Version:
Scaffold out a front-end web app with HTML partial
28 lines (20 loc) • 590 B
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>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="container">
<!-- coming from partial header -->
<div class="header">
<div class="logo"> <img src="./images/gulp-logo.png" alt="I Love Gulp">Header goes here</div>
<h2>Home</h2></div>
</div>
<p>Page contents goes here</p>
<script src="js/main.min.js"></script>
</body>
</html>