-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (46 loc) · 2.32 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
<!DOCTYPE html>
<html>
<head>
<!-- CSS Libraries -->
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Open+Sans:400,800,600,700,300">
<link rel="stylesheet" type="text/css" href="http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<link rel="stylesheet" type="text/css" href="styles/normalize.css">
<!-- Project CSS-->
<link rel="stylesheet" type="text/css" href="styles/main.css">
<link rel="stylesheet" type="text/css" href="styles/landing.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bloc Jams</title>
</head>
<body class="landing">
<nav class="navbar"><!-- navigation bar -->
<a href="index.html" class="logo">
<img src="assets/images/bloc_jams_logo.png" alt="Bloc Jams">
</a>
<div class="links-container">
<a href="collection.html" class="navbar-link">Collection</a>
</div>
</nav>
<section class="hero-content"><!-- hero content -->
<h1 class="hero-title">Turn the music up!</h1>
</section>
<section class="selling-points container clearfix"><!-- selling points-->
<div class="point column third">
<span class="ion-music-note"></span>
<h5 class="point-title">Choose your music</h5>
<p class="point-description">The world is full of music; why should you have to listen to music that someone else chose?</p>
</div>
<div class="point column third">
<span class="ion-radio-waves"></span>
<h5 class="point-title">Unlimited, streaming, ad-free</h5>
<p>No arbitrary limits. No distractions.</p>
</div>
<div class="point column third">
<span class="ion-iphone"></span>
<h5 class="point-title">Mobile enabled</h5>
<p class="point-description">Listen to your music on the go. This streaming service is available on all mobile platforms.</p>
</div>
</section>
<script type="text/javascript" src="scripts/utilities.js"></script>
<script type="text/javascript" src="scripts/landing.js"></script>
</body>
</html>