-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 1.34 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
<!DOCTYPE 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">
<meta name="theme-color" content="#000000" />
<title>Basic Development Environment</title>
<link rel="shortcut icon" href="./favicon.png" />
<!-- Additional CSS here -->
<link rel="stylesheet" href="src/css/style.css">
</head>
<body>
<!-- Add the content of your site or application here -->
<div id="root">
<img src="src/assets/logo@3x.png" class="logo" alt="logo" />
<h1>Welcome to Basic Development Environment</h1>
<p>This boilerplate is ready for HTML/CSS, Javascript, and JQuery projects. It includes a live server that lets you see HTML/JS/CSS changes with every save.</p>
<p id="subtext">An Example JavaScript Hook.</p>
<h2>Instructions:</h2>
<p>To see live changes, please go to the root folder ('basic-dev-env/') and run <em>"npm start"</em>.</p>
<p>To start coding, start changing the files within src/css and src/js. Images can be stored in src/assets.</p>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Additional JS here!! -->
<script src="src/js/other.js"></script>
<script src="src/js/index.js"></script>
</body>
</html>