-
Notifications
You must be signed in to change notification settings - Fork 0
/
144-bpm.html
1059 lines (984 loc) · 84.3 KB
/
144-bpm.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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" prefix="og: http://ogp.me/ns#">
<!-- Mirrored from metronome-online.com/144-bpm by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Mar 2023 15:35:45 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="format-detection" content="telephone=no">
<meta name="SKYPE_TOOLBAR" content ="SKYPE_TOOLBAR_PARSER_COMPATIBLE">
<title>144 BPM Metronome - Online and Free</title>
<meta name="description" content="Start 144 BPM metronome in one click! This online metronome is already tuned to a tempo of 144 BPM (beats per minute) and has many useful settings.">
<meta name="keywords" content="144 BPM, metronome, online, beat, music, rhythm, tempo, sound, tool, timer, minute, second, free">
<link rel="shortcut icon" href="assets/images/favicon.html" type="image/png">
<link rel="preconnect" href="https://fonts.googleapis.com/">
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;0,900;1,400;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/ion.rangeSlider.min.css">
<link rel="stylesheet" href="assets/css/styles.mind387.css?v8">
<link rel="stylesheet" href="assets/css/response_1199.min.css" media="(max-width: 1199px)">
<link rel="stylesheet" href="assets/css/response_1024.min.css" media="(max-width: 1024px)">
<link rel="stylesheet" href="assets/css/response_767.min.css" media="(max-width: 767px)">
<link rel="stylesheet" href="assets/css/response_479.min.css" media="(max-width: 479px)">
<meta property="og:title" content="144 BPM Metronome - Online and Free">
<meta property="og:description" content="Start 144 BPM metronome in one click! This online metronome is already tuned to a tempo of 144 BPM (beats per minute) and has many useful settings.">
<meta property="og:locale" content="en">
<meta property="og:type" content="website">
<meta property="og:url" content="index.html">
<meta property="og:site_name" content="144 BPM Metronome - Online and Free">
<meta property="og:width" content="1024">
<meta property="og:height" content="1024">
<meta property="og:image" content="assets/images/metronome-online.png">
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="144 BPM Metronome - Online and Free" />
<meta name="twitter:description" content="Start 144 BPM metronome in one click! This online metronome is already tuned to a tempo of 144 BPM (beats per minute) and has many useful settings." />
<meta name="twitter:image" content="assets/images/metronome-online.png">
<meta name="csrf-token" content="DSaQLkJVLaavyvLigPai15zLg0giAbVOAJRjkbds">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.html">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#eb825a">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1731053823318466"
crossorigin="anonymous"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4Z6FEHJ5L4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-4Z6FEHJ5L4');
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Product",
"brand": "https://metronome-online.com",
"name": "144 BPM Metronome - Online and Free",
"description": "Start 144 BPM metronome in one click! This online metronome is already tuned to a tempo of 144 BPM (beats per minute) and has many useful settings.",
"category": "Productivity",
"image": "https://metronome-online.com/assets/images/metronome-online.png",
"aggregateRating": {
"@type": "AggregateRating",
"worstRating": "1",
"bestRating": "5"
,"ratingValue": "4.5",
"ratingCount": "2"
}
}
</script>
</head>
<body>
<div class="wrap">
<div class="main">
<header>
<div class="cont flex">
<div class="logo">
<a href="index.html">
<svg width="252" height="30"><use xlink:href="assets/images/sprite.svg#logo" alt="144 BPM Metronome - Online and Free"></use></svg>
</a>
</div>
<div class="wrap_block flex">
<nav class="main_menu flex">
<div class="item">
<a href="javascript:void(0)" class="sub_link">
<svg width="14" height="16" class="icon"><use xlink:href="assets/images/sprite.svg#metronome"></use></svg>
Select BPM
<svg width="12" height="12" class="down_arrow"><use xlink:href="assets/images/sprite.svg#down-arrow"></use></svg>
</a>
<div class="dropdown sub_menu">
<ul>
<li><a class="links__link" href="1-bpm.html">1 BPM</a></li>
<li><a class="links__link" href="2-bpm.html">2 BPM</a></li>
<li><a class="links__link" href="3-bpm.html">3 BPM</a></li>
<li><a class="links__link" href="4-bpm.html">4 BPM</a></li>
<li><a class="links__link" href="5-bpm.html">5 BPM</a></li>
<li><a class="links__link" href="6-bpm.html">6 BPM</a></li>
<li><a class="links__link" href="7-bpm.html">7 BPM</a></li>
<li><a class="links__link" href="8-bpm.html">8 BPM</a></li>
<li><a class="links__link" href="9-bpm.html">9 BPM</a></li>
<li><a class="links__link" href="10-bpm.html">10 BPM</a></li>
<li><a class="links__link" href="11-bpm.html">11 BPM</a></li>
<li><a class="links__link" href="12-bpm.html">12 BPM</a></li>
<li><a class="links__link" href="13-bpm.html">13 BPM</a></li>
<li><a class="links__link" href="14-bpm.html">14 BPM</a></li>
<li><a class="links__link" href="15-bpm.html">15 BPM</a></li>
<li><a class="links__link" href="16-bpm.html">16 BPM</a></li>
<li><a class="links__link" href="17-bpm.html">17 BPM</a></li>
<li><a class="links__link" href="18-bpm.html">18 BPM</a></li>
<li><a class="links__link" href="19-bpm.html">19 BPM</a></li>
<li><a class="links__link" href="20-bpm.html">20 BPM</a></li>
<li><a class="links__link" href="21-bpm.html">21 BPM</a></li>
<li><a class="links__link" href="22-bpm.html">22 BPM</a></li>
<li><a class="links__link" href="23-bpm.html">23 BPM</a></li>
<li><a class="links__link" href="24-bpm.html">24 BPM</a></li>
<li><a class="links__link" href="25-bpm.html">25 BPM</a></li>
<li><a class="links__link" href="26-bpm.html">26 BPM</a></li>
<li><a class="links__link" href="27-bpm.html">27 BPM</a></li>
<li><a class="links__link" href="28-bpm.html">28 BPM</a></li>
<li><a class="links__link" href="29-bpm.html">29 BPM</a></li>
<li><a class="links__link" href="30-bpm.html">30 BPM</a></li>
<li><a class="links__link" href="31-bpm.html">31 BPM</a></li>
<li><a class="links__link" href="32-bpm.html">32 BPM</a></li>
<li><a class="links__link" href="33-bpm.html">33 BPM</a></li>
<li><a class="links__link" href="34-bpm.html">34 BPM</a></li>
<li><a class="links__link" href="35-bpm.html">35 BPM</a></li>
<li><a class="links__link" href="36-bpm.html">36 BPM</a></li>
<li><a class="links__link" href="37-bpm.html">37 BPM</a></li>
<li><a class="links__link" href="38-bpm.html">38 BPM</a></li>
<li><a class="links__link" href="39-bpm.html">39 BPM</a></li>
<li><a class="links__link" href="40-bpm.html">40 BPM</a></li>
<li><a class="links__link" href="41-bpm.html">41 BPM</a></li>
<li><a class="links__link" href="42-bpm.html">42 BPM</a></li>
<li><a class="links__link" href="43-bpm.html">43 BPM</a></li>
<li><a class="links__link" href="44-bpm.html">44 BPM</a></li>
<li><a class="links__link" href="45-bpm.html">45 BPM</a></li>
<li><a class="links__link" href="46-bpm.html">46 BPM</a></li>
<li><a class="links__link" href="47-bpm.html">47 BPM</a></li>
<li><a class="links__link" href="48-bpm.html">48 BPM</a></li>
<li><a class="links__link" href="49-bpm.html">49 BPM</a></li>
<li><a class="links__link" href="50-bpm.html">50 BPM</a></li>
<li><a class="links__link" href="51-bpm.html">51 BPM</a></li>
<li><a class="links__link" href="52-bpm.html">52 BPM</a></li>
<li><a class="links__link" href="53-bpm.html">53 BPM</a></li>
<li><a class="links__link" href="54-bpm.html">54 BPM</a></li>
<li><a class="links__link" href="55-bpm.html">55 BPM</a></li>
<li><a class="links__link" href="56-bpm.html">56 BPM</a></li>
<li><a class="links__link" href="57-bpm.html">57 BPM</a></li>
<li><a class="links__link" href="58-bpm.html">58 BPM</a></li>
<li><a class="links__link" href="59-bpm.html">59 BPM</a></li>
<li><a class="links__link" href="60-bpm.html">60 BPM</a></li>
<li><a class="links__link" href="61-bpm.html">61 BPM</a></li>
<li><a class="links__link" href="62-bpm.html">62 BPM</a></li>
<li><a class="links__link" href="63-bpm.html">63 BPM</a></li>
<li><a class="links__link" href="64-bpm.html">64 BPM</a></li>
<li><a class="links__link" href="65-bpm.html">65 BPM</a></li>
<li><a class="links__link" href="66-bpm.html">66 BPM</a></li>
<li><a class="links__link" href="67-bpm.html">67 BPM</a></li>
<li><a class="links__link" href="68-bpm.html">68 BPM</a></li>
<li><a class="links__link" href="69-bpm.html">69 BPM</a></li>
<li><a class="links__link" href="70-bpm.html">70 BPM</a></li>
<li><a class="links__link" href="71-bpm.html">71 BPM</a></li>
<li><a class="links__link" href="72-bpm.html">72 BPM</a></li>
<li><a class="links__link" href="73-bpm.html">73 BPM</a></li>
<li><a class="links__link" href="74-bpm.html">74 BPM</a></li>
<li><a class="links__link" href="75-bpm.html">75 BPM</a></li>
<li><a class="links__link" href="76-bpm.html">76 BPM</a></li>
<li><a class="links__link" href="77-bpm.html">77 BPM</a></li>
<li><a class="links__link" href="78-bpm.html">78 BPM</a></li>
<li><a class="links__link" href="79-bpm.html">79 BPM</a></li>
<li><a class="links__link" href="80-bpm.html">80 BPM</a></li>
<li><a class="links__link" href="81-bpm.html">81 BPM</a></li>
<li><a class="links__link" href="82-bpm.html">82 BPM</a></li>
<li><a class="links__link" href="83-bpm.html">83 BPM</a></li>
<li><a class="links__link" href="84-bpm.html">84 BPM</a></li>
<li><a class="links__link" href="85-bpm.html">85 BPM</a></li>
<li><a class="links__link" href="86-bpm.html">86 BPM</a></li>
<li><a class="links__link" href="87-bpm.html">87 BPM</a></li>
<li><a class="links__link" href="88-bpm.html">88 BPM</a></li>
<li><a class="links__link" href="89-bpm.html">89 BPM</a></li>
<li><a class="links__link" href="90-bpm.html">90 BPM</a></li>
<li><a class="links__link" href="91-bpm.html">91 BPM</a></li>
<li><a class="links__link" href="92-bpm.html">92 BPM</a></li>
<li><a class="links__link" href="93-bpm.html">93 BPM</a></li>
<li><a class="links__link" href="94-bpm.html">94 BPM</a></li>
<li><a class="links__link" href="95-bpm.html">95 BPM</a></li>
<li><a class="links__link" href="96-bpm.html">96 BPM</a></li>
<li><a class="links__link" href="97-bpm.html">97 BPM</a></li>
<li><a class="links__link" href="98-bpm.html">98 BPM</a></li>
<li><a class="links__link" href="99-bpm.html">99 BPM</a></li>
<li><a class="links__link" href="100-bpm.html">100 BPM</a></li>
<li><a class="links__link" href="101-bpm.html">101 BPM</a></li>
<li><a class="links__link" href="102-bpm.html">102 BPM</a></li>
<li><a class="links__link" href="103-bpm.html">103 BPM</a></li>
<li><a class="links__link" href="104-bpm.html">104 BPM</a></li>
<li><a class="links__link" href="105-bpm.html">105 BPM</a></li>
<li><a class="links__link" href="106-bpm.html">106 BPM</a></li>
<li><a class="links__link" href="107-bpm.html">107 BPM</a></li>
<li><a class="links__link" href="108-bpm.html">108 BPM</a></li>
<li><a class="links__link" href="109-bpm.html">109 BPM</a></li>
<li><a class="links__link" href="110-bpm.html">110 BPM</a></li>
<li><a class="links__link" href="111-bpm.html">111 BPM</a></li>
<li><a class="links__link" href="112-bpm.html">112 BPM</a></li>
<li><a class="links__link" href="113-bpm.html">113 BPM</a></li>
<li><a class="links__link" href="114-bpm.html">114 BPM</a></li>
<li><a class="links__link" href="115-bpm.html">115 BPM</a></li>
<li><a class="links__link" href="116-bpm.html">116 BPM</a></li>
<li><a class="links__link" href="117-bpm.html">117 BPM</a></li>
<li><a class="links__link" href="118-bpm.html">118 BPM</a></li>
<li><a class="links__link" href="119-bpm.html">119 BPM</a></li>
<li><a class="links__link" href="120-bpm.html">120 BPM</a></li>
<li><a class="links__link" href="121-bpm.html">121 BPM</a></li>
<li><a class="links__link" href="122-bpm.html">122 BPM</a></li>
<li><a class="links__link" href="123-bpm.html">123 BPM</a></li>
<li><a class="links__link" href="124-bpm.html">124 BPM</a></li>
<li><a class="links__link" href="125-bpm.html">125 BPM</a></li>
<li><a class="links__link" href="126-bpm.html">126 BPM</a></li>
<li><a class="links__link" href="127-bpm.html">127 BPM</a></li>
<li><a class="links__link" href="128-bpm.html">128 BPM</a></li>
<li><a class="links__link" href="129-bpm.html">129 BPM</a></li>
<li><a class="links__link" href="130-bpm.html">130 BPM</a></li>
<li><a class="links__link" href="131-bpm.html">131 BPM</a></li>
<li><a class="links__link" href="132-bpm.html">132 BPM</a></li>
<li><a class="links__link" href="133-bpm.html">133 BPM</a></li>
<li><a class="links__link" href="134-bpm.html">134 BPM</a></li>
<li><a class="links__link" href="135-bpm.html">135 BPM</a></li>
<li><a class="links__link" href="136-bpm.html">136 BPM</a></li>
<li><a class="links__link" href="137-bpm.html">137 BPM</a></li>
<li><a class="links__link" href="138-bpm.html">138 BPM</a></li>
<li><a class="links__link" href="139-bpm.html">139 BPM</a></li>
<li><a class="links__link" href="140-bpm.html">140 BPM</a></li>
<li><a class="links__link" href="141-bpm.html">141 BPM</a></li>
<li><a class="links__link" href="142-bpm.html">142 BPM</a></li>
<li><a class="links__link" href="143-bpm.html">143 BPM</a></li>
<li><a class="links__link" href="144-bpm.html">144 BPM</a></li>
<li><a class="links__link" href="145-bpm.html">145 BPM</a></li>
<li><a class="links__link" href="146-bpm.html">146 BPM</a></li>
<li><a class="links__link" href="147-bpm.html">147 BPM</a></li>
<li><a class="links__link" href="148-bpm.html">148 BPM</a></li>
<li><a class="links__link" href="149-bpm.html">149 BPM</a></li>
<li><a class="links__link" href="150-bpm.html">150 BPM</a></li>
<li><a class="links__link" href="151-bpm.html">151 BPM</a></li>
<li><a class="links__link" href="152-bpm.html">152 BPM</a></li>
<li><a class="links__link" href="153-bpm.html">153 BPM</a></li>
<li><a class="links__link" href="154-bpm.html">154 BPM</a></li>
<li><a class="links__link" href="155-bpm.html">155 BPM</a></li>
<li><a class="links__link" href="156-bpm.html">156 BPM</a></li>
<li><a class="links__link" href="157-bpm.html">157 BPM</a></li>
<li><a class="links__link" href="158-bpm.html">158 BPM</a></li>
<li><a class="links__link" href="159-bpm.html">159 BPM</a></li>
<li><a class="links__link" href="160-bpm.html">160 BPM</a></li>
<li><a class="links__link" href="161-bpm.html">161 BPM</a></li>
<li><a class="links__link" href="162-bpm.html">162 BPM</a></li>
<li><a class="links__link" href="163-bpm.html">163 BPM</a></li>
<li><a class="links__link" href="164-bpm.html">164 BPM</a></li>
<li><a class="links__link" href="165-bpm.html">165 BPM</a></li>
<li><a class="links__link" href="166-bpm.html">166 BPM</a></li>
<li><a class="links__link" href="167-bpm.html">167 BPM</a></li>
<li><a class="links__link" href="168-bpm.html">168 BPM</a></li>
<li><a class="links__link" href="169-bpm.html">169 BPM</a></li>
<li><a class="links__link" href="170-bpm.html">170 BPM</a></li>
<li><a class="links__link" href="171-bpm.html">171 BPM</a></li>
<li><a class="links__link" href="172-bpm.html">172 BPM</a></li>
<li><a class="links__link" href="173-bpm.html">173 BPM</a></li>
<li><a class="links__link" href="174-bpm.html">174 BPM</a></li>
<li><a class="links__link" href="175-bpm.html">175 BPM</a></li>
<li><a class="links__link" href="176-bpm.html">176 BPM</a></li>
<li><a class="links__link" href="177-bpm.html">177 BPM</a></li>
<li><a class="links__link" href="178-bpm.html">178 BPM</a></li>
<li><a class="links__link" href="179-bpm.html">179 BPM</a></li>
<li><a class="links__link" href="180-bpm.html">180 BPM</a></li>
<li><a class="links__link" href="181-bpm.html">181 BPM</a></li>
<li><a class="links__link" href="182-bpm.html">182 BPM</a></li>
<li><a class="links__link" href="183-bpm.html">183 BPM</a></li>
<li><a class="links__link" href="184-bpm.html">184 BPM</a></li>
<li><a class="links__link" href="185-bpm.html">185 BPM</a></li>
<li><a class="links__link" href="186-bpm.html">186 BPM</a></li>
<li><a class="links__link" href="187-bpm.html">187 BPM</a></li>
<li><a class="links__link" href="188-bpm.html">188 BPM</a></li>
<li><a class="links__link" href="189-bpm.html">189 BPM</a></li>
<li><a class="links__link" href="190-bpm.html">190 BPM</a></li>
<li><a class="links__link" href="191-bpm.html">191 BPM</a></li>
<li><a class="links__link" href="192-bpm.html">192 BPM</a></li>
<li><a class="links__link" href="193-bpm.html">193 BPM</a></li>
<li><a class="links__link" href="194-bpm.html">194 BPM</a></li>
<li><a class="links__link" href="195-bpm.html">195 BPM</a></li>
<li><a class="links__link" href="196-bpm.html">196 BPM</a></li>
<li><a class="links__link" href="197-bpm.html">197 BPM</a></li>
<li><a class="links__link" href="198-bpm.html">198 BPM</a></li>
<li><a class="links__link" href="199-bpm.html">199 BPM</a></li>
<li><a class="links__link" href="200-bpm.html">200 BPM</a></li>
<li><a class="links__link" href="201-bpm.html">201 BPM</a></li>
<li><a class="links__link" href="202-bpm.html">202 BPM</a></li>
<li><a class="links__link" href="203-bpm.html">203 BPM</a></li>
<li><a class="links__link" href="204-bpm.html">204 BPM</a></li>
<li><a class="links__link" href="205-bpm.html">205 BPM</a></li>
<li><a class="links__link" href="206-bpm.html">206 BPM</a></li>
<li><a class="links__link" href="207-bpm.html">207 BPM</a></li>
<li><a class="links__link" href="208-bpm.html">208 BPM</a></li>
<li><a class="links__link" href="209-bpm.html">209 BPM</a></li>
<li><a class="links__link" href="210-bpm.html">210 BPM</a></li>
<li><a class="links__link" href="211-bpm.html">211 BPM</a></li>
<li><a class="links__link" href="212-bpm.html">212 BPM</a></li>
<li><a class="links__link" href="213-bpm.html">213 BPM</a></li>
<li><a class="links__link" href="214-bpm.html">214 BPM</a></li>
<li><a class="links__link" href="215-bpm.html">215 BPM</a></li>
<li><a class="links__link" href="216-bpm.html">216 BPM</a></li>
<li><a class="links__link" href="217-bpm.html">217 BPM</a></li>
<li><a class="links__link" href="218-bpm.html">218 BPM</a></li>
<li><a class="links__link" href="219-bpm.html">219 BPM</a></li>
<li><a class="links__link" href="220-bpm.html">220 BPM</a></li>
<li><a class="links__link" href="221-bpm.html">221 BPM</a></li>
<li><a class="links__link" href="222-bpm.html">222 BPM</a></li>
<li><a class="links__link" href="223-bpm.html">223 BPM</a></li>
<li><a class="links__link" href="224-bpm.html">224 BPM</a></li>
<li><a class="links__link" href="225-bpm.html">225 BPM</a></li>
<li><a class="links__link" href="226-bpm.html">226 BPM</a></li>
<li><a class="links__link" href="227-bpm.html">227 BPM</a></li>
<li><a class="links__link" href="228-bpm.html">228 BPM</a></li>
<li><a class="links__link" href="229-bpm.html">229 BPM</a></li>
<li><a class="links__link" href="230-bpm.html">230 BPM</a></li>
<li><a class="links__link" href="231-bpm.html">231 BPM</a></li>
<li><a class="links__link" href="232-bpm.html">232 BPM</a></li>
<li><a class="links__link" href="233-bpm.html">233 BPM</a></li>
<li><a class="links__link" href="234-bpm.html">234 BPM</a></li>
<li><a class="links__link" href="235-bpm.html">235 BPM</a></li>
<li><a class="links__link" href="236-bpm.html">236 BPM</a></li>
<li><a class="links__link" href="237-bpm.html">237 BPM</a></li>
<li><a class="links__link" href="238-bpm.html">238 BPM</a></li>
<li><a class="links__link" href="239-bpm.html">239 BPM</a></li>
<li><a class="links__link" href="240-bpm.html">240 BPM</a></li>
</ul>
</div>
</div>
</nav>
<div class="lang">
<div class="block flex">
<svg width="16" height="16" class="icon">
<use xlink:href="assets/images/sprite.svg#en"></use>
</svg>
<span>EN</span>
<svg width="12" height="12" class="down_arrow"><use xlink:href="assets/images/sprite.svg#down-arrow"></use></svg>
</div>
<div class="dropdown">
<ul>
<li class=" is-active ">
<a href="144-bpm.html" class="flex">
<svg width="16" height="16" class="icon">
<use xlink:href="assets/images/sprite.svg#en"></use>
</svg>
<span>English</span>
</a>
</li>
<li class="">
<a href="es/144-bpm.html" class="flex">
<svg width="16" height="16" class="icon">
<use xlink:href="assets/images/sprite.svg#es"></use>
</svg>
<span>Español</span>
</a>
</li>
<li class="">
<a href="fr/144-bpm.html" class="flex">
<svg width="16" height="16" class="icon">
<use xlink:href="assets/images/sprite.svg#fr"></use>
</svg>
<span>Français</span>
</a>
</li>
<li class="">
<a href="de/144-bpm.html" class="flex">
<svg width="16" height="16" class="icon">
<use xlink:href="assets/images/sprite.svg#de"></use>
</svg>
<span>Deutsch</span>
</a>
</li>
<li class="">
<a href="pt/144-bpm.html" class="flex">
<svg width="16" height="16" class="icon">
<use xlink:href="assets/images/sprite.svg#pt"></use>
</svg>
<span>Português</span>
</a>
</li>
<li class="">
<a href="it/144-bpm.html" class="flex">
<svg width="16" height="16" class="icon">
<use xlink:href="assets/images/sprite.svg#it"></use>
</svg>
<span>Italiano</span>
</a>
</li>
<li class="">
<a href="pl/144-bpm.html" class="flex">
<svg width="16" height="16" class="icon">
<use xlink:href="assets/images/sprite.svg#pl"></use>
</svg>
<span>Polski</span>
</a>
</li>
<li class="">
<a href="ru/144-bpm.html" class="flex">
<svg width="16" height="16" class="icon">
<use xlink:href="assets/images/sprite.svg#ru"></use>
</svg>
<span>Русский</span>
</a>
</li>
<li class="">
<a href="ja/144-bpm.html" class="flex">
<svg width="16" height="16" class="icon">
<use xlink:href="assets/images/sprite.svg#ja"></use>
</svg>
<span>日本語</span>
</a>
</li>
<li class="">
<a href="zh/144-bpm.html" class="flex">
<svg width="16" height="16" class="icon">
<use xlink:href="assets/images/sprite.svg#zh"></use>
</svg>
<span>简体中文</span>
</a>
</li>
</ul>
</div>
</div>
</div>
<button type="button" class="mob_menu_link">
<span></span>
<span></span>
<span></span>
</button>
</div>
</header>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"@id": "https://metronome-online.com/#organization",
"name": "Metronome Online",
"url": "https://metronome-online.com/",
"sameAs": []
},
{
"@type": "WebSite",
"@id": "https://metronome-online.com/#website",
"url": "https://metronome-online.com/",
"name": "Metronome Online",
"publisher": {
"@id": "https://metronome-online.com/#organization"
}
},
{
"@type": "WebPage",
"@id": "https://metronome-online.com/144-bpm#webpage",
"url": "https://metronome-online.com/144-bpm",
"inLanguage": "en",
"name": "144 BPM Metronome",
"isPartOf": {
"@id": "https://metronome-online.com/144-bpm#website"
},
"image": {
"@type": "ImageObject",
"@id": "https://metronome-online.com/144-bpm#primaryimage",
"url": "https://metronome-online.com/assets/images/metronome-online.png",
"width": 1024,
"height": 1024
},
"primaryImageOfPage": {
"@id": "https://metronome-online.com/144-bpm#primaryimage"
},
"datePublished": "2021-04-12T19:42:27-12:00",
"description": "This app will help you quickly start a metronome with a tempo of 144 BPM. Just press the "Start" button and the metronome will immediately start working."
}
]
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "HowTo",
"name": "How to use 144 BPM Metronome?",
"url": "https://metronome-online.com/144-bpm",
"inLanguage": "https://metronome-online.com/144-bpm",
"image": {
"@type": "ImageObject",
"url": "https://metronome-online.com/assets/images/metronome-online.png"
},
"step": [
{
"@type": "HowToStep",
"position": 1,
"name": "Click the "Start" button",
"text": "To start a 144 BPM metronome, simply press the "Start" button. If you need to change the number of bits per minute, then simply drag the sliders in the bpm bar to the required number of bpm."
},
{
"@type": "HowToStep",
"position": 2,
"name": "Use the metronome settings",
"text": "Customize this 144 BPM metronome with ease, for example you can change the number of beats or toggle subdivisions, as well as set the timer for the metronome."
}
]
}
</script>
<section class="headline">
<div class="cont">
<ul class="breadcrumbs" itemscope itemtype="http://schema.org/BreadcrumbList">
<li class="breadcrumbs__li" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" class="breadcrumbs__link" href="index.html"><span itemprop="name">Metronome Online</span></a>
<meta itemprop="position" content="1" />
</li>
<li class="breadcrumbs__li" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" class="breadcrumbs__span" href="144-bpm.html"><span itemprop="name">144 BPM Metronome</span></a>
<meta itemprop="position" content="2" />
</li>
</ul>
<h1 class="page_title center">144 BPM Metronome</h1>
<h2 class="desc">This app will help you quickly start a metronome with a tempo of 144 BPM. Just press the "Start" button and the metronome will immediately start working.</h2>
</div>
</section>
<section class="metronome">
<div class="cont">
<div class="block">
<div class="modes flex">
<div class="theme_mode">
<label class="label_check">
<input type="checkbox" name="theme_mode" autocomplete="off">
<span class="check_text">Light / Dark mode</span>
</label>
</div>
<div class="fullscreen">
<button type="button" class="flex">
<span class="icon">
<svg width="16" height="16"><use xlink:href="assets/images/sprite.svg#fullscreen"></use></svg>
</span>
<span class="open">Open Fullscreen</span><span class="close">Close Fullscreen</span>
</button>
</div>
</div>
<div class="box">
<div class="bpm">
<div class="name"><span>BPM</span></div>
<div class="val">144</div>
<div class="desc"></div>
</div>
<div class="bar flex">
<button type="button" class="minus"><svg width="32" height="32"><use xlink:href="assets/images/sprite.svg#minus"></use></svg></button>
<div class="wrap_range">
<input data-range="range-slider" type="text" data-min="1" data-max="240" name="price_range" value="144" data-postfix="" data-step="1" style="opacity: 0; visibility: hidden;" autocomplete="off" />
</div>
<button type="button" class="plus"><svg width="32" height="32"><use xlink:href="assets/images/sprite.svg#plus"></use></svg></button>
</div>
<div class="beat">
<div class="name"><span>BEATS</span></div>
<div class="beats flex">
</div>
</div>
<div class="buttons flex">
<button type="button" class="start flex">
<span class="icon">
<svg width="16" height="16" class="ic_start"><use xlink:href="assets/images/sprite.svg#start"></use></svg>
<svg width="16" height="16" class="ic_stop"><use xlink:href="assets/images/sprite.svg#stop"></use></svg>
</span>
<span class="text_play">Start</span>
<span class="text_stop">Stop</span>
</button>
<button id="btn-tap" class="tap flex">
<svg width="20" height="20" class="icon"><use xlink:href="assets/images/sprite.svg#tap"></use></svg>
Tap BPM
</button>
</div>
<div class="settings">
<div class="line flex">
<div class="line_name">Beats</div>
<div class="amount">
<div class="val flex">
<button type="button" class="minus"><svg width="22" height="22"><use xlink:href="assets/images/sprite.svg#minus"></use></svg></button>
<input type="text" id="beatsCount" name="beatsCount" value="4" data-minimum="1" data-maximum="12" data-step="1" class="input beatsCount" maxlength="2" autocomplete="off" disabled/>
<button type="button" class="plus"><svg width="22" height="22"><use xlink:href="assets/images/sprite.svg#plus"></use></svg></button>
</div>
</div>
</div>
<div class="line">
<div class="checkbox">
<label class="label_check">
<input type="checkbox" id="stress_first_beat" name="stress_first_beat" autocomplete="off" >
<span class="check_text">Stress first beat</span>
</label>
</div>
</div>
<div class="line flex">
<div class="checkbox">
<label class="label_check">
<input id="timer" type="checkbox" name="timer" autocomplete="off" >
<span class="check_text">Timer</span>
</label>
</div>
<div class="box_input">
<input type="text" id="minutes" class="minutes" maxlength="2" value="1" autocomplete="off">
<span class="step">:</span>
<input type="text" id="seconds" class="seconds" maxlength="2" value="00" autocomplete="off">
</div>
</div>
<div class="line flex">
<div class="checkbox">
<label class="label_check">
<span class="check_text">Subdivisions</span>
</label>
</div>
<div class="">
<div class="controls flex">
<input type="radio" id="subdivision-1" name="subdivisions" value="1" class="hidden js-subdivisions-change" data-pattern="1" autocomplete="off" checked >
<label for="subdivision-1"><img src="assets/images/metronome/sub1.webp"></label>
<input type="radio" id="subdivision-2" name="subdivisions" value="2" class="hidden js-subdivisions-change" data-pattern="1-1" autocomplete="off" >
<label for="subdivision-2"><img src="assets/images/metronome/sub2.webp"></label>
<input type="radio" id="subdivision-3" name="subdivisions" value="3" class="hidden js-subdivisions-change" data-pattern="1-1-1" autocomplete="off" >
<label for="subdivision-3"><img src="assets/images/metronome/sub3.webp"></label>
<input type="radio" id="subdivision-4" name="subdivisions" value="4" class="hidden js-subdivisions-change" data-pattern="1-1-1-1" autocomplete="off" >
<label for="subdivision-4"><img src="assets/images/metronome/sub4.webp"></label>
<input type="radio" id="subdivision-5" name="subdivisions" value="5" class="hidden js-subdivisions-change" data-pattern="1-0-0-1" autocomplete="off" >
<label for="subdivision-5"><img src="assets/images/metronome/sub5.webp"></label>
<input type="radio" id="subdivision-6" name="subdivisions" value="6" class="hidden js-subdivisions-change" data-pattern="1-1-0-0" autocomplete="off" >
<label for="subdivision-6"><img src="assets/images/metronome/sub6.webp"></label>
<input type="radio" id="subdivision-7" name="subdivisions" value="7" class="hidden js-subdivisions-change" data-pattern="1-0-1-0-1-1" autocomplete="off" >
<label for="subdivision-7"><img src="assets/images/metronome/sub7.webp"></label>
<input type="radio" id="subdivision-8" name="subdivisions" value="8" class="hidden js-subdivisions-change" data-pattern="1-1-1-0-1-0" autocomplete="off" >
<label for="subdivision-8"><img src="assets/images/metronome/sub8.webp"></label>
<input type="radio" id="subdivision-9" name="subdivisions" value="9" class="hidden js-subdivisions-change" data-pattern="1-0-1-1-1-0" autocomplete="off" >
<label for="subdivision-9"><img src="assets/images/metronome/sub9.webp"></label>
<input type="radio" id="subdivision-10" name="subdivisions" value="10" class="hidden js-subdivisions-change" data-pattern="1-0-0-1-1-1" autocomplete="off" >
<label for="subdivision-10"><img src="assets/images/metronome/sub10.webp"></label>
<input type="radio" id="subdivision-11" name="subdivisions" value="11" class="hidden js-subdivisions-change" data-pattern="1-1-1-1-0-0" autocomplete="off" >
<label for="subdivision-11"><img src="assets/images/metronome/sub11.webp"></label>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script>
window.bpmTitles = {"20":"Larghissimo","40":"Grave","45":"Lento","50":"Largo","60":"Adagio","70":"Adagietto","85":"Andante","97":"Moderato","109":"Allegretto","132":"Allegro","140":"Vivace","177":"Presto","240":"Prestissimo"};
window.withoutCacheBpm = true;
</script>
<div class="cont">
</div>
<section class="how_to">
<div class="cont">
<h2 class="main_title center">How to use 144 BPM Metronome?</h2>
<div class="text_block">
<ol>
<li>
<h3>Click the "Start" button</h3>
<p>To start a 144 BPM metronome, simply press the "Start" button. If you need to change the number of bits per minute, then simply drag the sliders in the bpm bar to the required number of bpm.</p>
</li>
<li>
<h3>Use the metronome settings</h3>
<p>Customize this 144 BPM metronome with ease, for example you can change the number of beats or toggle subdivisions, as well as set the timer for the metronome.</p>
</li>
</ol>
</div>
</div>
</section>
<section class="bpm_buttons">
<div class="cont">
<h2 class="main_title center">Metronome BPMs</h2>
<div class="grid hide flex">
<a href="1-bpm.html" class="item" ><b>1</b> BPM</a>
<a href="2-bpm.html" class="item" ><b>2</b> BPM</a>
<a href="3-bpm.html" class="item" ><b>3</b> BPM</a>
<a href="4-bpm.html" class="item" ><b>4</b> BPM</a>
<a href="5-bpm.html" class="item" ><b>5</b> BPM</a>
<a href="6-bpm.html" class="item" ><b>6</b> BPM</a>
<a href="7-bpm.html" class="item" ><b>7</b> BPM</a>
<a href="8-bpm.html" class="item" ><b>8</b> BPM</a>
<a href="9-bpm.html" class="item" ><b>9</b> BPM</a>
<a href="10-bpm.html" class="item" ><b>10</b> BPM</a>
<a href="11-bpm.html" class="item" ><b>11</b> BPM</a>
<a href="12-bpm.html" class="item" ><b>12</b> BPM</a>
<a href="13-bpm.html" class="item" ><b>13</b> BPM</a>
<a href="14-bpm.html" class="item" ><b>14</b> BPM</a>
<a href="15-bpm.html" class="item" ><b>15</b> BPM</a>
<a href="16-bpm.html" class="item" ><b>16</b> BPM</a>
<a href="17-bpm.html" class="item" ><b>17</b> BPM</a>
<a href="18-bpm.html" class="item" ><b>18</b> BPM</a>
<a href="19-bpm.html" class="item" ><b>19</b> BPM</a>
<a href="20-bpm.html" class="item" ><b>20</b> BPM</a>
<a href="21-bpm.html" class="item" ><b>21</b> BPM</a>
<a href="22-bpm.html" class="item" ><b>22</b> BPM</a>
<a href="23-bpm.html" class="item" ><b>23</b> BPM</a>
<a href="24-bpm.html" class="item" ><b>24</b> BPM</a>
<a href="25-bpm.html" class="item" ><b>25</b> BPM</a>
<a href="26-bpm.html" class="item" ><b>26</b> BPM</a>
<a href="27-bpm.html" class="item" ><b>27</b> BPM</a>
<a href="28-bpm.html" class="item" ><b>28</b> BPM</a>
<a href="29-bpm.html" class="item" ><b>29</b> BPM</a>
<a href="30-bpm.html" class="item" ><b>30</b> BPM</a>
<a href="31-bpm.html" class="item" ><b>31</b> BPM</a>
<a href="32-bpm.html" class="item" ><b>32</b> BPM</a>
<a href="33-bpm.html" class="item" style="display: none" ><b>33</b> BPM</a>
<a href="34-bpm.html" class="item" style="display: none" ><b>34</b> BPM</a>
<a href="35-bpm.html" class="item" style="display: none" ><b>35</b> BPM</a>
<a href="36-bpm.html" class="item" style="display: none" ><b>36</b> BPM</a>
<a href="37-bpm.html" class="item" style="display: none" ><b>37</b> BPM</a>
<a href="38-bpm.html" class="item" style="display: none" ><b>38</b> BPM</a>
<a href="39-bpm.html" class="item" style="display: none" ><b>39</b> BPM</a>
<a href="40-bpm.html" class="item" style="display: none" ><b>40</b> BPM</a>
<a href="41-bpm.html" class="item" style="display: none" ><b>41</b> BPM</a>
<a href="42-bpm.html" class="item" style="display: none" ><b>42</b> BPM</a>
<a href="43-bpm.html" class="item" style="display: none" ><b>43</b> BPM</a>
<a href="44-bpm.html" class="item" style="display: none" ><b>44</b> BPM</a>
<a href="45-bpm.html" class="item" style="display: none" ><b>45</b> BPM</a>
<a href="46-bpm.html" class="item" style="display: none" ><b>46</b> BPM</a>
<a href="47-bpm.html" class="item" style="display: none" ><b>47</b> BPM</a>
<a href="48-bpm.html" class="item" style="display: none" ><b>48</b> BPM</a>
<a href="49-bpm.html" class="item" style="display: none" ><b>49</b> BPM</a>
<a href="50-bpm.html" class="item" style="display: none" ><b>50</b> BPM</a>
<a href="51-bpm.html" class="item" style="display: none" ><b>51</b> BPM</a>
<a href="52-bpm.html" class="item" style="display: none" ><b>52</b> BPM</a>
<a href="53-bpm.html" class="item" style="display: none" ><b>53</b> BPM</a>
<a href="54-bpm.html" class="item" style="display: none" ><b>54</b> BPM</a>
<a href="55-bpm.html" class="item" style="display: none" ><b>55</b> BPM</a>
<a href="56-bpm.html" class="item" style="display: none" ><b>56</b> BPM</a>
<a href="57-bpm.html" class="item" style="display: none" ><b>57</b> BPM</a>
<a href="58-bpm.html" class="item" style="display: none" ><b>58</b> BPM</a>
<a href="59-bpm.html" class="item" style="display: none" ><b>59</b> BPM</a>
<a href="60-bpm.html" class="item" style="display: none" ><b>60</b> BPM</a>
<a href="61-bpm.html" class="item" style="display: none" ><b>61</b> BPM</a>
<a href="62-bpm.html" class="item" style="display: none" ><b>62</b> BPM</a>
<a href="63-bpm.html" class="item" style="display: none" ><b>63</b> BPM</a>
<a href="64-bpm.html" class="item" style="display: none" ><b>64</b> BPM</a>
<a href="65-bpm.html" class="item" style="display: none" ><b>65</b> BPM</a>
<a href="66-bpm.html" class="item" style="display: none" ><b>66</b> BPM</a>
<a href="67-bpm.html" class="item" style="display: none" ><b>67</b> BPM</a>
<a href="68-bpm.html" class="item" style="display: none" ><b>68</b> BPM</a>
<a href="69-bpm.html" class="item" style="display: none" ><b>69</b> BPM</a>
<a href="70-bpm.html" class="item" style="display: none" ><b>70</b> BPM</a>
<a href="71-bpm.html" class="item" style="display: none" ><b>71</b> BPM</a>
<a href="72-bpm.html" class="item" style="display: none" ><b>72</b> BPM</a>
<a href="73-bpm.html" class="item" style="display: none" ><b>73</b> BPM</a>
<a href="74-bpm.html" class="item" style="display: none" ><b>74</b> BPM</a>
<a href="75-bpm.html" class="item" style="display: none" ><b>75</b> BPM</a>
<a href="76-bpm.html" class="item" style="display: none" ><b>76</b> BPM</a>
<a href="77-bpm.html" class="item" style="display: none" ><b>77</b> BPM</a>
<a href="78-bpm.html" class="item" style="display: none" ><b>78</b> BPM</a>
<a href="79-bpm.html" class="item" style="display: none" ><b>79</b> BPM</a>
<a href="80-bpm.html" class="item" style="display: none" ><b>80</b> BPM</a>
<a href="81-bpm.html" class="item" style="display: none" ><b>81</b> BPM</a>
<a href="82-bpm.html" class="item" style="display: none" ><b>82</b> BPM</a>
<a href="83-bpm.html" class="item" style="display: none" ><b>83</b> BPM</a>
<a href="84-bpm.html" class="item" style="display: none" ><b>84</b> BPM</a>
<a href="85-bpm.html" class="item" style="display: none" ><b>85</b> BPM</a>
<a href="86-bpm.html" class="item" style="display: none" ><b>86</b> BPM</a>
<a href="87-bpm.html" class="item" style="display: none" ><b>87</b> BPM</a>
<a href="88-bpm.html" class="item" style="display: none" ><b>88</b> BPM</a>
<a href="89-bpm.html" class="item" style="display: none" ><b>89</b> BPM</a>
<a href="90-bpm.html" class="item" style="display: none" ><b>90</b> BPM</a>
<a href="91-bpm.html" class="item" style="display: none" ><b>91</b> BPM</a>
<a href="92-bpm.html" class="item" style="display: none" ><b>92</b> BPM</a>
<a href="93-bpm.html" class="item" style="display: none" ><b>93</b> BPM</a>
<a href="94-bpm.html" class="item" style="display: none" ><b>94</b> BPM</a>
<a href="95-bpm.html" class="item" style="display: none" ><b>95</b> BPM</a>
<a href="96-bpm.html" class="item" style="display: none" ><b>96</b> BPM</a>
<a href="97-bpm.html" class="item" style="display: none" ><b>97</b> BPM</a>
<a href="98-bpm.html" class="item" style="display: none" ><b>98</b> BPM</a>
<a href="99-bpm.html" class="item" style="display: none" ><b>99</b> BPM</a>
<a href="100-bpm.html" class="item" style="display: none" ><b>100</b> BPM</a>
<a href="101-bpm.html" class="item" style="display: none" ><b>101</b> BPM</a>
<a href="102-bpm.html" class="item" style="display: none" ><b>102</b> BPM</a>
<a href="103-bpm.html" class="item" style="display: none" ><b>103</b> BPM</a>
<a href="104-bpm.html" class="item" style="display: none" ><b>104</b> BPM</a>
<a href="105-bpm.html" class="item" style="display: none" ><b>105</b> BPM</a>
<a href="106-bpm.html" class="item" style="display: none" ><b>106</b> BPM</a>
<a href="107-bpm.html" class="item" style="display: none" ><b>107</b> BPM</a>
<a href="108-bpm.html" class="item" style="display: none" ><b>108</b> BPM</a>
<a href="109-bpm.html" class="item" style="display: none" ><b>109</b> BPM</a>
<a href="110-bpm.html" class="item" style="display: none" ><b>110</b> BPM</a>
<a href="111-bpm.html" class="item" style="display: none" ><b>111</b> BPM</a>
<a href="112-bpm.html" class="item" style="display: none" ><b>112</b> BPM</a>
<a href="113-bpm.html" class="item" style="display: none" ><b>113</b> BPM</a>
<a href="114-bpm.html" class="item" style="display: none" ><b>114</b> BPM</a>
<a href="115-bpm.html" class="item" style="display: none" ><b>115</b> BPM</a>
<a href="116-bpm.html" class="item" style="display: none" ><b>116</b> BPM</a>
<a href="117-bpm.html" class="item" style="display: none" ><b>117</b> BPM</a>
<a href="118-bpm.html" class="item" style="display: none" ><b>118</b> BPM</a>
<a href="119-bpm.html" class="item" style="display: none" ><b>119</b> BPM</a>
<a href="120-bpm.html" class="item" style="display: none" ><b>120</b> BPM</a>
<a href="121-bpm.html" class="item" style="display: none" ><b>121</b> BPM</a>
<a href="122-bpm.html" class="item" style="display: none" ><b>122</b> BPM</a>
<a href="123-bpm.html" class="item" style="display: none" ><b>123</b> BPM</a>
<a href="124-bpm.html" class="item" style="display: none" ><b>124</b> BPM</a>
<a href="125-bpm.html" class="item" style="display: none" ><b>125</b> BPM</a>
<a href="126-bpm.html" class="item" style="display: none" ><b>126</b> BPM</a>
<a href="127-bpm.html" class="item" style="display: none" ><b>127</b> BPM</a>
<a href="128-bpm.html" class="item" style="display: none" ><b>128</b> BPM</a>
<a href="129-bpm.html" class="item" style="display: none" ><b>129</b> BPM</a>
<a href="130-bpm.html" class="item" style="display: none" ><b>130</b> BPM</a>
<a href="131-bpm.html" class="item" style="display: none" ><b>131</b> BPM</a>
<a href="132-bpm.html" class="item" style="display: none" ><b>132</b> BPM</a>
<a href="133-bpm.html" class="item" style="display: none" ><b>133</b> BPM</a>
<a href="134-bpm.html" class="item" style="display: none" ><b>134</b> BPM</a>
<a href="135-bpm.html" class="item" style="display: none" ><b>135</b> BPM</a>
<a href="136-bpm.html" class="item" style="display: none" ><b>136</b> BPM</a>
<a href="137-bpm.html" class="item" style="display: none" ><b>137</b> BPM</a>
<a href="138-bpm.html" class="item" style="display: none" ><b>138</b> BPM</a>
<a href="139-bpm.html" class="item" style="display: none" ><b>139</b> BPM</a>
<a href="140-bpm.html" class="item" style="display: none" ><b>140</b> BPM</a>
<a href="141-bpm.html" class="item" style="display: none" ><b>141</b> BPM</a>
<a href="142-bpm.html" class="item" style="display: none" ><b>142</b> BPM</a>
<a href="143-bpm.html" class="item" style="display: none" ><b>143</b> BPM</a>
<a href="144-bpm.html" class="item" style="display: none" ><b>144</b> BPM</a>
<a href="145-bpm.html" class="item" style="display: none" ><b>145</b> BPM</a>
<a href="146-bpm.html" class="item" style="display: none" ><b>146</b> BPM</a>
<a href="147-bpm.html" class="item" style="display: none" ><b>147</b> BPM</a>
<a href="148-bpm.html" class="item" style="display: none" ><b>148</b> BPM</a>
<a href="149-bpm.html" class="item" style="display: none" ><b>149</b> BPM</a>
<a href="150-bpm.html" class="item" style="display: none" ><b>150</b> BPM</a>
<a href="151-bpm.html" class="item" style="display: none" ><b>151</b> BPM</a>
<a href="152-bpm.html" class="item" style="display: none" ><b>152</b> BPM</a>
<a href="153-bpm.html" class="item" style="display: none" ><b>153</b> BPM</a>
<a href="154-bpm.html" class="item" style="display: none" ><b>154</b> BPM</a>
<a href="155-bpm.html" class="item" style="display: none" ><b>155</b> BPM</a>
<a href="156-bpm.html" class="item" style="display: none" ><b>156</b> BPM</a>
<a href="157-bpm.html" class="item" style="display: none" ><b>157</b> BPM</a>
<a href="158-bpm.html" class="item" style="display: none" ><b>158</b> BPM</a>
<a href="159-bpm.html" class="item" style="display: none" ><b>159</b> BPM</a>
<a href="160-bpm.html" class="item" style="display: none" ><b>160</b> BPM</a>
<a href="161-bpm.html" class="item" style="display: none" ><b>161</b> BPM</a>
<a href="162-bpm.html" class="item" style="display: none" ><b>162</b> BPM</a>
<a href="163-bpm.html" class="item" style="display: none" ><b>163</b> BPM</a>
<a href="164-bpm.html" class="item" style="display: none" ><b>164</b> BPM</a>
<a href="165-bpm.html" class="item" style="display: none" ><b>165</b> BPM</a>
<a href="166-bpm.html" class="item" style="display: none" ><b>166</b> BPM</a>
<a href="167-bpm.html" class="item" style="display: none" ><b>167</b> BPM</a>
<a href="168-bpm.html" class="item" style="display: none" ><b>168</b> BPM</a>
<a href="169-bpm.html" class="item" style="display: none" ><b>169</b> BPM</a>
<a href="170-bpm.html" class="item" style="display: none" ><b>170</b> BPM</a>
<a href="171-bpm.html" class="item" style="display: none" ><b>171</b> BPM</a>
<a href="172-bpm.html" class="item" style="display: none" ><b>172</b> BPM</a>
<a href="173-bpm.html" class="item" style="display: none" ><b>173</b> BPM</a>
<a href="174-bpm.html" class="item" style="display: none" ><b>174</b> BPM</a>
<a href="175-bpm.html" class="item" style="display: none" ><b>175</b> BPM</a>
<a href="176-bpm.html" class="item" style="display: none" ><b>176</b> BPM</a>
<a href="177-bpm.html" class="item" style="display: none" ><b>177</b> BPM</a>
<a href="178-bpm.html" class="item" style="display: none" ><b>178</b> BPM</a>
<a href="179-bpm.html" class="item" style="display: none" ><b>179</b> BPM</a>
<a href="180-bpm.html" class="item" style="display: none" ><b>180</b> BPM</a>
<a href="181-bpm.html" class="item" style="display: none" ><b>181</b> BPM</a>
<a href="182-bpm.html" class="item" style="display: none" ><b>182</b> BPM</a>
<a href="183-bpm.html" class="item" style="display: none" ><b>183</b> BPM</a>
<a href="184-bpm.html" class="item" style="display: none" ><b>184</b> BPM</a>
<a href="185-bpm.html" class="item" style="display: none" ><b>185</b> BPM</a>
<a href="186-bpm.html" class="item" style="display: none" ><b>186</b> BPM</a>
<a href="187-bpm.html" class="item" style="display: none" ><b>187</b> BPM</a>
<a href="188-bpm.html" class="item" style="display: none" ><b>188</b> BPM</a>
<a href="189-bpm.html" class="item" style="display: none" ><b>189</b> BPM</a>
<a href="190-bpm.html" class="item" style="display: none" ><b>190</b> BPM</a>
<a href="191-bpm.html" class="item" style="display: none" ><b>191</b> BPM</a>
<a href="192-bpm.html" class="item" style="display: none" ><b>192</b> BPM</a>
<a href="193-bpm.html" class="item" style="display: none" ><b>193</b> BPM</a>
<a href="194-bpm.html" class="item" style="display: none" ><b>194</b> BPM</a>
<a href="195-bpm.html" class="item" style="display: none" ><b>195</b> BPM</a>
<a href="196-bpm.html" class="item" style="display: none" ><b>196</b> BPM</a>
<a href="197-bpm.html" class="item" style="display: none" ><b>197</b> BPM</a>
<a href="198-bpm.html" class="item" style="display: none" ><b>198</b> BPM</a>
<a href="199-bpm.html" class="item" style="display: none" ><b>199</b> BPM</a>
<a href="200-bpm.html" class="item" style="display: none" ><b>200</b> BPM</a>
<a href="201-bpm.html" class="item" style="display: none" ><b>201</b> BPM</a>
<a href="202-bpm.html" class="item" style="display: none" ><b>202</b> BPM</a>
<a href="203-bpm.html" class="item" style="display: none" ><b>203</b> BPM</a>
<a href="204-bpm.html" class="item" style="display: none" ><b>204</b> BPM</a>
<a href="205-bpm.html" class="item" style="display: none" ><b>205</b> BPM</a>
<a href="206-bpm.html" class="item" style="display: none" ><b>206</b> BPM</a>
<a href="207-bpm.html" class="item" style="display: none" ><b>207</b> BPM</a>
<a href="208-bpm.html" class="item" style="display: none" ><b>208</b> BPM</a>
<a href="209-bpm.html" class="item" style="display: none" ><b>209</b> BPM</a>
<a href="210-bpm.html" class="item" style="display: none" ><b>210</b> BPM</a>
<a href="211-bpm.html" class="item" style="display: none" ><b>211</b> BPM</a>
<a href="212-bpm.html" class="item" style="display: none" ><b>212</b> BPM</a>
<a href="213-bpm.html" class="item" style="display: none" ><b>213</b> BPM</a>
<a href="214-bpm.html" class="item" style="display: none" ><b>214</b> BPM</a>
<a href="215-bpm.html" class="item" style="display: none" ><b>215</b> BPM</a>
<a href="216-bpm.html" class="item" style="display: none" ><b>216</b> BPM</a>
<a href="217-bpm.html" class="item" style="display: none" ><b>217</b> BPM</a>
<a href="218-bpm.html" class="item" style="display: none" ><b>218</b> BPM</a>
<a href="219-bpm.html" class="item" style="display: none" ><b>219</b> BPM</a>
<a href="220-bpm.html" class="item" style="display: none" ><b>220</b> BPM</a>
<a href="221-bpm.html" class="item" style="display: none" ><b>221</b> BPM</a>
<a href="222-bpm.html" class="item" style="display: none" ><b>222</b> BPM</a>
<a href="223-bpm.html" class="item" style="display: none" ><b>223</b> BPM</a>
<a href="224-bpm.html" class="item" style="display: none" ><b>224</b> BPM</a>
<a href="225-bpm.html" class="item" style="display: none" ><b>225</b> BPM</a>
<a href="226-bpm.html" class="item" style="display: none" ><b>226</b> BPM</a>
<a href="227-bpm.html" class="item" style="display: none" ><b>227</b> BPM</a>
<a href="228-bpm.html" class="item" style="display: none" ><b>228</b> BPM</a>
<a href="229-bpm.html" class="item" style="display: none" ><b>229</b> BPM</a>
<a href="230-bpm.html" class="item" style="display: none" ><b>230</b> BPM</a>
<a href="231-bpm.html" class="item" style="display: none" ><b>231</b> BPM</a>
<a href="232-bpm.html" class="item" style="display: none" ><b>232</b> BPM</a>
<a href="233-bpm.html" class="item" style="display: none" ><b>233</b> BPM</a>
<a href="234-bpm.html" class="item" style="display: none" ><b>234</b> BPM</a>
<a href="235-bpm.html" class="item" style="display: none" ><b>235</b> BPM</a>
<a href="236-bpm.html" class="item" style="display: none" ><b>236</b> BPM</a>
<a href="237-bpm.html" class="item" style="display: none" ><b>237</b> BPM</a>
<a href="238-bpm.html" class="item" style="display: none" ><b>238</b> BPM</a>
<a href="239-bpm.html" class="item" style="display: none" ><b>239</b> BPM</a>
<a href="240-bpm.html" class="item" style="display: none" ><b>240</b> BPM</a>
</div>
<div class="more_btn"><button type="button" data-count-segment="32">Show more</button></div>
</div>
</section>
<section class="rate" data-section="bpm.144">
<div class="cont">
<div class="grid flex">
<div class="item"><div class="title">Rate Metronome-online.com</div></div>
<div class="item">
<div class="stars flex">
<a href="javascript:void(0)" class="star " data-value="1" data-desc="Awful">
<svg width="24" height="24" viewBox="2 24 27 24">
<path d="M28.27 32.8a.457.457 0 00-.368-.31l-8.244-1.199-3.687-7.47a.455.455 0 00-.816 0l-3.687 7.47-8.244 1.199a.457.457 0 00-.253.777l5.966 5.815-1.41 8.211a.457.457 0 00.662.48l7.374-3.876 7.374 3.876a.456.456 0 00.66-.48l-1.407-8.21 5.965-5.816a.456.456 0 00.115-.467z"/>
</svg>
</a>
<a href="javascript:void(0)" class="star " data-value="2" data-desc="Poor">
<svg width="24" height="24" viewBox="2 24 27 24">
<path d="M28.27 32.8a.457.457 0 00-.368-.31l-8.244-1.199-3.687-7.47a.455.455 0 00-.816 0l-3.687 7.47-8.244 1.199a.457.457 0 00-.253.777l5.966 5.815-1.41 8.211a.457.457 0 00.662.48l7.374-3.876 7.374 3.876a.456.456 0 00.66-.48l-1.407-8.21 5.965-5.816a.456.456 0 00.115-.467z"/>
</svg>
</a>
<a href="javascript:void(0)" class="star " data-value="3" data-desc="Average">
<svg width="24" height="24" viewBox="2 24 27 24">
<path d="M28.27 32.8a.457.457 0 00-.368-.31l-8.244-1.199-3.687-7.47a.455.455 0 00-.816 0l-3.687 7.47-8.244 1.199a.457.457 0 00-.253.777l5.966 5.815-1.41 8.211a.457.457 0 00.662.48l7.374-3.876 7.374 3.876a.456.456 0 00.66-.48l-1.407-8.21 5.965-5.816a.456.456 0 00.115-.467z"/>