forked from pluralsight/web-dev-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (43 loc) · 1.53 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
<!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" />
<title>JS Starter</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- <h1>Hello World</h1> -->
<div id="grandParent">
<div id="parent">
<div id="child">
<!-- <input
title=""
label=""
placeholder="text"
type="text"
onkeypress="setTimer()"
/> -->
<button id="count">Click Me</button>
</div>
</div>
</div>
<script src="sync_async.js"></script>
<!-- <script src="block_scope.js"></script> -->
<!-- <script src="shadowing_legel.js"></script> -->
<!-- <script src="shadowing_Illegel.js"></script> -->
<!-- <script src="shadowing_in_lexical_env.js"></script> -->
<!-- <script src="call_apply_bind.js"></script> -->
<!-- <script src="callback.js"></script> -->
<!-- <script src="callback_hell.js"></script> -->
<!-- <script src="event_listner.js"></script> -->
<!-- <script src="polyfill.js"></script> -->
<!-- <script src="polyfill_mybind.js"></script> -->
<!-- <script src="prototype_proto.js"></script> -->
<!-- <script src="prototype_override.js"></script> -->
<!-- <script src="functionCurrying.js"></script> -->
<!-- <script src="eventBubling_Capturing.js"></script> -->
<!-- <script src="debouncing.js"></script> -->
</body>
</html>