-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.76 KB
/
index.html
File metadata and controls
43 lines (43 loc) · 1.76 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
<!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">
<link rel="stylesheet" href="styles/style.css">
<title>Create Table</title>
</head>
<body>
<header>
<div class="header">
<h1 class="header__title">Create Table</h1>
<p class="header__description">Here you can create a table with any number of rows and columns.
<br> Let's get started!</p>
</div>
</header>
<section class="form">
<form name="createTable">
<div class="form-group">
<label for="caption">1.Enter the name of your table</label>
<input type="text" required name="tableCaption" value="Table" id="tableCaption">
</div>
<div class="form-group">
<label for="rows">2.Enter the name of the required number of table rows</label>
<input type="number" name="tableRows" value="2" id="tableRows">
</div>
<div class="form-group">
<label for="columns">3.Enter the name of the required number of table columns</label>
<input type="number" name="tableColumns" value="2" id="tableColumns" required>
</div>
<div class="form-group">
<input type="button" value="!Create Table!" id="buttonCreateTable">
</div>
</form>
</section>
<section class="output">
<table id="output">
</section>
<script src="script/script.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.9.3/html2pdf.bundle.js"></script>
</body>
</html>