forked from thecodercoder/frontend-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (27 loc) · 1.16 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
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML template - gulp-starter</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="assets/css/main.min.css">
</head>
<body>
<main>
<h1>gulp-starter (v1.4.3)</h1>
<p class="lead">File processing boilerplate for Sass, JS, images, and SVG files with <a href="https://gulpjs.com/">Gulp.js</a> & friends.</p>
<p>Read more on GitHub <a href="https://github.com/marcop135/gulp-starter/">github.com/marcop135/gulp-starter</a></p>
<hr>
<h2>gulp-imagemin test</h2>
<img src="assets/images/cat.jpg" alt="a nice cat">
<p>This is a JPG image (the original size was 147KB)</p>
<img src="assets/images/cat.png" alt="a nice cat">
<p>This is a PNG image (original size: 287KB)</p>
<img src="assets/images/cat.gif" alt="a nice cat">
<p>This is a GIF image (original size: 144KB)</p>
<img src="assets/images/moon.svg" width="20" height="20" alt="moon icon">
<p>This is a SVG image (original size: 269 bytes)</p>
</main>
<script src="assets/js/app.min.js"></script>
</body>
</html>