-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.html
More file actions
54 lines (50 loc) · 1.39 KB
/
search.html
File metadata and controls
54 lines (50 loc) · 1.39 KB
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
<html>
<head>
<title>AZ Lyrics</title>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" type="text/css"
href="assets/styles/main.css">
<link rel="stylesheet" type="text/css"
href="assets/styles/search.css">
</head>
<body>
<nav>
<div id="logo">
<a href="index.html">
<img src="assets/icon/logo.png"
alt="AZlogo"
style="width:75px;height:75px;border:0;"/>
</a>
</div>
<div id="Top-Bar">
<a id="option" href="index.html">Home</a>
<a id="option" href="artists.html">Artists</a>
<a id="option" href="lyrics.html">Lyrics</a>
<a id="option" href="search.html">Search</a>
</div>
</nav>
<div>
<p id="Search-Text">Your search results for:</p>
</div>
<div class="Search-Bar">
<!-- <a href="search.html">
<img id="glass" src="assets/icon/magnifyingglass.png" alt="search">
</a> -->
<p id="Daniel-caesar">Daniel Caesar</p>
</div>
<div id="albums">
<a href="lyrics.html">
<img src="assets/img/Freudian.jpg" alt="Freudian">
<p id="Fredudian">"Freudian"</p>
</a>
<a href="lyrics.html">
<img src="assets/img/GetYou.jpg" alt="Get You">
<p id="Get You">"Get You"</p>
</a>
<a href="lyrics.html">
<img src="assets/img/PraiseBreak.jpg" alt="Praise Break">
<p id="Praise Break">"Praise Break"</p>
</a>
</div>
</body>
</html>