forked from surajondev/JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 841 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 841 Bytes
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
<html>
<head>
<link href="style.css" rel="stylesheet">
<script src="script.js"></script>
<title>JavaScript Random</title>
</head>
<body>
<center>
<h1>JavaScript Random Generator</h1>
<br>
<h3>Enter the Element One By One</h3>
<br>
<form name="f1">
<input class = "input" name="t1" type="text" id="t1">
<br><br>
<input class = "input" name="t2" type="text" id="t2">
<br><br>
<input class = "input" name="t3" type="text" id="t3">
<br><br>
<input class = "input" name="t4" type="text" id="t4">
<br><br><br>
<input class = "input" value ="submit" id="button" type="button" onclick="random()">
</form>
<br>
<h1 id="result"></h1>
</center>
</body>
</html>