-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (43 loc) · 1.5 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
<!DOCTYPE html>
<html lang="hr">
<head>
<title>Artist Search API</title>
<!-- Meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="Melita Poropat">
<meta name="description" content="Artist Search API - js web app za pretragu itunes izvođača za potrebe parcijalnog JS ispita">
<!-- style for home page-->
<link rel="stylesheet" href="./style.css">
<!-- script -->
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script defer src="./script.js"></script>
</head>
<body>
<main id="landing">
<div class="search-container">
<div class="search-container-header">
</div>
<form id="formSearch">
<div class="artist-name-input">
<label for="name" class="form-label"
><span class="label-content">Ime izođača: </span></label
>
<input
type="text"
name="form"
id="form"
autocomplete="off"
placeholder="Unesi ime izvođača"
class="text-box"
required
/>
<button id="search-button" type="submit">Pretraži</button>
</div>
</form>
</div>
<div class="results"></div>
</main>
</body>
</html>