-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (37 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Lyrics Finder</title>
<script
src="http://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="index.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body style="background-color:rgb(250,250,250)">
<div class="container-fluid">
<div class="text-center">
<div class="page-header">
<h1>Lyrics Finder</h1>
</div>
<div class="alert alert-info alert-dismissable fade in">
<a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
Enter <strong>artist's name</strong> and <strong>song title</strong> and click <strong>'Search Lyrics'</strong> to get song lyrics.
</div>
<form>
<input id="artist" type="text" alt="Artist" placeholder="Artist"></input>
<input id="title" type="text" alt="Song title" placeholder="Song Title"></input>
<button id="searchButton" type="submit" class="btn btn-primary btn-md">Search Lyrics</button>
<br><br>
</form>
</div>
<div class="jumbotron">
<div id="lyrics" class="text-center">Lyrics appear here.</div>
</div>
</div>
</body>
</html>