-
Notifications
You must be signed in to change notification settings - Fork 0
/
music.html
136 lines (126 loc) · 5.34 KB
/
music.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en" dir="ltr">
<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">
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="stylesheet" href="css/styles.css">
<title> Welcome to JavaJam Coffee Bar </title>
</head>
<body>
<header>
COVID-19 Update: Customers must have received at least one dose of vaccine. Look <a href="https://covid-19.ontario.ca/public-health-measures#restaurants-bars-other-food-drink-establishments" target="_blank">here</a> for the latest public
heath
measures.
</header>
<main>
<div class="cb-slideshow">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="header">
<!-- logo -->
<div class="logo-container">
<a href="index.html">
<span class="triangle-right"></span>
<span class="logo">JavaJam Coffee Bar</span>
</a>
</div>
<!-- navigation bar -->
<nav class="nav-bar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="menu/menu.html">Menu</a></li>
<li><a class="current" href="#">Music</a></li>
<li><a href="job.html">Jobs</a></li>
</ul>
</nav>
</div>
<div class="main-contents-wrapper">
<div class="image-before-nav"></div>
<h2>Music Genres</h2>
<!-- CSS Flex Box -->
<div class="flex-container">
<figure>
<img src="images\music\OIP.jfif" alt="Indian Classical Music">
<figcaption>Indian Classical</figcaption>
</figure>
<figure>
<img src="images\music\R.jfif" alt="Country music">
<figcaption>Country Music</figcaption>
</figure>
<figure>
<img src="images\music\Prague State Opera.jpg" alt="Opera Music">
<figcaption>Opera</figcaption>
</figure>
<figure>
<img src="images\music\OIP (1).jfif" alt="Pop Music">
<figcaption>Pop Music</figcaption>
</figure>
</div>
<h2>Artists</h2>
<!-- CSS Grid -->
<div class="grid-container">
<figure class="grid-item-1">
<img class="grid-img" src="images\artists\download (1).jfif" alt="Indian Classical Music">
</figure>
<figure class="grid-item-2">
<img class="grid-img" src="images\artists\download (2).jfif" alt="Indian Classical Music">
</figure>
<figure class="grid-item-3">
<img class="grid-img" src="images\artists\OIP (1).jfif" alt="Indian Classical Music">
</figure>
<figure class="grid-item-4">
<img class="grid-img" src="images\artists\OIP (2).jfif" alt="Indian Classical Music">
</figure>
<figure class="grid-item-5">
<img class="grid-img" src="images\artists\OIP.jfif" alt="Indian Classical Music">
</figure>
</div>
</div>
</main>
<!-- footer -->
<footer>
<div>
<p>Connect With Us</p>
</div>
<div class="row">
<div>
<ul class="social-links">
<li>
<a href="#">
<img src="icons/png/002-twitter.png" alt="twitter icon">
<!-- <div class="overlay">
<div class="text">Hello World</div>
</div> -->
</a>
</li>
<li><a href="#"><img src="icons/png/004-facebook.png" alt="facebook icon"></a></li>
<li><a href="#"><img src="icons/png/003-instagram.png" alt="instagram icon"></a></li>
<li><a href="#"><img src="icons/png/005-youtube.png" alt="youtube icon"></a></li>
</ul>
</div>
</div>
<div>
<p>Icons made by <a href="https://www.freepik.com" title="Freepik" target="_blank">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon" target="_blank">www.flaticon.com</a></p>
</div>
<div>
<p>©Copyrights UzairAhmedSyed. All rights reserved.</p>
</div>
</footer>
</body>
<!-- <div id="images-slider">
<figure>
<img src="images/Pixabay/compressed/free-coffee-wallpaper-1.jpg" alt="Close-up of coffee beans"> //alt tags used for SEO
<img src="images/Pixabay/compressed/coffee-869203_1920.jpg" alt="Chemex glass coffeemaker with cup">
<img src="images/Pixabay/compressed/coffee-beans-1291656_1920.jpg" alt="Close-up of coffee beans">
<img src="images/Pixabay/compressed/food-5158702_1920.jpg" alt="Knafeh middle eastern desert with pistachio toppings">
<img src="images/Pixabay/compressed/free-coffee-wallpaper-1.jpg" alt="Close-up of coffee beans">
</figure>
</div> -->
</html>