-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
31 lines (30 loc) · 1.18 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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="bootstrap/css/bootstrap.css">
<title></title>
</head>
<body>
<div class="row">
<div class="col-8 col-md-auto">
<table class ="table" id ="myTable"></table>
</div>
<div class="col col-md-auto ">
<table class="table">
<tr><td><input type="text" id="name" placeholder="Название"><br>
<input type="text" id="author" placeholder="Автор"><br>
<input type="text" id="price" placeholder="Цена"><br>
<input type="text" id="genre" placeholder="Жанр"><br>
<button id="add" name="add">добавить</button>
</td></tr>
<tr><td><span></span></td></tr>
</table>
</div>
</div>
</div>
<script src="https://yastatic.net/jquery/1.6.4/jquery.min.js"></script>
<script src="mainView.js" type="text/javascript"></script>
</body>
</html>