forked from thecodercoder/frontend-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (42 loc) · 1.65 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
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en-US">
<head>
<!-- General meta tags needed-->
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- Needed for responsive design -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- If you want custom browser colors on mobile -->
<meta name="theme-color" content="#1843c1" />
<meta name="apple-mobile-web-app-status-bar-style" content="#1843c1">
<title></title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<!-- CSS File -->
<link rel="stylesheet" href="dist/style.css?cb=1572492103778">
</head>
<body>
<main>
<section class="content">
<h1>Front-end Boilerplate</h1>
<h2>Using Sass and Gulp</h2>
<p>
Here's a quick set-up guide:
</p>
<ul>
<li>Clone Git repo</li>
<li>Install by running "npm install" on the commmand line</li>
<li>Run "gulp" on the command line.</li>
</ul>
</section>
<aside>
<h3>Project Info</h3>
<p>
This is a starter front-end project which will compile SCSS and JS files using Gulp 4.
</p>
</aside>
</main>
<!-- JavaScript File -->
<script src="dist/all.js?cb=1572492103778"></script>
</body>
</html>