-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
334 lines (322 loc) · 11.6 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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<title>PlayMe</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--
=========================
ICONS
========================= -->
<!-- FONTAWESOME -->
<link rel="stylesheet" href="src/fontawesome-all.css">
<!--
=========================
THIRD PARTY PLUGINS
========================= -->
<!-- MANIFIC POPUPS-->
<link rel="stylesheet" href="src/magnific-popup.css">
<!-- OWL CAROUSEL-->
<link rel="stylesheet" href="src/owl.css">
<!--SWIPER CAROUSEL-->
<link rel="stylesheet" href="src/swiper.css">
<!-- BOOTSTRAP -->
<link rel="stylesheet" href="src/bootstrap.css">
<!--
=========================
MAIN STYLES
========================= -->
<!-- MAIN STYLES-->
<link rel="stylesheet" href="src/styles.css">
<!-- RESPONSIVE -->
<link rel="stylesheet" href="src/responsive.css">
<!--
=========================
FAVICONS
========================= -->
<link rel="shortcut icon" href="http://preview.fourtyfive.co/favicon.ico"><!-- 16x16 size favicon -->
</head>
<body class="x-hidden">
<!--
=========================
PRELOADER
========================= -->
<div id="loading" class="hidden">
<div class="ripple ripple1"></div>
<div class="ripple ripple2"></div>
<div class="ripple ripple3"></div>
<div class="ripple ripple4"></div>
</div>
<!--END PRELOADER-->
<nav class="navbar navbar-expand-lg fixed-top custom-menu custom-menu__light">
<div class="container">
<a class="navbar-brand" href="#">
<img src="src/logo.svg" alt="Image" class="logo-md">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="menu-icon__circle">
</span>
<span class="menu-icon">
<span class="menu-icon__bar"></span>
<span class="menu-icon__bar"></span>
<span class="menu-icon__bar"></span>
</span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-lg-auto">
<li class="nav-item active">
<a class="nav-link" href="#overview">Overview
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#faqs">FAQs</a>
</li>
</ul>
<div class="custom-menu__right">
<a href="#download" class="nav-link btn btn-primary btn-pills">Download</a>
</div>
</div>
</div>
</nav>
<!--
=========================
HERO SECTION
========================= -->
<header id="hero" class="hero bg-blue">
<div class="container">
<div class="row">
<div class="col-md-8 mx-auto">
<header class="section-header pt-100 text-center">
<img src="src/logo-icon-white.svg" alt="logo" class="logo-icon">
<h2 class="section-title">Elegant YouTube Music desktop app</h2>
<p class="lead">Why? So that you don't have to worry about the browser tab which is currently playing the music.
</p>
</header>
</div>
</div>
</div>
</header>
<!--
=========================
APP SCREENS SLIDER
========================= -->
<section id="overview">
<div class="container pb-100">
<div class="section-spacer">
<div class="row">
<div class="col-md-8 mx-auto">
<header class="section-header pt-50 text-center">
<h2 class="section-title">Cross Platform, where you need it</h2>
<p class="lead">Works seamlessly on Mac, Linux & Windows.</p>
</header>
</div>
</div>
<div class="flex-column-reverse align-items-center screen-slider__item">
<img src="src/screenshot-1.jpg" alt="Image">
</div>
</div>
<div class="row">
<div class="col-md-4 col-12">
<div class="feature-card">
<div class="u-icon u-icon__circle u-icon__lg bg-dimped__primary">
<i class="icon ion-ios-keypad"></i>
</div>
<div class="feature-card__body">
<h4 class="feature-title">Media Keys</h4>
<p>Play/pause, next & previous song from your keyboard.
</p>
<a href="#" class="btn btn-link btn-link--secondary">Learn more
<i class="icon ion-ios-arrow-forward"></i>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="feature-card">
<div class="u-icon u-icon__circle u-icon__lg bg-dimped__purple">
<i class="icon ion-ios-apps"></i>
</div>
<div class="feature-card__body">
<h4 class="feature-title">Save Session</h4>
<p>You don't have to login every time you start it. We're in 2018.</p>
<a href="#" class="btn btn-link btn-link--secondary">Learn more
<i class="icon ion-ios-arrow-forward"></i>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="feature-card m-0">
<div class="u-icon u-icon__circle u-icon__lg bg-dimped__cyan">
<i class="icon ion-ios-bug"></i>
</div>
<div class="feature-card__body">
<h4 class="feature-title">Responsive</h4>
<p>Because you know, YouTube music itself is responsive.</p>
<a href="#" class="btn btn-link btn-link--secondary">Learn more
<i class="icon ion-ios-arrow-forward"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
=========================
FAQs
========================= -->
<section id="faqs" class="section-faq section-spacer bg-very__gray">
<div class="container">
<header class="section-header text-center">
<h2 class="section-title">Frequently Asked Questions</h2>
</header>
<div class="row">
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h5 class="card-title">How do I get rid of the floating video?</h5>
<p>You'd need to buy a premium account for that. Mainly because that's how their business runs - on ads. When logged in, simply click on your profile picture on top right corner, then buy a premium account.</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h5 class="card-title">YouTube Music is not available in my country. What do I do?</h5>
<p>We can't do much about that for now. But, there is something you can do: write to their support and ask when it will be available for your country.</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h5 class="card-title">How does this app protect my privacy?</h5>
<p>We are not saving, logging, sending or using any of the data within the player. It's all happening withing the WebView on YouTube Music. Also, the source code is open to public on github.</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h5 class="card-title">How do I use the player?</h5>
<p>Hiss and stare at nothing then run suddenly away. Lick human with sandpaper tongue paw at your fat belly
be
a nyan cat, feel great about it, be annoying 24/7 poop rainbows in litter box all day.</p>
</div>
</div>
</div>
</div>
<!-- <div class="mt-40 text-center">
<a href="#" class="btn btn-primary btn-lg">Talk to our team</a>
</div> -->
</div>
</section>
<!--
=========================
download section
========================= -->
<section id="download" class="section-spacer pricing-section">
<div class="container">
<header class="section-header text-center">
<h2 class="section-title">Download</h2>
<p class="section-subtitle">Everything is included, no hidden fees, no nonsense. It's FREE!</p>
</header>
<div class="tab-content">
<div class="tab-pane active" id="monthly-plan" role="tabpanel" aria-labelledby="monthly-plan">
<div class="row">
<div class="col-md-4">
<div class="pricing-single">
<div class="pricing-header">
<h4 class="pricing-title">Mac</h4>
</div>
<div class="pricing-footer">
<a href="https://github.com/lamazingco/playme/releases/download/v1.0.3/PlayMe-1.0.3.dmg" class="btn btn-primary">Download</a>
<span class="d-block assistive-text">.dmg | macOS 10.9+</span>
</div>
</div>
</div>
<div class="col-md-4">
<div class="pricing-single">
<div class="pricing-header">
<h4 class="pricing-title">Linux</h4>
</div>
<div class="pricing-footer">
<a href="https://github.com/lamazingco/playme/releases/download/v1.0.3/playme-1.0.3-x86_64.AppImage" class="btn btn-primary">Download</a>
<span class="d-block assistive-text">.AppImage | Ubuntu, Mint etc.</span>
</div>
</div>
</div>
<div class="col-md-4">
<div class="pricing-single">
<div class="pricing-header">
<h4 class="pricing-title">Windows</h4>
</div>
<div class="pricing-footer">
<a href="https://github.com/lamazingco/playme/releases/download/v1.0.3/PlayMe.Setup.1.0.3.exe" class="btn btn-primary">Download</a>
<span class="d-block assistive-text">.exe setup | Windows 7+</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
=========================
FOOTER
========================= -->
<footer class="section-spacer footer-section bg-very__gray">
<div class="container">
<div class="row flex-column-reverse flex-sm-row flex-lg-row">
<div class="col-md-4 col-12">
</div>
<div class="footer-widget first-of-footer-widget">
<img src="src/logo.svg" class="logo-sm mb-10" alt="Image">
<p>Copyright © 2018 PlayMe. All Rights Reserved.</p>
<a href="" class="d-block mb-10">+1-346-PLAY-ME</a>
<a href="">[email protected]</a>
<ul class="social-list__inline mt-10">
<li>
<a href="">
<i class="icon ion-logo-facebook"></i>
</a>
</li>
<li>
<a href="">
<i class="icon ion-logo-twitter"></i>
</a>
</li>
<li>
<a href="">
<i class="icon ion-logo-linkedin"></i>
</a>
</li>
<li>
<a href="">
<i class="icon ion-logo-instagram"></i>
</a>
</li>
<li>
<a href="">
<i class="icon ion-logo-youtube"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<script src="src/jquery.js"></script>
<script src="src/bootstrap.js"></script>
<script src="src/jquery_003.js"></script>
<script src="src/jquery_002.js"></script>
<script src="src/swiper.js"></script>
<script src="src/owl.js"></script>
<script src="src/custom.js"></script>
</body></html>