-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (47 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lyrics Finder</title>
<link rel="shortcut icon" href="https://img.icons8.com/?size=100&id=7695&format=png&color=000000" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="./css/bootstrap.css"/>
<style>
body {
background-color: #212529;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
flex-direction: column;
}
body {
font-size: 1rem;
}
</style>
</head>
<body>
<h1 style="color: blue;">Lyrics Finder </h1>
<div class="row justify-content-center">
<form id="lyrics_form">
<div class="form-row">
<div class="form_group col-md-10">
<label for="artist" class="form-label">Artist</label>
<input type="text" class="form-control form-control-sm" placeholder="Artista" id="artist">
</div>
<div class="form_group col-md-10">
<label for="song" class="form-label">Music</label>
<input type="text" class="form-control form-control-sm" placeholder="Musica" id="song">
</div>
</div>
<button class="btn btn-primary" style="margin: 10px;">Search</button>
</form>
</div>
<div id="lyricView"style="color:white; padding: 30px;" class="lead" ></div>
<script src="scripts.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
<script src="./js/bootstrap.js"></script>
</body>
</html>