forked from codelucas/newspaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbhg.com1.html
More file actions
2187 lines (950 loc) · 67.5 KB
/
Copy pathbhg.com1.html
File metadata and controls
2187 lines (950 loc) · 67.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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>
<!--[if lt IE 7 ]><html lang="en" class="lt-ie9 ie6 no-js"><![endif]-->
<!--[if IE 7 ]><html lang="en" class="lt-ie9 ie7 no-js"><![endif]-->
<!--[if IE 8 ]><html lang="en" class="lt-ie9 ie8 no-js"><![endif]-->
<!--[if IE 9 ]><html lang="en" class="ie9 no-js"><![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--><html lang="en" class="no-js"><!--<![endif]-->
<head>
<title data-socialtitle="" data-socialdescription="">Centerpiece and Tabletop Decoration Ideas for Fall from Better Homes and Gardens</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:site_name" content="Better Homes & Gardens"/>
<meta name="description" content="These easy centerpieces and simple tabletop decorations will add creative fall flair to any table in your home.">
<meta property="fb:admins" content="1561750258">
<meta property="fb:app_id" content="85037231102">
<meta property="fb:page_id" content="72571226018">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@bhg">
<meta property="og:title" content="Centerpiece and Tabletop Decoration Ideas for Fall">
<meta property="og:description" content="These easy centerpieces and simple tabletop decorations will add creative fall flair to any table in your home.">
<meta property="og:type" content="article">
<meta property="og:url" content="http://www.bhg.com/thanksgiving/indoor-decorating/centerpiece-and-tabletop-decoration-ideas-fall/">
<meta property="og:image" content="http://images.meredith.com/content/dam/mwl/Images/2010/09/101203725.jpg.rendition.largest.jpg">
<meta property="og:site_name" content="Better Homes and Gardens">
<link rel="canonical" href="http://www.bhg.com/thanksgiving/indoor-decorating/centerpiece-and-tabletop-decoration-ideas-fall/">
<link rel="shortcut icon" href="http://images.meredith.com/web/bhg/bhg.ico">
<link rel="apple-touch-icon" href="http://images.meredith.com/content/dam/bhg/Images/assets/apple_icons/bhg_57x57.png"/>
<link rel="apple-touch-icon" sizes="72x72" href="http://images.meredith.com/content/dam/bhg/Images/assets/apple_icons/bhg_72x72.png"/>
<link rel="apple-touch-icon" sizes="114x114" href="http://images.meredith.com/content/dam/bhg/Images/assets/apple_icons/bhg_114x114.png"/>
<link href="http://s1.mdpcdn.com/etc/designs/bhg/assets/core-5.27.30.min.css" rel="stylesheet">
<script src="http://s2.mdpcdn.com/etc/designs/bhg/assets/head-5.27.30.min.js"></script>
</head>
<body class="shell bhg slideshow2 threeColumn" data-shareimage="http://images.meredith.com/content/dam/mwl/Images/2010/09/101203725.jpg.rendition.largest.jpg">
<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-WMWB88" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-WMWB88');</script>
<!-- End Google Tag Manager -->
<div class="parsys globalheaderipar iparsys"><div class="section"><div class="new"></div>
</div><div class="iparys_inherited"><div class="parsys globalheaderipar iparsys"><div class="globalheader2 section">
<header id="siteHeader" class="clearfix">
<div id="logo-teaser-search" class="row">
<div class="large-3 medium-3 small-8 columns">
<div class="logo">
<a href="/" data-from-atg="false" class="bhgLogo">
Better Homes and Gardens
</a>
</div>
</div>
<div class="large-8 medium-8 small-8 columns">
<div class="headerTeaser teaser2 parbase">
<div id="_content_campaigns_bhg_HPTopRollover" class="teaser rollOver" data-script="http://s2.mdpcdn.com/etc/bhg/common/campaign.HPTopRollover.teasercriteria.01032015.js"></div>
</div>
</div>
<div class="large-5 medium-5 show-for-medium-up columns">
<div class="headersearch">
<div class="sitesearch searchBar clearfix">
<form id="topsearch" action="http://search.bhg.com/search/s" name="searchbhg" method="get">
<input type="text" name="q" id="search" class="searchBox" placeholder="Search BHG.com"/>
<input type="submit" value="Go" class="searchSubmit"/>
</form>
</div></div>
<div id="headerAdDiv" class="clearfix">
</div>
</div>
</div>
<section class="navContainer">
<div class="topnavigation3 topNav">
<nav id="superNav" class="superNav row" data-url="/etc/bhg/common/navigation.01032015.js">
<div id="superNavWrapper" class="superNavWrapper">
<ul class="navLinks">
<li id="recipes" class=""><a href="/recipes/">Recipes</a></li>
<li id="decorating" class=""><a href="/decorating/">Decorating</a></li>
<li id="home-improvement" class=""><a href="/home-improvement/">Home Improvement</a></li>
<li id="gardening" class=""><a href="/gardening/">Gardening</a></li>
<li id="party" class=""><a href="/party/">Entertaining</a></li>
<li id="beauty-fashion" class=""><a href="/beauty-fashion/">Beauty</a></li>
<li id="holidays" class="highlighted"><a href="/holidays/">Holidays</a></li>
<li id="pets" class=""><a href="/pets/">Pets</a></li>
<li id="better-homes-and-garden-magazine" class=""><a href="/better-homes-and-garden-magazine/">Magazine</a></li>
<li id="videosvideo-index" class=""><a href="/videos/video-index">Videos</a></li>
<li id="httpwwwbhgcomshop" class=""><a href="http://www.bhg.com/shop/">Shop</a></li>
</ul>
</div>
</nav>
<nav id="subNavSource" class="subNavSource">
<ul>
<li>
<a href="/holidays/">Holidays</a>
<ul>
<li><a href="/halloween/">Halloween</a></li>
<li><a href="/halloween/crafts/">Crafts</a></li>
<li><a href="/halloween/decorating/">Decorating</a></li>
<li><a href="/halloween/pumpkins/">Pumpkins</a></li>
<li><a href="/halloween/pumpkin-carving/printable-pumpkin-stencils/">Pumpkin Stencils</a></li>
<li><a href="/halloween/recipes/">Recipes</a></li>
<li><a href="/thanksgiving/">Thanksgiving</a></li>
<li><a href="/thanksgiving/crafts/">Crafts</a></li>
<li><a href="/thanksgiving/recipes/">Recipes</a></li>
<li><a href="/thanksgiving/sides-appetizers/">Sides</a></li>
<li><a href="/thanksgiving/pies-cakes/">Pies</a></li>
<li><a href="/thanksgiving/menu/">Menus</a></li>
<li><a href="/thanksgiving/roast-turkey/">Turkey</a></li>
<li><a href="/christmas/">Christmas</a></li>
<li><a href="/christmas/baking/">Baking</a></li>
<li><a href="/christmas/cookies/">Cookies</a></li>
<li><a href="/christmas/recipes/">Recipes</a></li>
<li><a href="/christmas/crafts/">Crafts</a></li>
<li><a href="/christmas/decorating/">Decorating Ideas</a></li>
<li><a href="/christmas/outdoor-decorations/">Outdoor Decorating</a></li>
<li><a href="/christmas/wreaths/">Wreaths</a></li>
<li><a href="/christmas/trees/">Trees</a></li>
<li><a href="/christmas/ornaments/">Ornaments</a></li>
<li><a href="/christmas/garlands/">Garland</a></li>
<li><a href="/christmas/cards/">Cards</a></li>
<li><a href="/christmas/gifts/">Gifts</a></li>
<li><a href="/holidays/hanukkah/">Hanukkah</a></li>
<li><a href="/holidays/kwanzaa/">Kwanzaa</a></li>
<li><a href="/holidays/new-years/">New Year's</a></li>
<li><a href="/holidays/valentines-day/">Valentine's Day</a></li>
<li><a href="/holidays/st-patricks-day/">St. Patrick's Day</a></li>
<li><a href="/holidays/easter/">Easter</a></li>
<li><a href="/holidays/mothers-day/">Mother's Day</a></li>
<li><a href="/holidays/fathers-day/">Father's Day</a></li>
<li><a href="/holidays/july-4th/">July 4th</a></li>
</ul>
</li>
</ul>
</nav>
</div>
<div class="headerLinks headernavlinks2">
<nav class="serviceNav" id="serviceNav">
<ul id="topLinks" class="navLinks">
<li><a href="http://www.bhg.com/blogs/">blogs</a></li>
<li><a href="http://www.bhg.com/newsletters/?prsc=R1402BSRVNAVNWR231">newsletters</a></li>
<li><a href="http://www.bhg.com/license-products">bhg products</a></li>
<li><a href="http://www.bhg.com/free-stuff/deals/?psrc=R1105BSRVNAVDEALS5432">free offers</a></li>
<li><a href="http://www.bhg.com/free-stuff/?psrc=S1105BSRVNAVFREESTUFF">sweepstakes</a></li>
<li><a href="https://w1.buysub.com/servlet/OrdersGateway?cds_mag_code=BHG&cds_page_id=133280">subscribe</a></li>
<li class="join-now-link"><a href='/common/profile/regStep1.jsp?regSource=1000&returnURL=' title="Join Now!">Join Now!</a></li>
</ul>
</nav></div>
</section>
<div class="topBannerAd" id="bhgTopBannerAd">
<div class="row">
<div class="adcode2 section">
<div id='div-gpt-topBanner' class="large-16 medium-16 small-16 columns"></div>
</div>
</div>
</div>
</header>
</div>
</div>
</div>
</div>
<div id="siteContainer">
<div id="siteContent" class="row">
<div class="large-16 medium-16 small-16 columns clearfix">
<div class="row">
<div class="large-11 medium-11 small-11 columns">
<div class="breadcrumbs">
<div class="breadCrumb clearfix">
<a href="/">BHG.com</a>
/
<a href="/thanksgiving/">Thanksgiving</a>
/
<a href="/thanksgiving/indoor-decorating/">Decorating Ideas for Thanksgiving</a>
/
<span class="bold">Centerpiece and Tabletop Decoration Ideas for Fall from Better Homes and Gardens</span>
</div></div>
</div>
<div class="large-5 medium-5 small-4 columns">
<div class="personalized2 personalized">
<div id="pMod">
<div class="personalizedModule">
<ul class="anonymous">
<li class="personalizedButton login">
<a href="/common/profile/login1.jsp?regSource=1000&returnURL=" title="Log in">
<div class="loginWrapper">log in</div>
<div class="socialLoginWrapper">
<img class="socialLogin googleplus" src="https://cdns.gigya.com/gs/i/HTMLLogin/googleplus_lastlogin_15.png"/>
<img class="socialLogin facebook" src="https://cdns.gigya.com/gs/GetSprite.ashx?path=%2FHTMLLogin%2F%5Bfacebook%5D_15.png%7C15%2C15"/>
<img class="socialLogin yahoo" src="https://cdns.gigya.com/gs/GetSprite.ashx?path=%2FHTMLLogin%2F%5Byahoo%5D_15.png%7C15%2C15"/>
</div>
</a>
</li>
<li class="personalizedButton join">
<a href="/common/profile/regStep1.jsp?regSource=0923&returnURL=" title="Join Now!">Join now!</a>
</li>
</ul>
<ul class="registered">
<li class="personalizedButton user-greet">
</li>
<li class="personalizedButton saved">
<a href="/common/profile/community/?tab=clippings&clipTypeId=0">my saved</a>
</li>
<li class="personalizedButton recipe">
<a href="/recipes/recipebox/">recipe box</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="large-16 medium-16 small-16 columns">
<div class="topinfoandtoolbar2 topinfoandtoolbar">
<div class="topInfo clearfix">
<h1>Centerpiece and Tabletop Decoration Ideas for Fall</h1>
<div class="expander setTruncHeight ">
<p>These easy centerpieces and simple tabletop decorations will add creative fall flair to any table in your home.</p>
</div>
</div>
<section class="byline">
By Kelly Roberson
</section>
<hr class="gradient"/>
<div class="fakepath gigya">
<!-- Gigya Container -->
<div id="gigyaBar" class="gigyaBar" data-button-placement="default" data-buttons="gigyafbShare,gigyaPinIt,gigyaFacebook,gigyaEmail,gigyaTwitter,gigyaGooglePlus,gigyaMore" data-shareurl=""></div>
<!-- Custom Buttons -->
<div id="gigyaCustomButtons"><div class="customButtons socialToolbar">
<div class="save">
<span class="moreButton small">
<a href="#">Save</a>
</span>
</div>
<div class="print">
<span class="moreButton small">
<a title="Print" rel="nofollow">Print</a>
</span>
</div>
<div class="comment">
<span class="moreButton small">
<a href="#comments" rel="nofollow">Comments</a>
</span>
</div>
<div class="icons shareText">Share</div>
</div></div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="large-16 medium-16 small-16 columns">
<div id="bhgHwTicker" data-size="size990"></div>
</div>
</div>
</div>
<div id="slideImage" class="large-11 medium-9 small-11 columns">
<div data-alert class="alert-box alertMessageBox">
<a href="http://pinterest.com/follow/bhg/">
<img src="http://images.meredith.com/content/dam/bhg/Images/assets/pin-banner.jpg"/>
</a>
<a href="#" class="close">×</a>
</div>
<div class="imgColumn">
<div class="roundaboutBtn">
<div class="roundaboutPrev"></div>
<div class="roundaboutNext"></div>
</div>
<div class="slideImage"></div>
</div>
<div id="ym_769327304152915631" class="ym"></div>
<div class="parsys mainPar"><div class="medianet section">
<div class="medianet_placeholder" data-width="650" data-height="175" data-id="624704274">
<script id="mNCC" language="javascript"> medianet_width="650"; medianet_height="175"; medianet_crid="624704274";</script>
<script id="mNSC" src="http://contextual.media.net/nmedianet.js?cid=8CUPTG615" language="javascript"></script>
</div>
</div>
<div class="outbrain section">
<div class="OUTBRAIN" data-src="http://www.bhg.com/thanksgiving/indoor-decorating/centerpiece-and-tabletop-decoration-ideas-fall" data-widget-id="AR_4" data-ob-template="BHG"></div>
</div>
<div class="section comments">
<div id="comments">
<div id="recipeCommentsandReviews">
<strong class="txtcol8 MB5">Your Comment:</strong>
<div id="commentsDiv"></div>
</div>
</div></div>
</div>
</div>
<div class="large-5 medium-7 small-5 columns" id="rightCol">
<aside id="rightColumn">
<div class="slideshow slideshow2">
<div id="slideContent" data-sharing="true">
<nav class="slideshowNav">
<a class="ssPrev" href="javascript:void(0);">Prev</a>
<div class="slideIndicator">
<div class="slideCount"></div>
<span class="slideNavDivider">|</span>
<span class="viewAll allSlidesOverlay">
<a class="viewAllBtn">View All</a>
</span>
</div>
<a class="ssNext" href="javascript:void(0);">Next</a>
</nav>
<div id="allSlides" class="yingsLightBox">
<a class="close">X</a>
<div class="thumbContainer">
<ul class="allSlidesThumbs"></ul>
</div>
</div>
<div class="slideContainer">
<ul>
<li id="slide1" data-imageurl="http://images.meredith.com/content/dam/mwl/Images/2010/09/101203725.jpg" data-link="/thanksgiving/indoor-decorating/centerpiece-and-tabletop-decoration-ideas-fall" data-target="_self" class="slide">
<h2>Eclectic Fall Bowl Centerpiece</h2>
<p><p>This decoration can be fashioned easily with a <a href="http://www.bhg.com/decorating/seasonal/fall/">fall</a> nature hunt and a halved <a href="http://www.bhg.com/shop/globe-b4920.html">globe</a> used as a <a href="http://www.bhg.com/shop/dining/dinnerware/bowls-a3006.html">bowl</a>. There's no need to plan the arrangement -- simply mix the treasures together: pinecones, bittersweet, acorns, and branches make the perfect fall centerpiece.</p>
</p>
</li>
<li id="slide2" data-imageurl="http://images.meredith.com/content/dam/bhg/Images/2012/07/101649150.jpg" data-link="/thanksgiving/indoor-decorating/centerpiece-and-tabletop-decoration-ideas-fall" data-target="_self" class="slide">
<h2>Fall Branches in Vase</h2>
<p><p>Bring fall's burst of <a href="http://www.bhg.com/decorating/color/">colors</a> indoors. A simple glass <a href="http://www.bhg.com/shop/decor/vases-a3123.html">vase</a> transforms a foliage display into naturally beautiful <a href="http://www.bhg.com/shop/art-b4244.html">art</a>. Choose a bouquet of maple, oak, sweetgum, dogwood, or persimmon leaves, which typically develop the brightest hues.</p>
</p>
</li>
<li id="slide3" data-imageurl="http://images.meredith.com/content/dam/bhg/Images/2011/08/101142654.jpg" data-link="/thanksgiving/indoor-decorating/centerpiece-and-tabletop-decoration-ideas-fall" data-target="_self" class="slide">
<h2>Bouquet of Fall Flowers and Vegetables</h2>
<p><p>Going simple is the best <a href="http://www.bhg.com/decorating/">decorating</a> solution for <a href="http://www.bhg.com/decorating/seasonal/fall/">fall</a> centerpieces and table toppers. Here, deeply hued roses and dahlias play off the more muted collection of faux tomatoes and fall foliage.</p>
<p><b>Editor's Tip:</b> Choose a <a href="http://www.bhg.com/shop/decor/vases-a3123.html">vase</a> <a href="http://www.bhg.com/decorating/color/">color</a> that recedes and doesn't compete with the blooms.</p>
</p>
</li>
<li id="slide4" data-imageurl="http://www.bhg.com/videos/hosting/media/bhg/1620905/64570662/bhg-fall-centerpiece-ideas.jpg" data-link="http://www.bhg.com/videos/m/64570662/fall-centerpiece-ideas.htm" data-target="_self" class="slide">
<h2>Video: Fall Centerpiece Ideas</h2>
<p></p>
<div style="display: none;">
<div class="video clearfix">
<div class="mainVideo">
<div class="videoPlayer" data-popup="true" data-width="465" data-height="360" data-videoembedurl="http://www.bhg.com/videos/video-embed/64570662/fall-centerpiece-ideas.htm?autoplay=true&preload=true&transcript=false&social=true&metaq=true&includecompads=true&videoIDs=64570662" data-videotitle="Fall Centerpiece Ideas">
<span class="playvideoLarge"></span>
<img alt="Fall Centerpiece Ideas" src="http://www.bhg.com/videos/hosting/media/bhg/1620905/64570662/bhg-fall-centerpiece-ideas.jpg"/>
</div>
<a class="videoNameLink" href="http://www.bhg.com/videos/m/64570662/fall-centerpiece-ideas.htm">Fall Centerpiece Ideas</a>
</div>
<div class="videoThumbnails">
<ul>
</ul>
</div>
</div>
</div>
</li>
<li id="slide5" data-imageurl="http://images.meredith.com/content/dam/bhg/Images/2010/06/101160863.jpg" data-link="/thanksgiving/indoor-decorating/centerpiece-and-tabletop-decoration-ideas-fall" data-target="_self" class="slide">
<h2>Fall Flowers in Gourd Vases</h2>
<p><p>Display these pretty <a href="http://www.bhg.com/decorating/seasonal/fall/">fall</a> flowers in hollowed-out gourds for a unique twist on a fall centerpiece. Select flowers in a variety of autumn hues, such as bright purple, orange, and yellow, and accent the small bouquets with sprigs of orange berries.</p>
</p>
</li>
<li id="slide6" data-imageurl="http://images.meredith.com/content/dam/bhg/Images/2011/09/101120416.jpg" data-link="/thanksgiving/indoor-decorating/centerpiece-and-tabletop-decoration-ideas-fall" data-target="_self" class="slide">
<h2>White Pumpkins Tabletop Decoration</h2>
<p><p>Color-coordinate your tabletop decoration with your serving dishes to create a classy, monochromatic <a href="http://www.bhg.com/decorating/seasonal/fall/">fall</a> display. Place white gourds at different levels in white ceramic dishes, and accent the table with sprigs of red fall berries in a white ceramic <a href="http://www.bhg.com/shop/decor/vases-a3123.html">vase</a>.</p></p>
</li>
<li id="slide7" data-imageurl="http://images.meredith.com/content/dam/bhg/Images/2010/09/101374143.jpg" data-link="/thanksgiving/indoor-decorating/centerpiece-and-tabletop-decoration-ideas-fall" data-target="_self" class="slide">
<h2>Decorative Tabletop Pumpkins</h2>
<p><p>Without carved faces, pumpkins make a dramatic tabletop. Start with lengths of grapevine wrapped around and up and down pumpkins in different patterns. Display smaller gourds under glass and scatter a base of leaves underneath, and include a tall <a href="http://www.bhg.com/shop/decor/vases-a3123.html">vase</a> filled with wheat or dried lavender for subtle <a href="http://www.bhg.com/decorating/color/">color</a> complement.</p></p>
</li>
<li id="slide8" data-imageurl="http://images.meredith.com/content/dam/bhg/Images/2011/09/100370206.jpg" data-link="/thanksgiving/indoor-decorating/centerpiece-and-tabletop-decoration-ideas-fall" data-target="_self" class="slide">
<h2>Fall Leaf Table Runner</h2>
<p><p>It's easy to craft a no-sew <a href="http://www.bhg.com/shop/dining/tablecloths-and-covers/table-runners-a3034.html">table runner</a> in the shapes and <a href="http://www.bhg.com/decorating/color/">colors</a> of <a href="http://www.bhg.com/decorating/seasonal/fall/">fall</a>. Find and enlarge a fallen leaf shape and cut it out from a piece of felt. Glue ribbon or single-fold bias tape to the edge and place on a contrasting piece of felt or complementary table runner.</p>
</p>
</li>
<li id="slide9" data-imageurl="http://images.meredith.com/content/dam/bhg/Images/2011/09/101745926.jpg" data-link="/thanksgiving/indoor-decorating/centerpiece-and-tabletop-decoration-ideas-fall" data-target="_self" class="slide">
<h2>Tiered Centerpiece of China and Roses</h2>
<p><p>This simple addition to your holiday table requires only household items. Using a large china <a href="http://www.bhg.com/shop/dining/dinnerware/plates-a3013.html">plate</a> as the base, create a layered decoration with stacked teacups and smaller plates. Adorn with orange flowers on each level, and tuck a small amount of foliage in the top teacup.</p>
</p>
</li>
<li id="slide10" data-imageurl="http://images.meredith.com/content/dam/bhg/Images/2011/09/101745925.jpg" data-link="/thanksgiving/indoor-decorating/centerpiece-and-tabletop-decoration-ideas-fall" data-target="_self" class="slide">
<h2>Vegetable Vases with Flowers Tabletop Decoration</h2>
<p><p>These colorful vegetables are the perfect <a href="http://www.bhg.com/decorating/seasonal/fall/">fall</a> tabletop decorations when stuffed with flowers and foliage. Cut each pepper lengthwise an inch from the top to make an opening (don't cut the top completely off), hollow out the pepper and fill with different types of flowers. Set the peppers on small <a href="http://www.bhg.com/shop/dining/dinnerware/plates-a3013.html">plates</a> to finish the decoration.</p>
</p>
</li>
<li id="slide11" data-imageurl="http://images.meredith.com/content/dam/bhg/Images/2011/09/101499539.jpg" data-link="/thanksgiving/indoor-decorating/centerpiece-and-tabletop-decoration-ideas-fall" data-target="_self" class="slide">
<h2>Traced-Leaf Pumpkin Centerpiece</h2>
<p><p>Inexpensive tools make this uniquely carved pumpkin easy to recreate. Use a large leaf to trace onto a pumpkin and use a scraping tool to cut away only the outermost layer. Set it on a <a href="http://www.bhg.com/shop/bedroom/beds-c2824.html">bed</a> of moss and a pedestal for a centerpiece that will last all season.</p></p>
<ul class="slideshowLinks">
<li><a href="http://www.bhg.com/dyn/dyn/servlet/securePdf.dyn?file=/bhg/securepdf/LeafMotifStencil.pdf">Get the carving pattern.</a></li>