-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
64 lines (62 loc) · 2.96 KB
/
Index.html
File metadata and controls
64 lines (62 loc) · 2.96 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
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
...
<head>
<title>Bloc Jams Thamer</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<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">
<link rel="stylesheet" type="text/css" href="styles/main.css">
<link rel="stylesheet" type="text/css" href="styles/landing.css">
...
</head>
<body>
<body class="landing">
<nav> <!-- navigation bar -->
<nav class="navbar"> <!-- nav bar -->
<a href="index.html" class="logo">
<img src="assets/images/bloc_jams_logo.png" alt="bloc jams logo">
</a>
<div class="links-container">
<a href="collection.html" class="navbar-link">collection</a>
</div>
</nav>
<section> <!-- hero content -->
<section class="hero-content"> <!-- hero content -->
<h1>Bloc Jams</h1>
<h3>Turn the music up!</h3>
<h1 class="hero-title">Turn the music up!</h1>
</section>
<section> <!-- selling points -->
<div>
<h5>Choose your music</h5>
<p>The world is full of music; why should you have to listen to music that someone else chose?</p>
<section class="selling-points"> <!-- selling points -->
<section class="selling-points container"> <!-- selling points -->
<div class="point">
<div class="point column third">
<span class="ion-music-note"></span>
<h5 class="point-title">Choose your music</h5>
</div>
<h5>Unlimited, streaming, ad-free</h5>
<p>No arbitrary limits. No distractions.</p>
<div class="point">
<div class="point column third">
<span class="ion-radio-waves"></span>
<h5 class="point-title">Unlimited, streaming, ad-free</h5>
<p class="point-description">No arbitrary limits. No distractions.</p>
</div>
<h5>Mobile enabled</h5>
<p>Listen to your music on the go. This streaming service is available on all mobile platforms.</p>
<div class="point">
<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>
</div>
</section>
<script src="scripts/landing.js"></script>
</body>
</html>