-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.25 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Gulp Task</title>
<meta name="description" content="Gulp JS setup for minifying and bundling JS and SCSS files">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" href="build/css/style.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700">
</head>
<body>
<header>
<div class="container">
<a href="index.html">
<h1>Gulp Task</h1>
</a>
</div>
</header>
<div class="main">
<div class="container">
<p>Gulp JS setup for minifying and bundling JS and SCSS files</p>
</div>
</div>
<footer>
<div class="container">
<p>© <a href="https://github.com/sivadass/gulp-task" target="_blank">Gulp Task</a> 2017. All rights reserved.</p>
</div>
</footer>
<script src="build/js/script.min.js"></script>
</body>
</html>