-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (41 loc) · 1.4 KB
/
index.html
File metadata and controls
44 lines (41 loc) · 1.4 KB
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
<!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>Javascript Tutorials</title>
</head>
<body>
<h1>What is Javascript</h1>
<li>high level interprated language</li>
<li> Program is excuted directly without having to run it through a compiler. It is a scrpting language and it is interpreted. </li>
<li>It conforms to the ECMAScrpit</li>
<li>It is multi-paradigm</li>
<li>Runs on the client/browser as well as on the server (Node.js)</li>
<section class="containter">
<form action="" id="my-form">
<h1>Add User</h1>
<div class="msg"></div>
<div class="user-details">
<div>
<label for="email">Email: </label>
<input type="text" id="email">
</div>
<div>
<label for="name">Name: </label>
<input type="text" id="name">
</div>
</div>
<input type="submit" class="btn" value="submit">
</form>
<ul id="users" class="items">
<li >Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</section>
<script src="tutorial.js">
</script>
</body>
</html>