-
Notifications
You must be signed in to change notification settings - Fork 2
/
anyLyrics.html
31 lines (26 loc) · 945 Bytes
/
anyLyrics.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="" content="">
<title>Any Lyrics</title>
<link rel="stylesheet" href="anyLyrics.css" type="text/css" media="all" />
<script src="anyLyricss.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div id="header">
<h3>Any Song Lyrics</h3>
</div>
<div class="searchContainer">
<div id="search">
<form class="form-inline my-2 my-lg-0">
<input id="artist" class="searchBox"type="search" placeholder="Enter Artist Name" aria-label="Search">
<input id="song" class="searchBox"type="search" placeholder="Enter Song Name" aria-label="Search">
<button type="button" class="searchBtn" onclick="finalSearch();">Search Lyrics</button>
</form>
</div>
</div>
<div id="showLyrics" style="text-align:center">
</div>
</body>
</html>