-
Notifications
You must be signed in to change notification settings - Fork 0
/
pricing.html
971 lines (927 loc) · 57.5 KB
/
pricing.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Pricing first cell</title>
<link rel="stylesheet" href="../styles/pricing_first_cell.css">
<link rel="stylesheet" href="../styles/pricing_publish.css">
<link rel="stylesheet" href="../styles/huckberry_review_publish.css">
<link rel="stylesheet" href="../styles/pricing_table_publish.css">
<link rel="stylesheet" href="../styles/pricing_analyze.css">
<link rel="stylesheet" href="../styles/customer_review_div_analyze.css">
<link rel="stylesheet" href="../styles/table_analyze_page.css">
<link rel="stylesheet" href="../styles/Last_cell_before_footer.css">
<link rel="stylesheet" href="../styles/footer.css">
<link rel="stylesheet" href="Last_cell_before_footer.css">
<link rel="stylesheet" href="../styles/common.css">
<link rel="stylesheet" href="../styles/pricing_common.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/249783f98b.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- navigation starts here -->
<nav>
<div class="logo">
<a href="./index.html"><img class="logo_img" src="../images/Buffer-Logo.png" alt=""></a>
<h1>buffer</h1>
</div>
<ul class="nav_links">
<li><a class="prd" href="">Products</a></li>
<li><a href="./pricing.html">Pricing</a></li>
<li><a href="">Resources</a></li>
<li><a href="./about_us.html">About</a></li>
<li><a href="./customers.html">Customers</a></li>
<li>
<ul class="btn_links">
<li><button class="btn_buff">Try Buffer for Business</button></li>
<li><button class="btn_log">Log In <a href="./login.html"></a></button></li>
</ul>
</li>
</ul>
<div class="burger"><i class="fa fa-bars fa-2x" aria-hidden="true"></i></div>
</nav>
<div class="product_items">
<div class="products">
<div>
<h1><img src="../images/Publish.JPG" alt="publish"> Publish</h1>
<a href="">Plan,Collaboarate and publish thumb-stopping content</a>
</div>
<div>
<h1><img src="../images/analyze.JPG" alt="analyse"> Analyze</h1>
<a href="">Analyze social media performance and create gorgeous reports</a>
</div>
</div>
<div class="cross">
<i class="fa fa-times" aria-hidden="true"></i>
</div>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
</div>
<!-- --------First cell starts here ---------------- -->
<div class="pricing_first_cell_main">
<div>
<h1>Your full stack of brand building tools</h1>
</div>
<div>
<div id="publish_switch">
<img src="../images/Publish.JPG" >
<h2>Publish</h2>
</div>
<div id="analyze_switch">
<img src="../images/analyze.JPG" >
<h2>Analyze</h4>
</div>
</div>
</div>
<!-- --------***********First cell ends here *******---------------- -->
<!-----------------start for Pricing -Publish div part--------------------->
<div class="main_container_publish" id="main_container">
<!-- ------------container for toggle----------- -->
<div class="container_for_toggle">
<p>monthly billing</p>
<div class="toggle_switch ">
<label class="switch">
<input type="checkbox" class="visually-hidden" >
<div class="switch_button"> </div>
</label>
</div>
<p>annual billing <br><span><i>save up to 20%</i></span></p>
</div>
<div class="pricing_publish_main" id="pricing_publish_flex_id">
<div>
<div>
<h2>Pro</h2>
</div>
<div>
<img src="https://static.buffer.com/marketing/static/illustrations/publish-pricing-pro@2x.jpeg">
</div>
<div>
<h1 id="bill">$15<span style="font-size: 15px;"> /mo </span></h1>
<p id="duration">Billed monthly</p>
</div>
<div><span>Ideal for getting started</span> </div>
<div>
<ul>
<li> <span><i class="fa fa-check-circle" aria-hidden="true"></i> </span> 8 social channels</li>
<li> <span><i class="fa fa-check-circle" aria-hidden="true"></i> </span> 100 scheduled posts</li>
<li> <span><i class="fa fa-check-circle" aria-hidden="true"></i> </span> 1 user</li>
</ul>
</div>
<div> <button>Start a free 14-day trial</button> </div>
<div><span>or <u>see more features</u> </span></div>
</div>
<div>
<div>
<h2>Premium</h2>
</div>
<div>
<img src="https://static.buffer.com/marketing/static/illustrations/publish-pricing-premium@2x.jpeg">
</div>
<div>
<h1 id="bill">$65<span style="font-size: 15px;"> /mo </span></h1>
<p id="duration">Billed monthly</p>
</div>
<div><span>Ideal for growing brands </span> </div>
<div>
<ul>
<li> <span><i class="fa fa-check-circle" aria-hidden="true"></i> </span> 8 social channels</li>
<li> <span><i class="fa fa-check-circle" aria-hidden="true"></i> </span> 2,000 scheduled posts</li>
<li> <span><i class="fa fa-check-circle" aria-hidden="true"></i> </span> 2 user</li>
</ul>
</div>
<div> <button>Start a free 14-day trial</button> </div>
<div><span>or <u>see more features</u> </span></div>
</div>
<div>
<div>
<h2>Business</h2>
</div>
<div>
<img src="https://static.buffer.com/marketing/static/illustrations/publish-pricing-business@2x.jpeg">
</div>
<div>
<h1> $99 <span style="font-size: 15px;"> /mo </span></h1>
<p>Billed monthly</p>
</div>
<div><span>Ideal for larger teams</span> </div>
<div>
<ul>
<li> <span><i class="fa fa-check-circle" aria-hidden="true"></i> </span> 25 social channels</li>
<li> <span><i class="fa fa-check-circle" aria-hidden="true"></i> </span> 2,000 scheduled posts</li>
<li> <span><i class="fa fa-check-circle" aria-hidden="true"></i> </span> 6 user</li>
</ul>
</div>
<div> <button>Start a free 14-day trial</button> </div>
<div>or <u>see more features</u> </div>
</div>
</div>
<!-------------------*********-pricing - publish part ends here -***********---------->
<!-- *************Huckberry wala div starts here ********** -->
<div class="box4" id="one">
<div class="box4_1">
<img class="box4_img" src="https://static.buffer.com/marketing/static/testimonials/luis-cancel-huckberry.png">
</div>
<div class="wrap_1">
<span class="quotes"><i class="fa fa-quote-left fa-3x" aria-hidden="true"></i></span>
<h1>Buffer has made sharing our story and building our brand on social media so much easier.</h1>
<h3>HUCKBERRY</h3>
<p class="box4_p"><b>LUIS CANCEL</b>,Managing Editor</p>
</div>
</div>
<!-- *********************Tables starts from here******************** -->
<!-- Table starts here ***************************************** -->
<div class="table_divs ">
<h1>Compare Plans, Side by Side</h1>
<p>Easy to switch at any time</p>
</div>
<div class="table_divs">
<table>
<thead>
<tr class="table_heading table_rows_height">
<th class="table_head_cell_length"></th>
<td class="table_cell_length">Pro</td>
<td class="table_cell_length">Premium</td>
<td class="table_cell_length">Business</td>
</tr>
<tr id="vanishes_for_mobile" class="table_rows_height">
<th class="border_botom_for_head table_head_cell_length">The Basics</th>
<td class="border_botom_for_head table_cell_length"><button class="sign_up_button_for_table">Start Trial</button></td>
<td class="border_botom_for_head table_cell_length"><button class="sign_up_button_for_table">Start Trial</button></td>
<td class="border_botom_for_head table_cell_length"><button class="sign_up_button_for_table">Start Trial</button></td>
</tr>
</thead>
<tbody>
<tr class="table_rows_height">
<th id="top_row" class="table_head_cell_length "> <span class="arrow_style"> </span> Monthly Price </th>
<td class="table_cell_length">$15</td>
<td class="table_cell_length">$65</td>
<td class="table_cell_length">$99</td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Social Accounts </th>
<td class="table_cell_length">8</td>
<td class="table_cell_length">8</td>
<td class="table_cell_length">25</td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span> Social Account </th>
<td class="table_cell_length">100</td>
<td class="table_cell_length">2,000</td>
<td class="table_cell_length">2,000</td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Users
</th>
<td class="table_cell_length">1</td>
<td class="table_cell_length">2</td>
<td class="table_cell_length">6</td>
</tr>
</tbody>
</table>
</div>
<div class="table_divs">
<table>
<thead>
<tr class="table_rows_height">
<th class="border_botom_for_head">Social Networks</th>
<td class="border_botom_for_head"></td>
<td class="border_botom_for_head"></td>
<td class="border_botom_for_head"></td>
</tr>
</thead>
<tbody>
<tr class="table_rows_height">
<th id="first_col" class="table_head_cell_lengt"> <span class="arrow_style"> > </span>Instagram </th>
<td class="table_cell_length"> <span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"> <span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"> <span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Facebook </th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Twitter </th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>LinkedIn </th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Pinterest </th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
</tbody>
</table>
</div>
<div class="table_divs">
<table>
<thead>
<tr class="table_rows_height">
<th class="border_botom_for_head">Planning and Scheduling</th>
<td class="border_botom_for_head"></td>
<td class="border_botom_for_head"></td>
<td class="border_botom_for_head"></td>
</tr>
</thead>
<tbody>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Directly Schedule Posts
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Create a Posting Schedule
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Tailored Posts for Each Social Network
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Calendar View
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Custom Video Thumbnails
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Instagram First Comment
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Instagram Tagging
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Instagram Hashtag Manager
</th>
<td class="table_cell_length"><span class="check_color">—</span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Instagram Stories
</th>
<td class="table_cell_length"><span class="check_color">—</span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Instagram Shop Grid
</th>
<td class="table_cell_length"><span class="check_color">—</span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Create and Manage Draft Posts
</th>
<td class="table_cell_length"><span class="check_color">—</span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Posts Report
</th>
<td class="table_cell_length">Full history</td>
<td class="table_cell_length">Full history</td>
<td class="table_cell_length">Full history</td>
</tr>
</tbody>
</table>
</div>
<div class="table_divs">
<table>
<thead>
<tr class="table_rows_height">
<th class="border_botom_for_head">Engagement</th>
<td class="border_botom_for_head"></td>
<td class="border_botom_for_head"></td>
<td class="border_botom_for_head"></td>
</tr>
</thead>
<tbody>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Grid view
</th>
<td class="table_cell_length">Coming soon</td>
<td class="table_cell_length">Coming soon</td>
<td class="table_cell_length">Coming soon</td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Comment sentiment
</th>
<td class="table_cell_length">Coming soon</td>
<td class="table_cell_length">Coming soon</td>
<td class="table_cell_length">Coming soon</td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Hotkeys
</th>
<td class="table_cell_length">Coming soon</td>
<td class="table_cell_length">Coming soon</td>
<td class="table_cell_length">Coming soon</td>
</tr>
</tbody>
</table>
</div>
<div class="table_divs">
<table>
<thead>
<tr class="table_rows_height">
<th class="border_botom_for_head">Team Management</th>
<td class="border_botom_for_head"></td>
<td class="border_botom_for_head"></td>
<td class="border_botom_for_head"></td>
</tr>
</thead>
<tbody>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Invite Additional Users
</th>
<td class="table_cell_length"><span class="check_color">—</span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Assign Access and Permissions
</th>
<td class="table_cell_length"><span class="check_color">—</span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Approval Workflow
</th>
<td class="table_cell_length"><span class="check_color">—</span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
</tbody>
</table>
</div>
<div class="table_divs">
<table>
<thead>
<tr class="table_rows_height">
<th class="border_botom_for_head">Integrations and Apps</th>
<td class="border_botom_for_head"></td>
<td class="border_botom_for_head"></td>
<td class="border_botom_for_head"></td>
</tr>
</thead>
<tbody>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Browser Extension
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>iOS and Android Apps
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>60+ Third-Party Integrations
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Two Factor Authentication
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
</tbody>
</table>
</div>
<div class="table_divs">
<table>
<thead>
<tr class="table_rows_height">
<th class="border_botom_for_head">Support & Community</th>
<td class="border_botom_for_head"></td>
<td class="border_botom_for_head"></td>
<td class="border_botom_for_head"></td>
</tr>
</thead>
<tbody>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Self-Service Knowledge Base
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Social Media Support
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Email Support
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length "> <span class="arrow_style"> > </span>Buffer Community
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
</tbody>
<tfoot>
<tr class="table_heading table_rows_height">
<th></th>
<td class="table_cell_length">Pro</td>
<td class="table_cell_length">Premium</td>
<td class="table_cell_length">Business</td>
</tr>
<tr id="vanishes_for_mobile" class="table_rows_height">
<th></th>
<td class="table_cell_length"><button class="sign_up_button_for_table">Start trial</button> </a>
</td>
<td class="table_cell_length"><button class="sign_up_button_for_table">Start trial</button> </a>
</td>
<td class="table_cell_length"><button class="sign_up_button_for_table">Start trial</button> </a>
</td>
</tr>
</tfoot>
</table>
</div>
</div>
<!----------- Table ends here ------>
<!-- ***************Container for publish ends here****************** -->
<!-- ***************Container for analyze starts here here****************** -->
<div class="main_container_analyze">
<!-- <---------------start for Pricing Analyze div part--------------------->
<div class="container_for_toggle">
monthly billing
<div class="toggle_switch ">
<label class="switch">
<input type="checkbox" class="visually-hidden" >
<div class="switch_button"> </div>
</label>
</div>
annual billing <br> save up to 20%
</div>
<!-- *********toggle switch ends here***** -->
<div class="pricing_analyze_box_main">
<div>
<div>
<h2>Pro</h2>
</div>
<div>
<img src="https://static.buffer.com/marketing/static/illustrations/analyze-pricing-pro@2x.jpeg">
</div>
<div>
<h1>$15<span style="font-size: 15px;"> /mo </span></h1>
<p>Billed monthly</p>
</div>
<div><span>Ideal for getting started</span> </div>
<div>
<ul>
<li> <span><i class="fa fa-check-circle" aria-hidden="true"></i> </span> 8 social channels</li>
<li> <span><i class="fa fa-check-circle" aria-hidden="true"></i> </span> In-depth social analytics</li>
<li> <span><i class="fa fa-check-circle" aria-hidden="true"></i> </span> Strategy recommendations</li>
<li> <span><i class="fa fa-check-circle" aria-hidden="true"></i> </span> Unlimited reports</li>
</ul>
</div>
<div> <button>Start a free 14-day trial</button> </div>
<div><span>or <u>see more features</u> </span></div>
</div>
<div style="min-height: 700px;">
<div>
<h2>Premium</h2>
</div>
<div>
<img src="https://static.buffer.com/marketing/static/illustrations/analyze-pricing-premium@2x.jpg">
</div>
<div>
<h1>$65<span style="font-size: 15px;"> /mo </span></h1>
<p>Billed monthly</p>
</div>
<div><span>Ideal for growing brands </span> </div>
<div>
<ul>
<li> <span><i class="fa fa-check-circle" aria-hidden="true"></i> </span> 10 social channels</li>
<li> <span><i class="fa fa-check-circle" aria-hidden="true"></i> </span> Includes Stories analytics</li>
<li> <span><i class="fa fa-check-circle" aria-hidden="true"></i> </span> Strategy recommendations</li>
<li> <span><i class="fa fa-check-circle" aria-hidden="true"></i> </span> Unlimited reports</li>
<li> <span><i class="fa fa-check-circle" aria-hidden="true"></i> </span> Report white labeling</li>
<li> <span><i class="fa fa-check-circle" aria-hidden="true"></i> </span> Shopify integration</li>
</ul>
</div>
<div> <button>Start a free 14-day trial</button> </div>
<div><span>or <u>see more features</u> </span></div>
</div>
</div>
<!----------------------------pricing - analyze wala part ends here ----------------------->
<div class="box4" id="two">
<div class="box4_1">
<img class="box4_img" src="https://static.buffer.com/marketing/static/testimonials/ben_terry-access-ventures@2x.png">
</div>
<div class="wrap_1">
<span class="quotes"><i class="fa fa-quote-left fa-3x" aria-hidden="true"></i></span>
<h1>Analyze helps us work smarter, not harder. We get insight into what is working on social.</h1>
<h3>Access Ventures</h3>
<p class="box4_p"><b>BEN TERRY</b>, Director of marketing</p>
</div>
</div>
<!-- ************* customer review part ends here************************* -->
<!-- Table starts here ***************************************** -->
<div class="table_divs">
<h1>See what Analyze has to offer</h1>
<p>In-depth social media analytics & reporting for growing brands</p>
</div>
<div class="table_divs">
<table>
<thead>
<tr class="table_heading table_rows_height">
<th class="table_head_cell_length" scope="row"></th>
<td class="table_cell_length">Pro</td>
<td class="table_cell_length">Premium</td>
</tr>
<tr id="vanishes_for_mobile" class="table_rows_height">
<th class="border_botom_for_head">The Basics</th>
<td class="border_botom_for_head"><button class="sign_up_button_for_table">Start Trial</button></td>
<td class="border_botom_for_head"><button class="sign_up_button_for_table">Start Trial</button></td>
</tr>
</thead>
<tbody>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> </span> Monthly Price </th>
<td class="table_cell_length">$35</td>
<td class="table_cell_length">$50</td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Social Accounts </th>
<td class="table_cell_length">8</td>
<td class="table_cell_length">10</td>
</tr>
</tbody>
</table>
</div>
<div class="table_divs">
<table>
<thead>
<tr class="table_rows_height">
<th class="border_botom_for_head table_head_cell_length">Channels</th>
<td class="border_botom_for_head"></td>
<td class="border_botom_for_head"></td>
</tr>
</thead>
<tbody>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Instagram Business Profiles </th>
<td class="table_cell_length"> <span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"> <span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Facebook Pages </th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Twitter Profiles </th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>LinkedIn Pages </th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Shopify Store </th>
<td class="table_cell_length"><span class="check_color">—</span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
</tbody>
</table>
</div>
<div class="table_divs">
<table>
<thead>
<tr class="table_rows_height">
<th class="border_botom_for_head">Analytics</th>
<td class="border_botom_for_head"></td>
<td class="border_botom_for_head"></td>
</tr>
</thead>
<tbody>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Performance Overview
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Individual Post Analytics
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Boosted Post Insights
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Hashtag Performance
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Audience Demographics
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Answers
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Instagram Stories Analytics
</th>
<td class="table_cell_length"><span class="check_color">—</span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
</tbody>
</table>
</div>
<div class="table_divs">
<table>
<thead>
<tr class="table_rows_height">
<th class="border_botom_for_head">Reporting</th>
<td class="border_botom_for_head"></td>
<td class="border_botom_for_head"></td>
</tr>
</thead>
<tbody>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Create Custom Reports
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Export as PDF, images, or CSV
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Add a Logo
</th>
<td class="table_cell_length"><span class="check_color">—</span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Cover Page
</th>
<td class="table_cell_length"><span class="check_color">—</span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
</tbody>
</table>
</div>
<div class="table_divs">
<table>
<thead>
<tr class="table_rows_height">
<th class="border_botom_for_head">Support & Community</th>
<td class="border_botom_for_head"></td>
<td class="border_botom_for_head"></td>
</tr>
</thead>
<tbody>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Self-Service Knowledge Base
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Social Media Support
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Email Support
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
<tr class="table_rows_height">
<th class="table_head_cell_length " scope="row"> <span class="arrow_style"> > </span>Buffer Community
</th>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
<td class="table_cell_length"><span class="check_color"><i class="fa fa-check-circle" aria-hidden="true"></i></span></td>
</tr>
</tbody>
<tfoot>
<tr class="table_heading">
<th></th>
<td class="table_cell_length">Pro</td>
<td class="table_cell_length">Premium</td>
</tr>
<tr id="vanishes_for_mobile">
<th></th>
<td class="table_cell_length"><button class="sign_up_button_for_table">Start trial</button> </a>
</td>
<td class="table_cell_length"><button class="sign_up_button_for_table">Start trial</button> </a>
</td>
</tr>
</tfoot>
</table>
</div>
</div>
<!--*************** Table ends here ***************************************** -->
<div class="started_now">
<div>
<h1>Join 75,000+ growing businesses that use Buffer to build their brands</h1>
</div>
<button>Get started now</button>
<div class="credit">
<p><i class="fa fa-check" aria-hidden="true"></i> No credit card required</p>
<p><i class="fa fa-check" aria-hidden="true"></i> 14-day free trail</p>
<p><i class="fa fa-check" aria-hidden="true"></i> Cancel anytime</p>
</div>
</div>
<!-- ******************footer starts here***************** -->
<div class="footer">
<div class="block_2">
<div class="list_1">
<h3>Products</h3>
<p>Publish</p>
<p>Analyze</p>
<p>Pricing</p>
</div>
<div class="list_2">
<h3>Products</h3>
<p>About Us</p>
<p>Customers</p>
<p>Community</p>
<p>Request a Feature</p>
<p>Nonprofits</p>
<p>Careers</p>
<p>Buffer Brand kit</p>
<p>Press</p>
<p>Accessibility</p>
</div>
<div class="list_3">
<h3>Support</h3>
<p>Help Center</p>
<p>Webinars</p>
<p>Tweet @ Us</p>
<p>Request a Feature</p>
<p>Status</p>
<p>iOS App</p>
<p>Android App</p>
<p>COVID-19 Assistance</p>
</div>
<div class="list_4">
<h3>Resources</h3>
<p>Browser Extension</p>
<p>Resource Center</p>
<p>Content Library</p>
<p>Request a Feature</p>
<p>Remix <span class="new">new</span></p>
<p>Podcast</p>
</div>
<div class="list_4">
<h3>Transparency</h3>
<p>Culture Blog</p>
<p>Salary Calculator</p>
<p>Transparent Salaries</p>
<p>Revenue Dashboard</p>
<p>Diversity Dashboard</p>
<p>Product Roadmap</p>
</div>
</div>
<div class="block_1">
<div class="block_1_1">
<a href="http://www.buffer.com/">
<h1>Buffer</h1>
</a>
</div>
<div class="footer_sub_2">
<div class="footer_sub_2_1 ">
<div> <a href="https://instagram.com/buffer"><i class="fa fa-instagram fa-2x " aria-hidden="true">
</i></a>
</div>
<div> <a href="https://www.facebook.com/bufferapp"><i class="fa fa-facebook fa-2x" aria-hidden="true">
</i> </a>
</div>
<div> <a href="https://twitter.com/buffer"><i class="fa fa-twitter fa-2x" aria-hidden="true">
</i> </a>
</div>
<div><a href="https://www.linkedin.com/company/bufferapp"><i class="fa fa-linkedin-square fa-2x" aria-hidden="true"></i>
</a>
</div>
<div><a href="https://www.pinterest.com/bufferapp/"><i class="fa fa-pinterest fa-2x" aria-hidden="true"></i>
</a>
</div>
</div>
<div class="footer_sub_2_2">
<p>Copyright ©
<!-- -->2020
<!-- -->Buffer<span> | </span>Privacy<span> | </span>Terms<span> | </span>Security
</p>
</div>
</div>
<script src="../javascript/pricing.js"></script>
<script src="../javascript/common.js"></script>
</body>
</html>