scrimba
Основы JavaScript
Список авиалиний
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Список авиалиний
AboutCommentsNotes
Список авиалиний
Expand for more info
index.html
run
preview
console
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Список авиалиний</title>

<!-- Semantic CSS -->
<link rel="stylesheet" href="css/semantic.min.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>

<div class="ui container">
<div class="ui fluid action input">
<input type="text" placeholder="Поиск самолета...">
<div class="ui button">Найти</div>
</div>

<table class="ui small table unstackable sortable">
<thead>
<tr>
<th>Авиалиния</th>
<th>Номер</th>
<th class="sorted descending">Место назначения</th>
</tr>
</thead>
<tbody id="table-tbody">

</tbody>
</table>
</div>

<script src="js/index.pack.js"></script>

</body>
</html>
Console
index.html
-6:35