-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 1.51 KB
/
index.html
File metadata and controls
38 lines (34 loc) · 1.51 KB
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
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Gulp build podcast</title>
<!--<link rel="stylesheet" href="assets/css/styles.min.css">-->
<link rel="stylesheet" href="static/assets/dest/css/style.min.css">
</head>
<body>
<div class="container">
<div id="header">
<h1>Gulp</h1>
<div class="item">
gulp build
</div>
<div id="now"></div>
</div>
<!-- from book Getting started with Gulp by Travis Maynard -->
<div id="core">
<div class="box">
<img src="static/assets/dest/images/gulp-logo.png" alt="Gulp logo" class="gulp-logo">
<h2>Gulp book example</h2>
<p>Gulp is a streaming JS build system built with node.js; it leverages the power of streams and code-over-configuration to automate, organize, and run development tasks very quickly and efficiently</p>
<p>Node.js commonly referred to as node, is a powerful Js platform that is built on top of Google Chrome's Js runtime engine, V8. This give us the ability to write Js code on a server, or in our case, on local machine</p>
<p>Node.js ships with npm, a companion package manager that facilitates the installation, storage, and creation of modular components that you can use to create applications.</p>
</div>
</div>
<div id="footer">
<p>demo from book Getting started with Gulp by Travis Maynard</p>
</div>
</div>
<!--<script src="assets/js/all.min.js"></script>-->
</body>
</html>