-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (29 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>24H Soft ТЗ Мушегов</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
</head>
<body>
<table class="table table-hover">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Координаты самолета</th>
<th scope="col">Скорость в км/ч</th>
<th scope="col">Курс в градусах</th>
<th scope="col">Высота полета самолета в метрах</th>
<th scope="col">Код аэропорта вылета</th>
<th scope="col">Код аэропорта назначения</th>
<th scope="col">Номер рейса</th>
<th scope="col">Расстояние до Домодедово в км</th>
</tr>
</thead>
<tbody id='tbody'></tbody>
</table>
<script src="script.js" type='module'></script>
</body>
</html>