-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path24 Part3.html
25 lines (24 loc) · 1.05 KB
/
24 Part3.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Java Script Part3</title>
<meta name="description" content="learning js">
</head>
<body>
<div id="test1">This is a sentence to learn JavaScript</div><br><br><br><br><br><br><br>
<div id="test2">This is a sentence to learn JavaScript</div><br><br><br><br><br><br><br>
<input type="number" id="input" >
<div id="test3"></div>
----------------------------------------------------------------------------------------
<select id="optgrp">
<option value="option 1">option 1 </option>
<option value="option 2">option 2 </option>
<option value="option 3">option 3 </option>
</select>
<div id="test4">This is a sentence to learn JavaScript</div>
<!-- the best place of the external javascript's file is before the end of the body -->
<script src="24 Part3.js"></script>
</body>
</html>