-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
42 lines (39 loc) · 2.1 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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="css/style.css" media="screen,projection"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Escute prévias de seus artistas preferidos!</title>
<meta charset="utf-8">
</head>
<body>
<section id="home-search">
<div class="container center-align">
<div class="row __busca">
<h1>Escute prévias de seus artistas preferidos!</h1>
<form class="col s12" style="height: 100%">
<div class="row">
<div class="input-field col s12 m8">
<input type="text" id="busca" class="validate" required autocomplete="off">
<label for="busca">Insira o nome do artista ou termo relacionado</label>
</div>
<div class="input-field col s12 m4">
<input type="number" id="numero-resultados" min="1" max="200" value="21" class="validate" required autocomplete="off">
<label for="numero-resultados">Número de resultados</label>
</div>
<button class="btn-large waves-effect waves-light" type="submit">Buscar
<i class="material-icons right">search</i>
</button>
</div>
</form>
<div class="resultado-busca"></div>
</div>
</div>
</section>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>