-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (90 loc) · 3.12 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Page</title>
<link rel="stylesheet" href="./css/main.css" />
</head>
<body>
<main id="mainDiv">
<div>
<h1 id="heading">My Page</h1>
</div>
</main>
<!-- <section class="view" id="view1">
<div>
this is view One
</div>
<div>
this is view One
</div>
<div>
this is view One
</div>
<div>
this is view One
</div>
<div>
this is view One
</div>
<div>
this is view One
</div>
</section> -->
<!-- <section class="view" id="view2">
<div>
<h2>
this is view Two
</h2>
</div>
</section> -->
<main>
<section id="view3">
<form action="" id="myForm">
<label for="phoneNumber">text input</label>
<input id="phoneNumber" autocomplete="off" type="text" placeholder="input you value">
<input value="save" type="submit">
<p class="phoneFormat">
Example : (555)555-555 or 123-456-7899
</p>
</form>
</section>
</main>
<main>
<section>
<form action="" id="textForm">
<label for="textEntry">Please Enter some text</label>
<input id="textEntry" class="textEntry" autocomplete="off" type="text">
</form>
</section>
</main>
<!-- <script src="./js/dataType.js"></script> -->
<!-- <script src="./js/math.js"></script> -->
<!-- <script src="./js/ifStatement.js"></script> -->
<!-- <script src="./js/switchStatement.js"></script> -->
<!-- <script src="./js/ternaryOperator.js"></script> -->
<!-- <script src="./js/userInput.js"></script> -->
<!-- <script src="./js/interactiveGame.js"></script> -->
<!-- <script src="./js/loop.js"></script> -->
<!-- <script src="./js/function.js"></script> -->
<!-- <script src="./js/scope.js"></script> -->
<!-- <script src="./js/arrays.js"></script> -->
<!-- <script src="./js/refactorGame.js"></script> -->
<!-- <script src="./js/refactorGameV2.js"></script> -->
<!-- <script src="./js/object.js"></script> -->
<!-- <script src="./js/classes.js"></script> -->
<!-- <script src="./js/json.js"></script> -->
<!-- <script src="./js/errors.js"></script> -->
<!-- <script src="./js/dom.js"></script> -->
<!-- <script src="./js/eventListerers.js"></script> -->
<!-- <script src="./js/webStorage.js"></script> -->
<!-- <script type="module" src="./js/modules.js"></script> -->
<!-- import keyWord don't work with out
define type="module in the script tag" -->
<!-- <script type="module" src="./js/higherOrderFunctions.js"></script> -->
<!-- <script src="./js/fetch.async.await.js"></script> -->
<script src="./js/regular.expressions.js"></script>
</body>
</html>