-
Notifications
You must be signed in to change notification settings - Fork 0
/
UserData.html
28 lines (27 loc) · 1.12 KB
/
UserData.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="Css/headerStyle.css">
<title>DataSelection</title>
</head>
<body>
<div class="header">
<h1>Data Selection</h1>
</div><br><br>
<form action="Graph.html">
<div class ="content">
<label for="Min_Val_Array" id="label_names">Minimum Values of the Array</label> 
<input type= "number" id = "labels" name = "Min_Val_Array"><br><br>
<label for="Max_Val_Array"id="label_names">Maximum Values of the Array</label> 
<input type= "number" id = "labels" name = "Max_Val_Array"><br><br>
<label for="Size_of_Array"id="label_names"></label>Number of Elements</label> 
<input type= "number" id = "labels" name = "Size_of_Array"><br><br>
<input type="submit" value="SUBMIT" style="width: 50%; height: 50px; font-size: 25px;" onclick="display_Algo()">
</div>
</form>
<script src="/JavaScripts/graphValues.js"></script>
</div>
</body>
</html>