-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (59 loc) · 1.88 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
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Music Palate</title>
<link rel="shortcut icon" href="img/MusicPalateLogo.svg" type="image/x-icon">
<link rel="stylesheet" href="index.css" type="text/css" />
<script
src="https://kit.fontawesome.com/47579e01f2.js"
crossorigin="anonymous"
></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script defer src="index.js"></script>
</head>
<body>
<div class="body-cover"></div>
<header>
<h1>Music Palate</h1>
<nav>
<a class="active" href="index.html">Home</a>
<a href="about.html">About</a>
</nav>
</header>
<main>
<form id="search-artist">
<input type="text" id="search-area" />
<button type="submit" id="search-btn">
<i class="fas fa-search"></i>
</button>
</form>
<p>Enter the name of any of your favorite artists...</p>
<hr />
<section id="recommendations">
<h3>... then your recommendations will show up here!</h3>
</section>
</main>
<footer>
<h5>Rahul Joshi © 2021</h5>
<div class="social-icons">
<a
href="https://www.facebook.com/profile.php?id=100004289202416"
class="social"
><i class="fa fa-facebook"></i
></a>
<a href="https://twitter.com/rjcalipes" class="social"
><i class="fa fa-twitter"></i
></a>
<a href="https://www.linkedin.com/in/rahul-joshi-00/" class="social"
><i class="fa fa-linkedin"></i
></a>
<a href="https://github.com/rahulpjo" class="social"
><i class="fa fa-github"></i
></a>
</div>
</footer>
</body>
</html>