-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (89 loc) · 3.98 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!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">
<meta name="description" content="Tables Generation">
<meta name="author" content="Romas6ka">
<title>HTML Tables Generation</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="./main.js"></script>
<link href="./style.css" type="text/css" rel="stylesheet"/>
<!-- <link href="./theme/media.css" type="text/css" rel="stylesheet"/> -->
</head>
<body>
<div class="wrapper">
<div class="container-fruid">
<div class="row">
<h1 class="col-xs-12 col-sm-12 col-md-12 setting">
HTML Tables Generation
</h1>
<div id="content" class="col-xs-12 col-sm-12 col-md-12">
<p>
Coll:
<input type="number" value="" id="inputTr">
<br>
Rows:
<input type="number" value="" id="inputTd">
<br>
<button id="btn">Generation</button>
</p>
<div id="result" class="col-xs-12 col-sm-12 col-md-12">
<p>
your result
</p>
Coll:
<p class="resultTr"></p>
Rows:
<p class="resultTd"></p>
All cells:
<p class="allCells"></p>
</div>
<div id="tablesResult" >
<p>
HTML Tables Source
</p>
<p>
<textarea name="text" placeholder="tan" id="tablesSource" cols="30" rows="10">
</textarea>
</p>
<div id="tablesCode">
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<footer>
My Web Site
<a href="http://ogo.biz.ua">
OGO.BIZ.UA
</a>
<br>
<a href="https://github.com/MatviyRoman">
My Project in GitHub
</a>
<br>
<p>
© 2018 MatviyRoman
</p>
<div class="validator">
<p>
<a href="http://jigsaw.w3.org/css-validator/check/referer">
<img style="border:0;width:88px;height:31px"
src="http://jigsaw.w3.org/css-validator/images/vcss-blue"
alt="Valid CSS!" />
</a>
</p>
</div>
</footer>
</div>
</div>
</div>
</div>
</body>
</html>