-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.76 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
<!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>Table Generation</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<h1>Table Generation</h1>
</header>
<main>
<section>
<div class="form-container">
<form>
<div class="input-container">
<label for="number-of-rows">Number of Rows:</label>
<input id="number-of-rows" type="textfield" class="number-of-rows" placeholder="value > 0">
</div>
<div class="input-container">
<label for="number-of-columns">Num of Columns:</label>
<input id="number-of-columns" type="textfield" class="number-of-columns" placeholder="value > 0">
</div>
<div class="input-container">
<label for="selected-row">Selected Row:</label>
<input id="selected-row" type="textfield" placeholder="value > 0">
</div>
<div class="input-container">
<label for="selected-column">Selected Column:</label>
<input id="selected-column" type="textfield" placeholder="value > 0">
</div>
</form>
<div class="validation-error-box hidden">
<strong>Error: Entered value is too high!<br>Please enter correct value!</strong>
</div>
</div>
</section>
</main>
<script src="./main.js"></script>
</body>
</html>