-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (35 loc) · 1.27 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Kinopoisk - concept</title>
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<nav class="navbar">
<div class="container">
<a href="index.html" class="navbar-brand">Kinopoisk - concept</a>
</div>
</nav>
<div class="container">
<div class="jumbotron">
<h3 class="text-center">Поиск фильмов</h3>
<form id='search-form'>
<input type="text" class="form-control" id="searchText" placeholder="Введите название ...">
</form>
</div>
</div>
<div class="container">
<div id="movies" class="row">
</div>
</div>
<!-- <script src="./script.js"></script>
<script src="./script2.js"></script>
-->
<script src="./script_fetch.js"></script>
</body>
</html>