forked from EMQ2/javascript-interview-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (66 loc) · 2.77 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="./favicon.png" />
<meta name="theme-color" content="#000000" />
<title>Simple Boilerplate</title>
<link rel="stylesheet" type="text/css" href="src/css/index.css">
<!-- Add additional CSS & JS files as necessary here -->
</head>
<body>
<!-- Add your site or application content here -->
<div id="root">
<img src="src/assets/[email protected]" class="logo" alt="logo" />
<h1>Welcome to Simple Boilerplate!</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 ('simple-boilerplate/')
and run "npm start".
</p>
<p>
To start coding, start changing the files within src/css and src/js.
Images can be stored in src/assets.
</p>
<div>
Interview output begins here:
<div id="array_field">
<h3>Interview item 1:</h3>
<p></p>
<div>The original array is: <span id="orig_array"></span></div>
<p>
<div>The sorted array is: <span id="output_array"></span></div>
</p>
</div>
<hr/>
<div id="api_integration_field">
<h3>Interview item 2:</h3>
<div>The definition of <i>Durians</i> are:<br />
<div id="api_defs"></div>
</div>
</div>
<hr/>
<div id="rainbow_field">
<h3>Interview item 3:</h3>
<div>The colours of <i>RAINBOW</i> are:<br />
<div id="rainbow_colours"></div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.js"></script>
<!-- ================================ -->
<!-- Add more JavaScript files here!! -->
<!-- ================================ -->
<script type="text/javascript" src="src/js/interview.js"></script>
<script type="text/javascript" src="src/js/other.js"></script>
<script type="text/javascript" src="src/js/index.js"></script>
</body>
</html>