forked from Alyne-Martins/show-show
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (46 loc) · 2.31 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
53
54
55
56
57
<!DOCTYPE html>
<html lang="pt-br">
<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 href="https://fonts.googleapis.com/css?family=Raleway:300" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css">
<!-- FONTE-->
<link href="https://fonts.googleapis.com/css?family=Lato|Marck+Script" rel="stylesheet">
<title>SHOW SHOW</title>
</head>
<body class="col-12">
<section class="logo-animation d-flex justify-content-center">
<div id="box-logo" class=" d-flex justify-content-center align-self-center">
<img id="logo" class="align-self-center" src="img/logo.png">
</div>
</section>
<section id="shows" class="home col-12">
<div class="col-12 d-flex justify-content-end mt-1">
<h3 class="return">Show-Show</h3>
</div>
<form class="col-12 d-flex header-bg justify-content-center">
<input type="text" class="align-self-end form-control mr-3 input-style" id="search-text" placeholder="Nome do artista">
<button class="btn icon-search align-self-end" type="submit" id="search-btn" disabled>Buscar</button>
</form>
<div id="artist-avatar" class="col-12 d-flex header-bg justify-content-center">
</div>
<div id="artist-status" class="col-12 d-flex mt-3 pt-3 flex-column justify-content-around align-items-center">
</div>
<div id="artist-name" class="col-12 d-flex mt justify-content-center"></div>
<div>
<ul id="show-show" class="col-12 d-flex flex-column justify-content-center align-items-center"></ul>
</div>
<div class="col-12 d-flex mt-3 py-3 flex-column justify-content-around align-items-center" id="buttom">
</div>
</section>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" crossorigin="anonymous"></script>
<script src="https://momentjs.com/downloads/moment.js"></script>
<script src="https://momentjs.com/downloads/moment-with-locales.js"></script>
<script src="js/app.js"></script>
</body>
</html>