-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (50 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title> Javascript Practice</title>
<body>
<h1>
Learning JS
</h1>
<div class="content">
<h2 id="intro"> Hi i'm Ayesha</h2>
<a href="a"> Link 0 </a>
<a href="a"> Link 1 </a>
<a href="a"> Link 2 </a>
<a href="a"> Link 3 </a>
<a href="a"> Link 4 </a>
<a href="a"> Link 5 </a>
</div>
<div class="form">
<form id="form">
<label>Username: <input type="text"></label>
<label>Password: <input type="password"></label>
<input type="submit" value="Submit">
</form>
</div>
<script src="practice.js">
</script>
<script src="./variables.js">
</script>
<script src="./loop.js">
</script>
<script src="./functions.js">
</script>
<script src="./numbersAndMath.js">
</script>
<script src="./strings.js">
</script>
<script src="./Objects.js">
</script>
<script src="./arrays.js">
</script>
<script src="./DOM.js">
</script>
<script src="./events.js">
</script>
<script src="./ES6.js">
</script>
</body>
</head>
</html>