-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathself.com1.html
More file actions
1694 lines (1607 loc) · 127 KB
/
Copy pathself.com1.html
File metadata and controls
1694 lines (1607 loc) · 127 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 IEMobile 7 ]> <html lang="en-US" prefix="og: http://ogp.me/ns#"class="no-js iem7" ng-app="cnapp"> <![endif]-->
<!--[if lt IE 7 ]> <html lang="en-US" prefix="og: http://ogp.me/ns#" class="no-js ie6" ng-app="cnapp"> <![endif]-->
<!--[if IE 7 ]> <html lang="en-US" prefix="og: http://ogp.me/ns#" class="no-js ie7" ng-app="cnapp"> <![endif]-->
<!--[if IE 8 ]> <html lang="en-US" prefix="og: http://ogp.me/ns#" class="no-js ie8" ng-app="cnapp"> <![endif]-->
<!--[if (gte IE 9)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html lang="en-US" prefix="og: http://ogp.me/ns#" class="no-js" ng-app="cnapp"><!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><script type="text/javascript">(window.NREUM||(NREUM={})).loader_config={xpid:"VQUFVlRbGwcDUFVbAQc="};window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o?o:e)},o,o.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({QJf3ax:[function(t,e){function n(t){function e(e,n,a){t&&t(e,n,a),a||(a={});for(var c=s(e),f=c.length,u=i(a,o,r),d=0;f>d;d++)c[d].apply(u,n);return u}function a(t,e){f[t]=s(t).concat(e)}function s(t){return f[t]||[]}function c(){return n(e)}var f={};return{on:a,emit:e,create:c,listeners:s,_events:f}}function r(){return{}}var o="nr@context",i=t("gos");e.exports=n()},{gos:"7eSDFh"}],ee:[function(t,e){e.exports=t("QJf3ax")},{}],3:[function(t){function e(t,e,n,i,s){try{c?c-=1:r("err",[s||new UncaughtException(t,e,n)])}catch(f){try{r("ierr",[f,(new Date).getTime(),!0])}catch(u){}}return"function"==typeof a?a.apply(this,o(arguments)):!1}function UncaughtException(t,e,n){this.message=t||"Uncaught error with no additional information",this.sourceURL=e,this.line=n}function n(t){r("err",[t,(new Date).getTime()])}var r=t("handle"),o=t(5),i=t("ee"),a=window.onerror,s=!1,c=0;t("loader").features.err=!0,window.onerror=e,NREUM.noticeError=n;try{throw new Error}catch(f){"stack"in f&&(t(1),t(4),"addEventListener"in window&&t(2),window.XMLHttpRequest&&XMLHttpRequest.prototype&&XMLHttpRequest.prototype.addEventListener&&t(3),s=!0)}i.on("fn-start",function(){s&&(c+=1)}),i.on("fn-err",function(t,e,r){s&&(this.thrown=!0,n(r))}),i.on("fn-end",function(){s&&!this.thrown&&c>0&&(c-=1)}),i.on("internal-error",function(t){r("ierr",[t,(new Date).getTime(),!0])})},{1:8,2:5,3:9,4:7,5:20,ee:"QJf3ax",handle:"D5DuLP",loader:"G9z0Bl"}],4:[function(t){function e(){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var n=t("ee"),r=t("handle"),o=t(2);t("loader").features.stn=!0,t(1),n.on("fn-start",function(t){var e=t[0];e instanceof Event&&(this.bstStart=Date.now())}),n.on("fn-end",function(t,e){var n=t[0];n instanceof Event&&r("bst",[n,e,this.bstStart,Date.now()])}),o.on("fn-start",function(t,e,n){this.bstStart=Date.now(),this.bstType=n}),o.on("fn-end",function(t,e){r("bstTimer",[e,this.bstStart,Date.now(),this.bstType])}),n.on("pushState-start",function(){this.time=Date.now(),this.startPath=location.pathname+location.hash}),n.on("pushState-end",function(){r("bstHist",[location.pathname+location.hash,this.startPath,this.time])}),"addEventListener"in window.performance&&(window.performance.addEventListener("webkitresourcetimingbufferfull",function(){r("bstResource",[window.performance.getEntriesByType("resource")]),window.performance.webkitClearResourceTimings()},!1),window.performance.addEventListener("resourcetimingbufferfull",function(){r("bstResource",[window.performance.getEntriesByType("resource")]),window.performance.clearResourceTimings()},!1)),document.addEventListener("scroll",e,!1),document.addEventListener("keypress",e,!1),document.addEventListener("click",e,!1)}},{1:6,2:8,ee:"QJf3ax",handle:"D5DuLP",loader:"G9z0Bl"}],5:[function(t,e){function n(t){i.inPlace(t,["addEventListener","removeEventListener"],"-",r)}function r(t){return t[1]}var o=(t(1),t("ee").create()),i=t(2)(o),a=t("gos");if(e.exports=o,n(window),"getPrototypeOf"in Object){for(var s=document;s&&!s.hasOwnProperty("addEventListener");)s=Object.getPrototypeOf(s);s&&n(s);for(var c=XMLHttpRequest.prototype;c&&!c.hasOwnProperty("addEventListener");)c=Object.getPrototypeOf(c);c&&n(c)}else XMLHttpRequest.prototype.hasOwnProperty("addEventListener")&&n(XMLHttpRequest.prototype);o.on("addEventListener-start",function(t){if(t[1]){var e=t[1];"function"==typeof e?this.wrapped=t[1]=a(e,"nr@wrapped",function(){return i(e,"fn-",null,e.name||"anonymous")}):"function"==typeof e.handleEvent&&i.inPlace(e,["handleEvent"],"fn-")}}),o.on("removeEventListener-start",function(t){var e=this.wrapped;e&&(t[1]=e)})},{1:20,2:21,ee:"QJf3ax",gos:"7eSDFh"}],6:[function(t,e){var n=(t(2),t("ee").create()),r=t(1)(n);e.exports=n,r.inPlace(window.history,["pushState"],"-")},{1:21,2:20,ee:"QJf3ax"}],7:[function(t,e){var n=(t(2),t("ee").create()),r=t(1)(n);e.exports=n,r.inPlace(window,["requestAnimationFrame","mozRequestAnimationFrame","webkitRequestAnimationFrame","msRequestAnimationFrame"],"raf-"),n.on("raf-start",function(t){t[0]=r(t[0],"fn-")})},{1:21,2:20,ee:"QJf3ax"}],8:[function(t,e){function n(t,e,n){var r=t[0];"string"==typeof r&&(r=new Function(r)),t[0]=o(r,"fn-",null,n)}var r=(t(2),t("ee").create()),o=t(1)(r);e.exports=r,o.inPlace(window,["setTimeout","setInterval","setImmediate"],"setTimer-"),r.on("setTimer-start",n)},{1:21,2:20,ee:"QJf3ax"}],9:[function(t,e){function n(){c.inPlace(this,d,"fn-")}function r(t,e){c.inPlace(e,["onreadystatechange"],"fn-")}function o(t,e){return e}var i=t("ee").create(),a=t(1),s=t(2),c=s(i),f=s(a),u=window.XMLHttpRequest,d=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"];e.exports=i,window.XMLHttpRequest=function(t){var e=new u(t);try{i.emit("new-xhr",[],e),f.inPlace(e,["addEventListener","removeEventListener"],"-",function(t,e){return e}),e.addEventListener("readystatechange",n,!1)}catch(r){try{i.emit("internal-error",[r])}catch(o){}}return e},window.XMLHttpRequest.prototype=u.prototype,c.inPlace(XMLHttpRequest.prototype,["open","send"],"-xhr-",o),i.on("send-xhr-start",r),i.on("open-xhr-start",r)},{1:5,2:21,ee:"QJf3ax"}],10:[function(t){function e(t){if("string"==typeof t&&t.length)return t.length;if("object"!=typeof t)return void 0;if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if("undefined"!=typeof FormData&&t instanceof FormData)return void 0;try{return JSON.stringify(t).length}catch(e){return void 0}}function n(t){var n=this.params,r=this.metrics;if(!this.ended){this.ended=!0;for(var i=0;c>i;i++)t.removeEventListener(s[i],this.listener,!1);if(!n.aborted){if(r.duration=(new Date).getTime()-this.startTime,4===t.readyState){n.status=t.status;var a=t.responseType,f="arraybuffer"===a||"blob"===a||"json"===a?t.response:t.responseText,u=e(f);if(u&&(r.rxSize=u),this.sameOrigin){var d=t.getResponseHeader("X-NewRelic-App-Data");d&&(n.cat=d.split(", ").pop())}}else n.status=0;r.cbTime=this.cbTime,o("xhr",[n,r,this.startTime])}}}function r(t,e){var n=i(e),r=t.params;r.host=n.hostname+":"+n.port,r.pathname=n.pathname,t.sameOrigin=n.sameOrigin}if(window.XMLHttpRequest&&XMLHttpRequest.prototype&&XMLHttpRequest.prototype.addEventListener&&!/CriOS/.test(navigator.userAgent)){t("loader").features.xhr=!0;var o=t("handle"),i=t(2),a=t("ee"),s=["load","error","abort","timeout"],c=s.length,f=t(1);t(4),t(3),a.on("new-xhr",function(){this.totalCbs=0,this.called=0,this.cbTime=0,this.end=n,this.ended=!1,this.xhrGuids={}}),a.on("open-xhr-start",function(t){this.params={method:t[0]},r(this,t[1]),this.metrics={}}),a.on("open-xhr-end",function(t,e){"loader_config"in NREUM&&"xpid"in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader("X-NewRelic-ID",NREUM.loader_config.xpid)}),a.on("send-xhr-start",function(t,n){var r=this.metrics,o=t[0],i=this;if(r&&o){var f=e(o);f&&(r.txSize=f)}this.startTime=(new Date).getTime(),this.listener=function(t){try{"abort"===t.type&&(i.params.aborted=!0),("load"!==t.type||i.called===i.totalCbs&&(i.onloadCalled||"function"!=typeof n.onload))&&i.end(n)}catch(e){try{a.emit("internal-error",[e])}catch(r){}}};for(var u=0;c>u;u++)n.addEventListener(s[u],this.listener,!1)}),a.on("xhr-cb-time",function(t,e,n){this.cbTime+=t,e?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof n.onload||this.end(n)}),a.on("xhr-load-added",function(t,e){var n=""+f(t)+!!e;this.xhrGuids&&!this.xhrGuids[n]&&(this.xhrGuids[n]=!0,this.totalCbs+=1)}),a.on("xhr-load-removed",function(t,e){var n=""+f(t)+!!e;this.xhrGuids&&this.xhrGuids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),a.on("addEventListener-end",function(t,e){e instanceof XMLHttpRequest&&"load"===t[0]&&a.emit("xhr-load-added",[t[1],t[2]],e)}),a.on("removeEventListener-end",function(t,e){e instanceof XMLHttpRequest&&"load"===t[0]&&a.emit("xhr-load-removed",[t[1],t[2]],e)}),a.on("fn-start",function(t,e,n){e instanceof XMLHttpRequest&&("onload"===n&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=(new Date).getTime()))}),a.on("fn-end",function(t,e){this.xhrCbStart&&a.emit("xhr-cb-time",[(new Date).getTime()-this.xhrCbStart,this.onload,e],e)})}},{1:"XL7HBI",2:11,3:9,4:5,ee:"QJf3ax",handle:"D5DuLP",loader:"G9z0Bl"}],11:[function(t,e){e.exports=function(t){var e=document.createElement("a"),n=window.location,r={};e.href=t,r.port=e.port;var o=e.href.split("://");return!r.port&&o[1]&&(r.port=o[1].split("/")[0].split(":")[1]),r.port&&"0"!==r.port||(r.port="https"===o[0]?"443":"80"),r.hostname=e.hostname||n.hostname,r.pathname=e.pathname,"/"!==r.pathname.charAt(0)&&(r.pathname="/"+r.pathname),r.sameOrigin=!e.hostname||e.hostname===document.domain&&e.port===n.port&&e.protocol===n.protocol,r}},{}],gos:[function(t,e){e.exports=t("7eSDFh")},{}],"7eSDFh":[function(t,e){function n(t,e,n){if(r.call(t,e))return t[e];var o=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:o,writable:!0,enumerable:!1}),o}catch(i){}return t[e]=o,o}var r=Object.prototype.hasOwnProperty;e.exports=n},{}],D5DuLP:[function(t,e){function n(t,e,n){return r.listeners(t).length?r.emit(t,e,n):(o[t]||(o[t]=[]),void o[t].push(e))}var r=t("ee").create(),o={};e.exports=n,n.ee=r,r.q=o},{ee:"QJf3ax"}],handle:[function(t,e){e.exports=t("D5DuLP")},{}],XL7HBI:[function(t,e){function n(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:i(t,o,function(){return r++})}var r=1,o="nr@id",i=t("gos");e.exports=n},{gos:"7eSDFh"}],id:[function(t,e){e.exports=t("XL7HBI")},{}],loader:[function(t,e){e.exports=t("G9z0Bl")},{}],G9z0Bl:[function(t,e){function n(){var t=p.info=NREUM.info;if(t&&t.agent&&t.licenseKey&&t.applicationID&&c&&c.body){p.proto="https"===d.split(":")[0]||t.sslForHttp?"https://":"http://",a("mark",["onload",i()]);var e=c.createElement("script");e.src=p.proto+t.agent,c.body.appendChild(e)}}function r(){"complete"===c.readyState&&o()}function o(){a("mark",["domContent",i()])}function i(){return(new Date).getTime()}var a=t("handle"),s=window,c=s.document,f="addEventListener",u="attachEvent",d=(""+location).split("?")[0],p=e.exports={offset:i(),origin:d,features:{}};c[f]?(c[f]("DOMContentLoaded",o,!1),s[f]("load",n,!1)):(c[u]("onreadystatechange",r),s[u]("onload",n)),a("mark",["firstbyte",i()])},{handle:"D5DuLP"}],20:[function(t,e){function n(t,e,n){e||(e=0),"undefined"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=Array(0>o?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=n},{}],21:[function(t,e){function n(t){return!(t&&"function"==typeof t&&t.apply&&!t[i])}var r=t("ee"),o=t(1),i="nr@wrapper",a=Object.prototype.hasOwnProperty;e.exports=function(t){function e(t,e,r,a){function nrWrapper(){var n,i,s,f;try{i=this,n=o(arguments),s=r&&r(n,i)||{}}catch(d){u([d,"",[n,i,a],s])}c(e+"start",[n,i,a],s);try{return f=t.apply(i,n)}catch(p){throw c(e+"err",[n,i,p],s),p}finally{c(e+"end",[n,i,f],s)}}return n(t)?t:(e||(e=""),nrWrapper[i]=!0,f(t,nrWrapper),nrWrapper)}function s(t,r,o,i){o||(o="");var a,s,c,f="-"===o.charAt(0);for(c=0;c<r.length;c++)s=r[c],a=t[s],n(a)||(t[s]=e(a,f?s+o:o,i,s,t))}function c(e,n,r){try{t.emit(e,n,r)}catch(o){u([o,e,n,r])}}function f(t,e){if(Object.defineProperty&&Object.keys)try{var n=Object.keys(t);return n.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(r){u([r])}for(var o in t)a.call(t,o)&&(e[o]=t[o]);return e}function u(e){try{t.emit("internal-error",e)}catch(n){}}return t||(t=r),e.inPlace=s,e.flag=i,e}},{1:20,ee:"QJf3ax"}]},{},["G9z0Bl",3,10,4]);</script>
<title>Headbands 101: Taylor Swift Taught a Master Class on the Subject - SELF</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<link rel="pingback" href="http://www.self.com/xmlrpc.php">
<link rel="shortcut icon" href="http://www.self.com/wp-content/themes/self-1.0.0/favicon.ico" />
<link href="http://www.self.com/wp-content/themes/self-1.0.0/apple-touch-icon.png" rel="apple-touch-icon" />
<link href="http://www.self.com/wp-content/themes/self-1.0.0/apple-touch-icon-76x76.png" rel="apple-touch-icon" sizes="76x76" />
<link href="http://www.self.com/wp-content/themes/self-1.0.0/apple-touch-icon-120x120.png" rel="apple-touch-icon" sizes="120x120" />
<link href="http://www.self.com/wp-content/themes/self-1.0.0/apple-touch-icon-152x152.png" rel="apple-touch-icon" sizes="152x152" />
<!-- wordpress head functions -->
<script type="text/javascript">
(function(d) {
var config = {
kitId: 'ajr8vbi',
scriptTimeout: 3000
},
h=d.documentElement,t=setTimeout(function(){h.className=h.className.replace(/\bwf-loading\b/g,"")+" wf-inactive";},config.scriptTimeout),tk=d.createElement("script"),f=false,s=d.getElementsByTagName("script")[0],a;h.className+=" wf-loading";tk.src='//use.typekit.net/'+config.kitId+'.js';tk.async=true;tk.onload=tk.onreadystatechange=function(){a=this.readyState;if(f||a&&a!="complete"&&a!="loaded")return;f=true;clearTimeout(t);try{Typekit.load(config)}catch(e){}};s.parentNode.insertBefore(tk,s)
})(document);
</script>
<link rel="dns-prefetch" href="http://result.self.com" /><link rel="dns-prefetch" href="http://event.self.com" /><link rel="dns-prefetch" href="//stats2.self.com" /><link rel="dns-prefetch" href="//sstats.self.com" /><meta name='parsely-page' id='parsely-page' content='{"title":"Headbands 101: Taylor Swift Taught a Master Class on the Subject","link":"http:\/\/www.self.com\/flash\/beauty-blog\/2014\/12\/taylor-swift-headband\/","image_url":"http:\/\/www.self.com\/wp-content\/uploads\/2014\/12\/Taylor-Swift-lead-150x150.jpg","type":"post","post_id":"1109661","pub_date":"2014-12-29T16:29:25Z","section":"Beauty","author":"Shannon Farrell","tags":["hair","headbands","taylor swift"]}' />
<!-- This site is optimized with the Yoast WordPress SEO plugin v1.6.1 - https://yoast.com/wordpress/plugins/seo/ -->
<meta name="description" content="Taylor Swift just schooled us on wearing sparkly hair accessories."/>
<meta name="keywords" content="Hair, headbands, Taylor Swift"/>
<link rel="canonical" href="http://www.self.com/flash/beauty-blog/2014/12/taylor-swift-headband/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Headbands 101: Taylor Swift Taught a Master Class on the Subject - SELF" />
<meta property="og:description" content="Taylor Swift just schooled us on wearing sparkly hair accessories." />
<meta property="og:url" content="http://www.self.com/flash/beauty-blog/2014/12/taylor-swift-headband/" />
<meta property="og:site_name" content="SELF" />
<meta property="article:tag" content="Hair" />
<meta property="article:tag" content="headbands" />
<meta property="article:tag" content="Taylor Swift" />
<meta property="article:section" content="Beauty" />
<meta property="og:image" content="http://www.self.com/wp-content/uploads/2014/12/Taylor-Swift-lead.jpg" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:site" content="@SELFmagazine"/>
<meta name="twitter:domain" content="SELF"/>
<meta name="twitter:creator" content="@SELFmagazine"/>
<!-- / Yoast WordPress SEO plugin. -->
<link rel='stylesheet' id='cn-livefyre-css-css' href='http://www.self.com/wp-content/mu-plugins/cn-wordpress/commenting/livefyre.css?ver=1418757287' type='text/css' media='screen' />
<link rel='stylesheet' id='solr-autocomplete-style-css' href='http://www.self.com/wp-content/mu-plugins/cn-wordpress/lib/search/solr-autocomplete.css?ver=1418757287' type='text/css' media='screen' />
<link rel='stylesheet' id='bootstrap-css' href='http://www.self.com/wp-content/themes/self-1.0.0/library/css/bootstrap.css?ver=1.0' type='text/css' media='all' />
<link rel='stylesheet' id='bootstrap-responsive-css' href='http://www.self.com/wp-content/themes/self-1.0.0/library/css/responsive.css?ver=1.0' type='text/css' media='all' />
<link rel='stylesheet' id='self-maincss-css' href='http://www.self.com/wp-content/themes/self-1.0.0/styles/css/screen.min.css?ver=1418757287' type='text/css' media='all' />
<link rel='stylesheet' id='self-maincss2-css' href='http://www.self.com/wp-content/themes/self-1.0.0/styles/css/screen2.min.css?ver=1418757287' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js?ver=1.9.1'></script>
<script type='text/javascript' src='http://zor.livefyre.com/wjs/v3.0/javascripts/livefyre.js?ver=4.0.1'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var WP_VARS = {"THEME_URI":"http:\/\/www.self.com\/wp-content\/themes\/self-1.0.0","ajaxurl":"http:\/\/www.self.com\/wp-admin\/admin-ajax.php"};
/* ]]> */
</script>
<script type='text/javascript' src='http://www.self.com/js/cn-fe-common/cn.js?ver=1418757287'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var CNLIVEFYRE = {"authDelegate":"authDelegate","lfCookieName":"lt","userCookieName":"amg_user","logoutCookies":"'lt','amg_user','at','amg_user_identity','amg_user_partner','amg_user_record','fyre-livecount'","URL_SECURE":"https:\/\/secure.self.com","NETWORK":"self.fyre.co"};
/* ]]> */
</script>
<script type='text/javascript' src='http://www.self.com/wp-content/mu-plugins/cn-wordpress/commenting/auth/cn.livefyre.wp.js?ver=1418757287'></script>
<script type='text/javascript' src='http://www.self.com/js/cn-fe-common/popups/1.1.0/cn.popups-1.1.0.js?ver=1418757287'></script>
<script type='text/javascript' src='http://www.self.com/js/cn-fe-common/cn.mobile.js?ver=1418757287'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var deviceviews = {"mobileMax":"600","tabletMax":"850"};
/* ]]> */
</script>
<script type='text/javascript' src='http://www.self.com/wp-content/mu-plugins/cn-wordpress/lib/js/jquery.devices.js?ver=1418757287'></script>
<script type='text/javascript' src='//assets.adobedtm.com/6372cf21ef88ee60bc2977a4898dcb5c7945a212/satelliteLib-d6c9102bea3bcf221995fbc8ffb9c324d4dc86f7.js?ver=1418757287'></script>
<script type='text/javascript' src='http://result.self.com/js/eventTracker.js'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var s_account = "conde-self";
/* ]]> */
</script>
<script type='text/javascript' src='http://www.self.com/wp-content/config/cn-fe-stats/s_code.js?ver=1418757287'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var platformEnvironment = "production";
var sitehost = "http:\/\/www.self.com";
var omniture_init = [];
CN.omniture = CN.omniture || {};CN.omniture.conf = {"s_account":"conde-self","server":"stats2.self.com","secureServer":"sstats.self.com","internalFilters":"javascript:,self.com,advancemags.com"};;
/* ]]> */
</script>
<script type='text/javascript' src='http://www.self.com/wp-content/config/cn-fe-stats/omniture.js?ver=1418757287'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/config/cn-fe-ads/cn.dart.js?ver=1418757287'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/config/cn-fe-ads/cn.ad.aam.js?ver=1418757287'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/config/cn-fe-ads/cn.ad.refresh.js?ver=1418757287'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/config/cn-fe-ads/cn.ad.proximic.js?ver=1418757287'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/config/cn-fe-ads/cn.ad.polar.js?ver=1418757287'></script>
<script type='text/javascript' src='http://www.self.com/js/cn-fe-ecom/cn.ecom.js?ver=1418757287'></script>
<script type='text/javascript' src='http://www.self.com/js/cn-fe-ecom/ecomfw.js?ver=1418757287'></script>
<script type='text/javascript' src='http://www.self.com/js/cn-fe-ecom/promotheus/promotheus.js?ver=1418757287'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/themes/self-1.0.0/library/js/jquery.lazyloadxt.min.js?ver=1.0'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/themes/self-1.0.0/scripts/js/grid-view.min.js?ver=1.0'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/themes/self-1.0.0/library/js/jquery.lazyloadxt.srcset.min.js?ver=1.0'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/themes/self-1.0.0/library/js/bootstrap.min.js?ver=1.2'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/themes/self-1.0.0/scripts/js/script-master-min.js?ver=1.2'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/themes/self-1.0.0/library/js/modernizr.full.min.js?ver=1.2'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/themes/self-1.0.0/library/js/jquery-ui.min.js?ver=1.8.18'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/themes/self-1.0.0/library/js/jquery.jcarousel.min.js?ver=1.0'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/themes/self-1.0.0/library/js/jquery.jpanelmenu.js?ver=1.0'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/themes/self-1.0.0/library/js/jquery.marquee.min.js?ver=1.0'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/themes/self-1.0.0/library/js/jquery.pause.js?ver=1.0'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/themes/self-1.0.0/library/js/jquery.addtobox.min.js?ver=1.0'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/themes/self-1.0.0/library/js/newsletterhandler.min.js?ver=1.0'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/themes/self-1.0.0/library/js/package-widget.js?ver=1.0'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/themes/self-1.0.0/library/js/self-scroll.js?ver=1.0'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/themes/self-1.0.0/library/js/jquery.ui.touch-punch.min.js?ver=1.0'></script>
<script type='text/javascript' src='http://www.self.com/wp-content/themes/self-1.0.0/library/js/moment-1.7.2.min.js?ver=4.0.1'></script>
<script type='text/javascript' src='http://www.self.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1'></script>
<link rel='shortlink' href='http://www.self.com/?p=1109661' />
<style type="text/css">.social_bookmarking_module ul { margin: 0; padding: 0;}.social_bookmarking_module li { margin: 0; padding: 0; display: inline-block; vertical-align: middle; margin-right: 3px; height: 20px; padding: 7px 0; width: 85px;}.social_bookmarking_module li * { margin:0;padding:0;border:0;}</style> <script type="text/javascript">
jQuery(document).ready(function($) {
if ( typeof jQuery.suggest != 'undefined' ) {
jQuery("#s").suggest("?method=autocomplete",{});
jQuery("#qrybox").suggest("?method=autocomplete",{});
}
});
</script>
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
<!-- COMSCORE -->
<script type="text/javascript">
//<!--
var _comscore = _comscore || [];
_comscore.push({ c1: "2", c2: "6035094", c4: "http://www.self.com/flash/beauty-blog/2014/12/taylor-swift-headband/"});
(function() {var s = document.createElement("script"), el =document.getElementsByTagName("script")[0]; s.async = true;
s.src = (document.location.protocol == "https:" ?"https://sb" : "http://b") +".scorecardresearch.com/beacon.js";
el.parentNode.insertBefore(s, el);})();
function slideChangeTrackingFn() {
jQuery.ajax({
type : 'GET',
url : '/pv.xml',
success : function(data) {
try {
COMSCORE.beacon({c1:"2", c2: "6035094"});
CN.debug.info("Comscore Non-Conventional(slideshow) Page view triggered.");
} catch(e) {
CN.debug.error('COMSCORE beacon call for slideshow page view failed' + e.message);
}
},
error : function(xhr, textStatus) {
CN.debug.error('page view xml load failed for slideshow, probably 404: ' + textStatus);
}
});
}
//-->
</script>
<script type="text/javascript" class="site_init">
//<!--
CN.site.init({
code: 'SLF',
title: 'SELF',
name: 'self',
alias: 'Self.com',
domain: 'Self.com',
tld: 'self.com',
baseUrl: 'http://www.self.com',
mobilecompatible: 'true',
httpStatusCode: 200,
eventServer: 'http://event.self.com',
eventTrackingUrl: 'http://result.self.com',
eventTrackingEnv: 'PROD',
userServiceUrl: 'http://user-service.condenast.com',
userServiceKey: 'MxRTphJbXVyy9NLl+pkI6PNIU6w=',
ecomUrl: 'https://subscribe.self.com/api/circ/xml/Transaction',
litereg: 'true',
socialRes: 'http://www.self.com/services/livefyre/userToken',
env: 'PROD' // Put something consistent last so we don't have a trailing comma (appease IE)
});
CN.isMobile = jQuery.devices.mobile();
CN.isTablet = jQuery.devices.tablet();
CN.checkDeviceView = jQuery.devices.checkDeviceView;
//-->
</script>
<!-- AD INIT: CN.dart.init version 2 -->
<script type="text/javascript">
//<!--
CN.dartKwsArray = [ "shannon_farrell","beauty_blog","hair","headbands","taylor_swift","flash","2014","12","taylor_swift_headband" ];
if ( typeof polarkws != "undefined" ) {
CN.dartKwsArray.push( polarkws );
}
CN.dart.init({
adUnits: {
unit1: CN.isMobile ? 'self.mobile.dart' : 'self.dart',
unit2: 'looks',
unit3: 'beauty-blog',
unit4: ''
},
kws: CN.dartKwsArray,
contentType: 'Blog',
charmap : {' ' : '+', '-' : '_'}
});
//-->
</script>
<script type="text/javascript">
//<!--
CN.popups = CN.popups || {};
CN.popups.init();
CN.popups.setCookieLife(72);
CN.popups.setExiting(true, {
path: '/exit-pop/',
width: 460,
height: 295,
}).excludeExitPath( '/wp-admin', '/wp-login.php' ).excludeExitDomain( "self.com","www.self.com","origin.www.self.com","mprod.self.com","origin.mprod.self.com" );
// Set exiting popup options
CN.popups.setArriving(false).setATGLayer(true);
//-->
</script>
</head>
<body class="single single-blog postid-1109661 shannon_farrell flash beauty-blog 2014 12 taylor-swift-headband" ng-controller="PageCtrl">
<!--Global Mbox-->
<div class="mboxDefault"></div>
<script type="text/javascript">
//<!--
// metaKeyWords is used by the pageads call for CM
metaKeyWords='default';
if ( ( typeof mboxCreate != 'undefined') && ( CN.url.params( 'nojoy' ) != 1 ) ) {
// create the mbox
mboxCreate( "slf_ed_global",
"entity.brand=self",
"entity.id=1109661",
"entity.name=Headbands 101: Taylor Swift Taught a Master Class on the Subject",
"entity.categoryId=",
"entity.contentType=blog",
"entity.siteSection=looks",
"entity.message=",
"entity.pageUrl=http://www.self.com/flash/beauty-blog/2014/12/taylor-swift-headband/",
"entity.thumbnailUrl=http://www.self.com/wp-content/uploads/2014/12/Taylor-Swift-lead-150x150.jpg",
"entity.inventory=1",
"entity.value=1",
"mboxPageValue=1"
);
}
//-->
</script>
<!--end global mbox code-->
<time datetime="2014-12-29T11:29:25+00:00" ></time> <div class="lightreg-forms {{modalContext}}" ng-controller="LightRegCtrl">
<div id="modal-frame" modal-window="modal-window" class="ng-cloak" backdrop="true">
<div ng-view></div>
</div>
</div>
<!-- CM: page-ads.js -->
<script type="text/javascript">
//<!--
var _ghearst_vars = (function() {
var commonParams = 'ad_category_prefix=flash'
+ '&browser_path=%2Fflash%2Fbeauty-blog%2F2014%2F12%2Ftaylor-swift-headband%2F'
+ '&cat_prefixes=%2Cflash%2Cbeauty-blog%2C2014%2C12%2Ctaylor-swift-headband%2C'
+ '&site_prefix=self'
+ '&subdomain=www'
+ '&url_name=';
var deviceParams = (function() {
if ( ( navigator.userAgent.match(/iPad/i) !== null ) && ( CN.cookie.get('ipadTakeover') !== 'true' ) ) {
return 'AMS_SLF_GLOBAL_HEADER%2CAMS_SLF_GLOBAL_HEADERCALLOUT%2CAMS_SLF_GLOBAL_HEADERLEFT%2CAMS_SLF_GLOBAL_HEADERLEFT_ROLLOVER%2CAMS_SLF_GLOBAL_RIGHTRAILNAV%2CAMS_SLF_GLOBAL_CONTENTRIVER%2CAMS_SLF_GLOBAL_SITEFOOTER%2CAMS_SLF_MOBILE_GLOBAL_FOOTER%2CAMS_SLF_MOBILE_GLOBAL_NAVBAR%2CAMS_SLF_POPUP_FLOATINGAD%2CAMS_SLF_TABLET_GLOBAL_FOOTER%2CAMS_SLF_MOBILE_GLOBAL_CONTENTRIVER%2CAMS_SLF_LITEREG_SUBSCRIBE%2CAMS_SLF_GLOBAL_IPAD_TAKEOVER';
} else {
return 'AMS_SLF_GLOBAL_HEADER%2CAMS_SLF_GLOBAL_HEADERCALLOUT%2CAMS_SLF_GLOBAL_HEADERLEFT%2CAMS_SLF_GLOBAL_HEADERLEFT_ROLLOVER%2CAMS_SLF_GLOBAL_RIGHTRAILNAV%2CAMS_SLF_GLOBAL_CONTENTRIVER%2CAMS_SLF_GLOBAL_SITEFOOTER%2CAMS_SLF_MOBILE_GLOBAL_FOOTER%2CAMS_SLF_MOBILE_GLOBAL_NAVBAR%2CAMS_SLF_POPUP_FLOATINGAD%2CAMS_SLF_TABLET_GLOBAL_FOOTER%2CAMS_SLF_MOBILE_GLOBAL_CONTENTRIVER%2CAMS_SLF_LITEREG_SUBSCRIBE';
}
})();
return {
'ams_ads_script_src' : 'https://subscribe.self.com/ams/page-ads.js?'
+ commonParams + ''
+ '&keywords=' + metaKeyWords + ''
+ '&position_list=' + deviceParams + ''
};
})();
if (!window.$h) {window.$h = {}}
(function(){
if (!$h.util) {
$h.util = {
buildScriptTag: function(src){
if (!!src){ document.write('<scr' + 'ipt src="'+src+'" type="text/javascript"></scr' + 'ipt>');}
}
}
}
$h.util.buildScriptTag(_ghearst_vars.ams_ads_script_src)
})();
//-->
</script>
<div id="floatingAd"><div id="floatingAd_header" class="visible-desktop visible-tablet"><a href="#">Close</a></div><div id="floatingAd_content" class="visible-desktop visible-tablet"><div id="AMS_SLF_POPUP_FLOATINGAD" class="ecom-placement visible-desktop visible-tablet"><a href="https://w1.buysub.com/loc/SLF/ATGFailsafe" target="_blank"><img border="0" src="http://www.self.com/wp-content/themes/self-1.0.0/images/ecom/floating_ad.jpg"/></a> <script type="text/javascript">
//<!--
if ( ( typeof pageAds != 'undefined') && ( CN.url.params( 'nojoy' ) != 1 ) ) {
(function(){
if ( typeof pageAds.AMS_SLF_POPUP_FLOATINGAD != 'undefined' ) {
jQuery( "#AMS_SLF_POPUP_FLOATINGAD" ).html( pageAds.AMS_SLF_POPUP_FLOATINGAD.replace( /document.write\(.*\)/gi, "/* filtered by amg-magnet:document.write(...) */" ) );
} else { CN.debug.info( "AMS_SLF_POPUP_FLOATINGAD not in pageAds."); }
})();
}
//-->
</script>
</div></div></div> <header role="banner">
<div id="inner-header" class="clearfix">
<div class="row-fluid">
<div class="span12 pagination-centered">
<div id="masthead-banner-ad" class="masthead-ad visible-desktop visible-tablet">
<div class="masthead-ad-inner">
<div class="displayAds"><div class="advertisement"><div id="header728x90_frame" class="displayAd displayAd728x90Js" data-cb-ad-id="header728x90_frame"></div><script type="text/javascript">if ( typeof CN !== "undefined" ) {
if ( ! CN.isMobile && CN.dart ) {
CN.dart.call( "header", { sz: "728x90", kws: [ "" ], collapse: true } );
}
}</script></div></div> </div>
</div>
<div class="masthead-ad-mobile visible-phone">
<div class="header-mobile-ad"><div class="advertisement"><div id="header320x50_frame" class="displayAd displayAd320x50Js" data-cb-ad-id="header320x50_frame"></div><script type="text/javascript">if ( typeof CN !== "undefined" ) {
if ( CN.isMobile && CN.dart ) {
CN.dart.call( "header", { sz: ( "320x50" ), kws: [ "top" ], collapse: true } );
}
}</script></div></div> </div>
</div>
</div>
<div class="self-mobile-menu-wrap">
<a class="self-logo-mobile self-logo" href = "http://www.self.com"></a>
<div class="visible-phone visible_only_phone self-mobile-search-box">
<div class = "search_img_phone">
</div>
<form class="navbar-search pull-right" role="search" method="get" id="searchform" action="/search/">
<div class="search_form_go">
<form role="search" method="get" id="searchform" action="http://www.self.com/" >
<label class="screen-reader-text" for="s">Search for:</label>
<input type="submit" id="searchsubmit" value="" autocomplete="off"/>
<input type="text" value="" name="s" id="s" class="global-search-input" placeholder="Search SELF" autocomplete="off" />
<div class="autosuggest" style="display:none"></div>
</form> <div class = "search_close_phone">
<div class="search_arrow_phone"></div>
<div class="search_close_icon ximg"></div>
</div>
</div>
</form>
</div>
</div>
<div class="navbar">
<div class="navbar-inner">
<div class="container-fluid nav-container">
<!---Main Navigation -->
<nav role="navigation">
<a class="btn btn-navbar visible-phone" data-toggle="collapse" data-target=".nav-collapse">
<span class="mobile-nav-tab-icon"></span>
</a>
<div class="nav-collapse collapse">
<div class="menu-main-nav-menu-container">
<!-- Login for mobile starts -->
<div class="span3 login_holder pagination-centered visible-phone">
<div class="x-is-logged-in">
<span class="login_span_hold mobile_login_span">
<div id="login_x_phone"><a href = "#"></a></div>
<span class="grey">Welcome back </span>
<span class="profile_box">
<span class="username">
<span id="arrowhtml5"></span>
<span class="user-detail"></span>
</span>
<div class="profile_drop">
<span><a class="grey" href="https://secure.self.com/user/update?returnto=http://www.self.com/flash/beauty-blog/2014/12/taylor-swift-headband/">Edit Profile</a></span>
<span id="logout_right"><a class="grey" href="https://secure.self.com/user/logout?returnto=http://www.self.com/flash/beauty-blog/2014/12/taylor-swift-headband/" title="Logout" >Logout</a></span>
</div>
</span>
</span>
</div>
<div class="x-not-logged-in">
<span class="login_span_hold mobile_login_span">
<div id="login_x_phone"><a href = "#"></a></div>
<a href="https://secure.self.com/user/login?returnto=http://www.self.com/flash/beauty-blog/2014/12/taylor-swift-headband/">Login
<span id="login_plus"> +</span>
</a>
</span>
</div>
</div>
<!-- Login for mobile ends -->
<ul id="menu-main-nav-menu" class="nav-menu">
<li class="subscribe_dtox">
<span class="visible-desktop visible-tablet">
<span class="visible-desktop visible-tablet subscribe_rollover">
<div id="AMS_SLF_GLOBAL_HEADERLEFT" class="ecom-placement"><a href="https://w1.buysub.com/loc/SLF/ATGFailsafe" target="_blank">Subscribe</a> <script type="text/javascript">
//<!--
if ( ( typeof pageAds != 'undefined') && ( CN.url.params( 'nojoy' ) != 1 ) ) {
(function(){
if ( typeof pageAds.AMS_SLF_GLOBAL_HEADERLEFT != 'undefined' ) {
jQuery( "#AMS_SLF_GLOBAL_HEADERLEFT" ).html( pageAds.AMS_SLF_GLOBAL_HEADERLEFT.replace( /document.write\(.*\)/gi, "/* filtered by amg-magnet:document.write(...) */" ) );
jQuery( "#AMS_SLF_GLOBAL_HEADERLEFT" ).css( { visibility: 'visible' } );
} else { CN.debug.info( "AMS_SLF_GLOBAL_HEADERLEFT not in pageAds."); }
})();
}
//-->
</script>
</div> </span>
</span>
<div id="rolloverAd" class="rolloverAd">
<div id="rolloverAd_header" class="rolloverAd_header">
<a href="#">Close</a>
</div>
<div id="rolloverAd_content" class="rolloverAd_content">
<div id="AMS_SLF_GLOBAL_HEADERLEFT_ROLLOVER" class="ecom-placement"><!-- no failsafe for AMS_SLF_GLOBAL_HEADERLEFT_ROLLOVER --> <script type="text/javascript">
//<!--
if ( ( typeof pageAds != 'undefined') && ( CN.url.params( 'nojoy' ) != 1 ) ) {
(function(){
if ( typeof pageAds.AMS_SLF_GLOBAL_HEADERLEFT_ROLLOVER != 'undefined' ) {
jQuery( "#AMS_SLF_GLOBAL_HEADERLEFT_ROLLOVER" ).html( pageAds.AMS_SLF_GLOBAL_HEADERLEFT_ROLLOVER.replace( /document.write\(.*\)/gi, "/* filtered by amg-magnet:document.write(...) */" ) );
} else { CN.debug.info( "AMS_SLF_GLOBAL_HEADERLEFT_ROLLOVER not in pageAds."); }
})();
}
//-->
</script>
</div> </div>
</div>
</li>
<li class="subscribe_dtox">
<span class="visible-phone disp-sub-men" id="plus_minus_img" ></span>
<a href="http://www.self.com/body/">Body</a> <ul class="sub-menu ">
<div class="submenu-section-text pull-left">
<li><a href="http://www.self.com/body/celebrity/">Celebrity</a></li><li><a href="http://www.self.com/body/fitness/">Fitness</a></li><li><a href="http://www.self.com/body/workouts/">Workouts</a></li><li><a href="http://www.self.com/body/food/">Food</a></li><li><a href="http://www.self.com/body/recipes/">Recipes</a></li> </div>
<div class="submenu-section-image pull-left">
<div class="navimagedisplay">
<a href="/body/celebrity/2014/12/jennifer-lopez-owning-the-year"><img src="http://www.self.com/wp-content/uploads/2014/12/jennifer-lopez-bar-1240x1240-150x150.jpg"></a><a class="img-definition" href="/body/celebrity/2014/12/jennifer-lopez-owning-the-year">Jennifer Lopez: Our January Cover Girl</a> </div>
</div>
</ul>
</li>
<li class="subscribe_dtox">
<span class="visible-phone disp-sub-men" id="plus_minus_img" ></span>
<a href="http://www.self.com/looks/">Looks</a> <ul class="sub-menu ">
<div class="submenu-section-text pull-left">
<li><a href="http://www.self.com/looks/fashion/">Fashion</a></li><li><a href="/looks/fashion/2014/12/fitxfashion/">Fit x Fashion</a></li><li><a href="http://www.self.com/looks/beauty/">Beauty</a></li><li><a href="http://www.self.com/looks/hair/">Hair</a></li><li><a href="http://www.self.com/looks/makeup/">Makeup</a></li><li><a href="http://www.self.com/looks/skin/">Skin</a></li> </div>
<div class="submenu-section-image pull-left">
<div class="navimagedisplay">
<a href="/looks/fashion/2014/12/model-anne-v-utility-chic-fashion"><img src="http://www.self.com/wp-content/uploads/2014/12/model-anne-v-utility-chic-rocky-road-1240x1240-150x150.jpg"></a><a class="img-definition" href="/looks/fashion/2014/12/model-anne-v-utility-chic-fashion">Top Model Anne V Takes Utility-Chic Style to the Top</a> </div>
</div>
</ul>
</li>
<li class="subscribe_dtox">
<span class="visible-phone disp-sub-men" id="plus_minus_img" ></span>
<a href="http://www.self.com/life/">Life</a> <ul class="sub-menu ">
<div class="submenu-section-text pull-left">
<li><a href="http://www.self.com/life/health/">Health</a></li><li><a href="http://www.self.com/life/sex/">Sex</a></li><li><a href="http://www.self.com/life/relationships/">Relationships</a></li><li><a href="http://www.self.com/life/travel/">Travel</a></li><li><a href="http://www.self.com/life/work/">Work</a></li> </div>
<div class="submenu-section-image pull-left">
<div class="navimagedisplay">
<a href="/life/health/2014-womens-cancer-handbook"><img src="http://www.self.com/wp-content/uploads/2014/09/women-versus-cancer-150x150.jpg"></a><a class="img-definition" href="/life/health/2014-womens-cancer-handbook">Women Versus Cancer</a> </div>
</div>
</ul>
</li>
<li class="subscribe_dtox">
<span class="visible-phone disp-sub-men" id="plus_minus_img" ></span>
<a href="http://www.self.com/flash/">Flash</a> </li>
<li class="subscribe_dtox">
<span class="visible-phone disp-sub-men" id="plus_minus_img" ></span>
<a href="http://video.self.com/">Video</a> </li>
<li class="subscribe_dtox">
<span class="visible-phone disp-sub-men" id="plus_minus_img" ></span>
<a href="http://www.self.com/tools/">Tools</a> <ul class="sub-menu tools">
<div class="submenu-section-text pull-left">
<li><a href="/program/detox/">Drop 10 Detox</a></li><li><a href="http://www.self.com/prize/">Win Prizes!</a></li><li><a href="http://www.selfworkoutfinder.com/">SELF Workout Finder</a></li><li><a href="http://nutritiondata.self.com/">Nutrition Data</a></li><li><a href="http://selfcurated.self.com/">Promotions</a></li> </div>
<div class="submenu-section-image pull-left">
<div class="navimagedisplay">
<a href=""><img src="http://www.self.com/wp-content/uploads/2014/12/time-makeover-time-journals-150x150.jpg"></a> </div>
</div>
</ul>
</li>
<li class="drop-ten-flx-img subscribe_dtox real_dtox">
<span class="visible-desktop">
<a href="/program/time-makeover"><img src="http://www.self.com/wp-content/uploads/2014/12/time-makeover-menu-nav-new.jpg" /></a> </span>
<span class="visible-tablet drop_2x_img_rez">
<a href="/program/time-makeover"><img src="http://www.self.com/wp-content/uploads/2014/12/time-makeover-menu-nav-new.jpg" /></a> </span>
</li>
<li>
<div class="search_img visible-desktop visible-tablet">
<img width="45px" height="34px" src="http://www.self.com/wp-content/themes/self-1.0.0/images/search.png" />
</div>
</li>
<!-- New code starts here -->
<li class="subscribe_dtox real_dtox ">
<span class="visible-phone">
<a href="/program/time-makeover"><img id="drop_10_mob" src="http://www.self.com/wp-content/uploads/2014/12/time-makeover-logo-480x42.jpg" /></a> </span>
</li>
<li class="subscribe_dtox cm-mobile real_dtox visible-phone">
<span id="AMS_SLF_MOBILE_GLOBAL_NAVBAR" class="ecom-placement"><a href="https://w1.buysub.com/loc/SLF/ATGFailsafeMobile" target="_blank">Subscribe</a> <script type="text/javascript">
//<!--
if ( ( typeof pageAds != 'undefined') && ( CN.url.params( 'nojoy' ) != 1 ) ) {
(function(){
if ( typeof pageAds.AMS_SLF_MOBILE_GLOBAL_NAVBAR != 'undefined' ) {
jQuery( "#AMS_SLF_MOBILE_GLOBAL_NAVBAR" ).html( pageAds.AMS_SLF_MOBILE_GLOBAL_NAVBAR.replace( /document.write\(.*\)/gi, "/* filtered by amg-magnet:document.write(...) */" ) );
jQuery( "#AMS_SLF_MOBILE_GLOBAL_NAVBAR" ).css( { visibility: 'visible' } );
} else { CN.debug.info( "AMS_SLF_MOBILE_GLOBAL_NAVBAR not in pageAds."); }
})();
}
//-->
</script>
</span> </li>
<!-- New code ends here -->
</ul>
<form class="navbar-search pull-right" role="search" method="get" id="searchform" action="/search/">
<div><form role="search" method="get" id="searchform" action="http://www.self.com/" >
<label class="screen-reader-text" for="s">Search for:</label>
<input type="submit" id="searchsubmit" value="" autocomplete="off"/>
<input type="text" value="" name="s" id="s" class="global-search-input" placeholder="Search SELF" autocomplete="off" />
<div class="autosuggest" style="display:none"></div>
</form></div>
</form>
<div class="search_close">
<div class="search_arrow"></div>
<div class="search_close_icon ximg"></div>
</div>
</div>
</div>
</nav>
</div> <!-- end .nav-container -->
</div> <!-- end .navbar-inner -->
</div> <!-- end .navbar -->
</div>
<!-- end #inner-header -->
<div class="container-fluid logo-holder visible-desktop visible-tablet">
<div class="row-fluid">
<div class="span3 login_holder pagination-centered visible-desktop visible-tablet">
<div class="is-logged-in">
<span class="login_span_hold">
<img width="27px" height="22px" src="http://www.self.com/wp-content/themes/self-1.0.0/images/login-yellow.png">
<span class="grey">Welcome back</span>
<span class="profile_box">
<span class="username">
<img width="9px" height="8px" src="http://www.self.com/wp-content/themes/self-1.0.0/images/login-arrow.png">
<span class="user-detail"></span>
</span>
<div class="profile_drop">
<span>
<a class="grey" href="https://secure.self.com/user/update?returnto=http://www.self.com/flash/beauty-blog/2014/12/taylor-swift-headband/">Edit Profile</a>
</span>
<hr>
<span>
<a class="grey" href="https://secure.self.com/user/logout?returnto=http://www.self.com/flash/beauty-blog/2014/12/taylor-swift-headband/" title="Logout">Logout</a>
</span>
</div>
</span>
<hr class="login_in">
<a class="promotions_header_in" href="http://selfcurated.self.com">Promotions</a>
</span>
</div>
<div class="not-logged-in">
<span class="login_span_hold">
<span class="login-icon-slf"></span>
<span class="login-box-text">
<a class="login-in-slf" href="https://secure.self.com/user/login?returnto=http://www.self.com/flash/beauty-blog/2014/12/taylor-swift-headband/">Login</a>
<a class="promotions_header_out" href="http://selfcurated.self.com">Promotions</a>
</span>
</span>
</div>
</div>
<div class="span6 logo pagination-centered visible-desktop visible-tablet">
<a class="self-logo" href = "http://www.self.com"></a>
</div>
<div class="span3">
<div class="subscribe-box visible-desktop visible-tablet">
<div class="visible-desktop visible-tablet">
<div id="AMS_SLF_GLOBAL_HEADERCALLOUT" class="ecom-placement"><a href="https://w1.buysub.com/loc/SLF/ATGFailsafe" target="_blank"><img src="http://www.self.com/wp-content/themes/self-1.0.0/images/ecom/SLF_failsafe_header_callout.jpg" alt="Subscribe to Self" border="0" /></a> <script type="text/javascript">
//<!--
if ( ( typeof pageAds != 'undefined') && ( CN.url.params( 'nojoy' ) != 1 ) ) {
(function(){
if ( typeof pageAds.AMS_SLF_GLOBAL_HEADERCALLOUT != 'undefined' ) {
jQuery( "#AMS_SLF_GLOBAL_HEADERCALLOUT" ).html( pageAds.AMS_SLF_GLOBAL_HEADERCALLOUT.replace( /document.write\(.*\)/gi, "/* filtered by amg-magnet:document.write(...) */" ) );
jQuery( "#AMS_SLF_GLOBAL_HEADERCALLOUT" ).css( { visibility: 'visible' } );
} else { CN.debug.info( "AMS_SLF_GLOBAL_HEADERCALLOUT not in pageAds."); }
})();
}
//-->
</script>
</div> </div>
<div class="visible-desktop visible-tablet">
<div id="AMS_SLF_GLOBAL_HEADER" class="ecom-placement"><div id="subs-cover"><a href="https://w1.buysub.com/loc/SLF/ATGFailsafe" target="_blank">Subscribe</a></div> <script type="text/javascript">
//<!--
if ( ( typeof pageAds != 'undefined') && ( CN.url.params( 'nojoy' ) != 1 ) ) {
(function(){
if ( typeof pageAds.AMS_SLF_GLOBAL_HEADER != 'undefined' ) {
jQuery( "#AMS_SLF_GLOBAL_HEADER" ).html( pageAds.AMS_SLF_GLOBAL_HEADER.replace( /document.write\(.*\)/gi, "/* filtered by amg-magnet:document.write(...) */" ) );
jQuery( "#AMS_SLF_GLOBAL_HEADER" ).css( { visibility: 'visible' } );
} else { CN.debug.info( "AMS_SLF_GLOBAL_HEADER not in pageAds."); }
})();
}
//-->
</script>
</div> </div>
</div>
</div>
</div>
</div>
</header> <!-- end header -->
<!-- Push Down Ad -->
<div id="pushDown-banner-ad" class="pushDown-ad visible-desktop visible-tablet">
<div class="pushDown-ad-inner">
<div class="displayAds"><div class="advertisement"><div id="pushdown970x418_frame" class="displayAd displayAd970x418Js" data-cb-ad-id="pushdown970x418_frame"></div><script type="text/javascript">if ( typeof CN !== "undefined" ) {
if ( ! CN.isMobile && CN.dart ) {
CN.dart.call( "pushdown", { sz: "970x418", kws: [ "top" ], collapse: true } );
}
}</script></div></div> </div>
</div> <div class="container-fluid blog-post blog" id="wrapper">
<!--category main block start -->
<div id="content" class="clearfix row-fluid">
<div class="span12 toprail hidden-phone">
<!--top rail section -->
<div class="row-fluid">
<div class="wrapper_top span2">
<div class="toprail_wrp_img">
<a href="http://www.self.com/body/fitness/2014/01/essential-stretches-slideshow/"><img width="172" height="104" src="http://www.self.com/wp-content/uploads/2013/12/essential-stretches-00-fiss431-172x104-1419954957.jpg" class="attachment-recipe-toprail-section-image wp-post-image" alt="essential-stretches-00-fiss431.jpg" /></a>
</div>
<div class="img_head">
<span>
<a href="http://www.self.com/body/fitness/2014/01/essential-stretches-slideshow/">
Best Stretches For Flexibility </a>
</span>
</div>
</div>
<div class="wrapper_top span2">
<div class="toprail_wrp_img">
<a href="http://www.self.com/body/food/2014/12/cozy-vegetarian-winter-soups-slideshow/"><img width="172" height="104" src="http://www.self.com/wp-content/uploads/2014/12/WinterSoups-HalfBakedHarvest-172x104.jpg" class="attachment-recipe-toprail-section-image wp-post-image" alt="WinterSoups-HalfBakedHarvest" /></a>
</div>
<div class="img_head">
<span>
<a href="http://www.self.com/body/food/2014/12/cozy-vegetarian-winter-soups-slideshow/">
Cozy Vegetarian Winter Soups </a>
</span>
</div>
</div>
<div class="wrapper_top span2">
<div class="toprail_wrp_img">
<a href="http://www.self.com/program/time-makeover/"><img width="172" height="104" src="http://www.self.com/wp-content/uploads/2014/12/time-makeover-broken-clock-172x104.jpg" class="attachment-recipe-toprail-section-image wp-post-image" alt="time-makeover-broken-clock" /></a>
</div>
<div class="img_head">
<span>
<a href="http://www.self.com/program/time-makeover/">
21-Day Time Makeover </a>
</span>
</div>
</div>
<div class="wrapper_top span2">
<div class="toprail_wrp_img">
<a href="http://www.self.com/body/workouts/2010/06/yoga-for-abs-workout-slideshow/"><img width="172" height="104" src="http://www.self.com/wp-content/uploads/2010/06/40YogaForAbs-172x104-1419955026.jpg" class="attachment-recipe-toprail-section-image wp-post-image" alt="40YogaForAbs" /></a>
</div>
<div class="img_head">
<span>
<a href="http://www.self.com/body/workouts/2010/06/yoga-for-abs-workout-slideshow/">
Yoga For Your Abs </a>
</span>
</div>
</div>
<div class="wrapper_top span2">
<div class="toprail_wrp_img">
<a href="http://www.self.com/body/workouts/2014/11/tone-6-power-moves-mind-body/"><img width="172" height="104" src="http://www.self.com/wp-content/uploads/2014/11/tone-up-power-moves-mind-body-linda-celeste-sims-1068-172x104-1419955069.jpg" class="attachment-recipe-toprail-section-image wp-post-image" alt="tone-up-power-moves-mind-body-linda-celeste-sims-1068" /></a>
</div>
<div class="img_head">
<span>
<a href="http://www.self.com/body/workouts/2014/11/tone-6-power-moves-mind-body/">
Tone Up With 6 Power Moves </a>
</span>
</div>
</div>
</div> </div>
<div class="row-fluid float-sidebar-container">
<div class="span8 center_well_tab">
<div class="center_well"><!-- center-well start-->
<div class="tabbed-features" id="position2"><!-- tabbed-features start -->
<div class="flash-logo">
<a href= "/flash/">
<div class="flash_logo_img_png">
<span class="flash-title-logo">
FLASH
</span>
<span class="flash-tag-line">
WHAT'S NEW NOW
</span>
</div>
</a>
</div>
<div id="blog-post"> <!-- blog-post start-->
<div id="blog-post-section"><!--blog section start -->
<div class="blog_post_header">
<div class="graphic-logo">
<div class="graphic-logo-bg">
<div class="visible-desktop visible-tablet">
<div class="displayAd200x60Js"><div class="advertisement"><div id="slideshow_top200x60_frame" class="displayAd displayAd200x60Js" data-cb-ad-id="slideshow_top200x60_frame"></div><script type="text/javascript">if ( typeof CN !== "undefined" ) {
if ( ! CN.isMobile && CN.dart ) {
CN.dart.call( "slideshow_top", { sz: "200x60", kws: [ "top" ], collapse: true } );
}
}</script></div></div> </div>
<div class="visible-phone">
<div class="mobile-ad"><div class="advertisement"><div id="mobile-program-presented-ad88x31_frame" class="displayAd displayAd88x31Js" data-cb-ad-id="mobile-program-presented-ad88x31_frame"></div><script type="text/javascript">if ( typeof CN !== "undefined" ) {
if ( CN.isMobile && CN.dart ) {
CN.dart.call( "mobile-program-presented-ad", { sz: ( "88x31" ), kws: [ "top" ], collapse: true } );
}
}</script></div></div> </div>
</div>
</div>
<div class="blog-date">
<div class="published">
<div id="year">2014</div>
<div id="month">Dec 29</div>
<div id="time">11:29 AM</div>
</div>
<div id="dotscopy"></div>
<div id="blogSection">
<a href= "/flash/beauty-blog/">
Beauty </a>
</div>
<div class="by_author_cls"> By <a href = '/author/sfarrell/'><span class="pink_aut_color">Shannon Farrell</span></a></div>
</div>
<div class="blog-article"><h1>Headbands 101: Taylor Swift Taught a Master Class on the Subject</h1></div>
<div class="social_share_data hidden-phone">
<div class="social-toolbar">
<div class="share-this share-this-sticky">
<ul class="share-links">
<li class="fb share"> <a href="#" class="share fb addthis_button_facebook" ><span></span></a> </li>
<li class="tw share"> <a href="#" addthis:url="http://on.self.com/1teldmd
" addthis:title="Headbands 101: Taylor Swift Taught a Master Class on the Subject via @SELFmagazine" class="share tw addthis_button_twitter" ><span></span></a> </li>
<li class="gp share"> <a href="#" class="share gp addthis_button_google" ><span></span></a> </li>
<li class="pn share"> <a href="#" class="share pn addthis_button_pinterest" ><span></span></a> </li>
<li class="em share"> <a href="#" addthis:url="" addthis:title="" class="share em addthis_button_mailto" ><span></span></a> </li>
<li class="print share"> <a href="#" addthis:url="" addthis:title="" class="share print self_print" ><span></span></a> </li>
<li class="tally"> <a href="#" class="share tally addthis_counter" ><span></span></a> </li>
</ul>
</div>
</div>
</div>
</div>
<div class="blog-content pinterest-images">
<p><a href="http://www.self.com/wp-content/uploads/2014/12/Taylor-Swift-lead.jpg"><img class="alignnone size-full wp-image-1109721" src="http://www.self.com/wp-content/themes/self-1.0.0/images/1x1.trans.gif" data-src="http://www.self.com/wp-content/uploads/2014/12/Taylor-Swift-lead.jpg" data-lazy-loaded="true" alt="Taylor-Swift-lead" width="600" height="400" /></a></p>
<p>Blair Waldorf who? The headband has come a long way from its schoolgirl reputation, thanks to the recent efforts of the always-stylish Taylor Swift. When she recently stepped out in NYC wearing a sparkly hair accessory, she demonstrated three must-know rules to follow when pulling off the accessory:</p><p><strong>Keep Your Hair’s Movement:</strong> Unless you’re fighting with grown-out bangs, refrain from pulling your headband straight back. Instead, keep your hair’s natural movement by placing your style on top of the hair, not under and behind the ears.</p>
<p><strong>Go Easy on Styling:</strong> The simplest way to keep the accessory from looking stuffy is to skip elaborate updos and ringlet curls. Keep the hair more natural and use the headband to add structure.</p>
<p><strong>Make It the Focal Point:</strong> With a piece of bling like Taylor’s, keep the rest of the beauty look soft. Although she wore fuchsia lipstick, the singer opted for a matte variety to tone-down the vivid hue.</p>
<p><strong>RELATED:</strong></p>
<ul>
<li><a href="http://www.self.com/flash/beauty-blog/2014/12/dry-hair-split-ends-fix-hair-oil-weleda/">The Game-Changing Oil for Dry Hair and Split Ends</a></li>
<li><a href="http://www.self.com/flash/beauty-blog/2014/12/five-travel-sized-hair-dryers-stand-test/">Five Travel-Sized Hair Dryers That Stand Up To The Test</a></li>
<li><a href="http://www.self.com/flash/beauty-blog/2014/12/wavy-bob-styling-tips/">Here’s More Proof That the Wavy Bob Is 2015’s “It” Cut</a></li>
</ul>
<p><span style="font-size: 11px;">Image Credit: <em>Getty</em></span></p>
<div class="blog-key">
KEYWORDS: <span class="keyword"><a href='http://www.self.com/tag/hair/'>Hair</a>,<a href='http://www.self.com/tag/headbands/'>headbands</a>,<a href='http://www.self.com/tag/taylor-swift/'>Taylor Swift</a></span></div>
<div class="social_share_data hidden-phone">
<div class="social-toolbar">
<div class="share-this share-this-sticky">
<ul class="share-links">
<li class="fb share"> <a href="#" class="share fb addthis_button_facebook" ><span></span></a> </li>
<li class="tw share"> <a href="#" addthis:url="http://on.self.com/1teldmd
" addthis:title="Headbands 101: Taylor Swift Taught a Master Class on the Subject via @SELFmagazine" class="share tw addthis_button_twitter" ><span></span></a> </li>
<li class="gp share"> <a href="#" class="share gp addthis_button_google" ><span></span></a> </li>
<li class="pn share"> <a href="#" class="share pn addthis_button_pinterest" ><span></span></a> </li>
<li class="em share"> <a href="#" addthis:url="" addthis:title="" class="share em addthis_button_mailto" ><span></span></a> </li>
<li class="print share"> <a href="#" addthis:url="" addthis:title="" class="share print self_print" ><span></span></a> </li>
<li class="tally"> <a href="#" class="share tally addthis_counter" ><span></span></a> </li>
</ul>
</div>
</div>
</div>
</div>
<div class="x-see-more">SEE MORE </div>
<div class="x-see-less">SEE LESS </div>
</div><!--blog section end -->
<div class="blognav blognav_tab">
<span class="blog-prev">
<a class="blog_navi" rel="next" href="http://www.self.com/flash/celebrity-blog/2014/12/jennifer-lawrence-cheers-for-louisville-cardinals/" title="Jennifer Lawrence Has the Right Spirit">
OLDER
</a>
</span>
<span class="blog-nex">
<a class="blog_navi" rel="next" href="http://www.self.com/flash/nutrition/2014/12/move-kale-theres-new-leafy-green-look/" title="Move Over Kale, There’s a New Leafy Green to Look Out For">
NEWER
</a>
</span>
</div>
<div class="pagination-wrap">
<div class="oldpost-box">
<a rel="next" href="http://www.self.com/flash/celebrity-blog/2014/12/jennifer-lawrence-cheers-for-louisville-cardinals/" title="Jennifer Lawrence Has the Right Spirit">
<div class="blog_navi">
<div class="blog_navi_title">Jennifer Lawrence Has the Right Spirit</div>
</div>
</a>
</div>
<div class="newpost-box">
<a rel="next" href="http://www.self.com/flash/nutrition/2014/12/move-kale-theres-new-leafy-green-look/" title="Move Over Kale, There’s a New Leafy Green to Look Out For">
<div class="blog_navi">
<div class="blog_navi_title">Move Over Kale, There’s a New Leafy Green to Look Out For</div>
</div>
</a>
</div>
</div>
<div id="zergnet-widget" class="visible-desktop visible-tablet">
<div class="zergent-title">What We're Reading</div>
<div id="zergnet-widget-22270"></div>
<script language="javascript" type="text/javascript">
(function() {
var zergnet = document.createElement('script');
zergnet.type = 'text/javascript'; zergnet.async = true;
zergnet.src = 'http://www.zergnet.com/zerg.js?id=22270';
var znscr = document.getElementsByTagName('script')[0];
znscr.parentNode.insertBefore(zergnet, znscr);
})();
</script>
</div>
<div class="sticky_bar visible-phone">
<div class = "social_sticky">
<img src="http://www.self.com/wp-content/themes/self-1.0.0/images/sticky_social.png" />
</div>
</div>
<div class = "visible-phone">
<div class="share-this sticky_social_icons share-this-sticky">
<ul class="share-links">
<li class="fb share"> <a href="#" class="share fb addthis_button_facebook" ><span></span></a> </li>
<li class="tw share"> <a href="#" addthis:url="http://on.self.com/1teldmd
" addthis:title="Headbands 101: Taylor Swift Taught a Master Class on the Subject via @SELFmagazine" class="share tw addthis_button_twitter" ><span></span></a> </li>
<li class="gp share"> <a href="#" class="share gp addthis_button_google" ><span></span></a> </li>
<li class="pn share"> <a href="#" class="share pn addthis_button_pinterest" ><span></span></a> </li>
<li class="em share"> <a href="#" addthis:url="" addthis:title="" class="share em addthis_button_mailto" ><span></span></a> </li>
<li class="print"><a href = "javascript:void(0);"> </a></li>
</ul>
</div>
</div>
<div class="comments-container col1">
<div class = "visible-phone show_hide_comments">
<span class = "hide_com"> Hide comments <img src = "http://www.self.com/wp-content/themes/self-1.0.0/images/show_hide_comments_up.png" /></span>
<span class = "show_com"> Show comments <img src = "http://www.self.com/wp-content/themes/self-1.0.0/images/show_hide_comments_down.png" /></span>
</div>
<div id="comments"><div class="loader">Loading Comments...</div></div> </div>
</div> <!--blog post end -->
</div> <!-- tabbed-features end -->
</div><!-- center-well end -->
</div>
<div class="row-fluid follow_us_tab visible-phone">
<div class="row-fluid" class="follow_self">
<img src="http://www.self.com/wp-content/themes/self-1.0.0/images/follow_self_text.png" />
</div>
<div class="social_icons">
<ul>
<li class="social-facebook">
<a href="https://facebook.com/selfmagazine" title="Facebook" target="_blank">Facebook</a>
</li>
<li class="social-twitter">
<a href="http://twitter.com/selfmagazine" title="Twitter" target="_blank">Twitter</a>
</li>
<li class="social-pinterest">
<a href="http://pinterest.com/selfmagazine/" title="Pinterest" target="_blank" >Pinterest</a>
</li>
<li class="social-gplus">
<a href="https://plus.google.com/app/basic/+selfmagazine/posts" title="Gplus" target="_blank">Gplus</a>
</li>
<li class="social-instragram">
<a href="http://instagram.com/selfmagazine" title="Instragram" target="_blank">Instragram</a>
</li>
<li class="clear">
</li>
</ul>
</div>
</div>
</div>
<div class="centre_well_sb_1">
<div id="sidebar1" class="fluid-sidebar sidebar pull-right" role="complementary">
<div>
<div class="row-fluid">
<!-- Package page extra content in sidebar start -->
<!-- Package page extra content in sidebar end -->
<div id="box-ad-sidebar" class="visible-desktop visible-tablet">
<span class="advt-slug">Advertisement</span>
<div class="box-ad-inner">
<div class="displayAd300x250Js"><div class="advertisement"><div id="homepage_rightrail_top300x250_frame" class="displayAd displayAd300x250Js" data-cb-ad-id="homepage_rightrail_top300x250_frame"></div><script type="text/javascript">if ( typeof CN !== "undefined" ) {
if ( ! CN.isMobile && CN.dart ) {
CN.dart.call( "homepage_rightrail_top", { sz: "300x250", kws: [ "top" ], collapse: true } );
}
}</script></div></div> </div>
</div>
<div class="text">
<div id="whats-new-now">
<div class="whats-new-title">
<h3 class="whats-new-flash">
Flash
</h3>
<span class="whats-new-tag">What's New Now </span>
</div>
<div class="whats-new-list">
<ul>
<li><a href="http://www.self.com/flash/fitness-blog/2015/01/workout-music-power-playlist-2015/">Your Power Playlist For A Killer Workout</a>
<span>15 hours ago</span>
</li>
<li><a href="http://www.self.com/flash/news/2015/01/white-castle-unveils-new-veggie-slider/">White Castle Unveils a New Veggie Slider</a>
<span>15 hours ago</span>
</li>
<li><a href="http://www.self.com/flash/sex-and-relationships/2015/01/5-resolutions-make-couple-tips-sticking/">5 Resolutions to Make as a Couple (And Tips for Sticking to Them)</a>
<span>18 hours ago</span>
</li>
</ul>
</div>
<a href="/flash" class="whats-new-more">More Blog Posts</a>
</div>
</div>
</div>
</div>
<!--flash section end -->
<div class="row-fluid">
<div class="visible-phone pagination-centered">
<div class="displayAd300x51Js"><div class="advertisement"><div id="homepage_rightrail_top320x51_frame" class="displayAd displayAd320x51Js" data-cb-ad-id="homepage_rightrail_top320x51_frame"></div><script type="text/javascript">if ( typeof CN !== "undefined" ) {
if ( CN.isMobile && CN.dart ) {
CN.dart.call( "homepage_rightrail_top", { sz: ( "320x51" ), kws: [ "bottom" ], collapse: true } );
}
}</script></div></div> </div>
</div>
</div>
</div>
<div class="centre_well_sb_2">
<div id="sidebar2" class="fluid-sidebar sidebar span4" role="complementary">
<div class="row-fluid follow_us_tab dotter_head ">
<div class="row-fluid" class="follow_self">
<div class="dotted_header">Follow Self</div>
</div>
<div class="social_icons">
<ul>
<li class="social-facebook">
<a href="https://facebook.com/selfmagazine" title="Facebook" target="_blank">Facebook</a>
</li>
<li class="social-twitter">
<a href="http://twitter.com/selfmagazine" title="Twitter" target="_blank">Twitter</a>
</li>
<li class="social-pinterest">
<a href="http://pinterest.com/selfmagazine" title="Pinterest" target="_blank" >Pinterest</a>
</li>
<li class="social-gplus visible-phone">
<a href="https://plus.google.com/app/basic/+selfmagazine/posts" title="Gplus" target="_blank">Gplus</a>
</li>
<li class="social-gplus hidden-phone">
<a href="https://plus.google.com/+selfmagazine/posts" title="Gplus" target="_blank">Gplus</a>
</li>
<li class="social-instragram">
<a href="http://instagram.com/selfmagazine" title="Instragram" target="_blank">Instragram</a>
</li>
<li class="clear">
</li>
</ul>
</div>
</div>
<div class="rightrail-nav">
<div class="row-fluid visible-desktop visible-tablet">
<div id="AMS_SLF_GLOBAL_RIGHTRAILNAV" class="ecom-placement"><div class="self-cm">Self</div><ul class="yrail-subs-nav"><li id="snav1"><a href="https://w1.buysub.com/loc/SLF/ATGFailsafe" target="_blank" title="Give a Subscription to Self magazine as a Gift">Subscribe</a></li><li id="snav2"><a href="https://w1.buysub.com/loc/SLF/ATGFailsafeGift" target="_blank" title="Give a Subscription to Self magazine as a Gift">Gift</a></li><li id="snav3"><a href="https://w1.buysub.com/servlet/CSGateway?cds_mag_code=SLF" target="_blank" title="Renew your Subscription to Self magazine">Renew</a></li><li id="snav4"><a href="https://w1.buysub.com/servlet/CSGateway?cds_mag_code=SLF" target="_blank" title="Subscription Questions and Answers for Self magazine">Questions</a></li></ul> <script type="text/javascript">
//<!--
if ( ( typeof pageAds != 'undefined') && ( CN.url.params( 'nojoy' ) != 1 ) ) {
(function(){
if ( typeof pageAds.AMS_SLF_GLOBAL_RIGHTRAILNAV != 'undefined' ) {
jQuery( "#AMS_SLF_GLOBAL_RIGHTRAILNAV" ).html( pageAds.AMS_SLF_GLOBAL_RIGHTRAILNAV.replace( /document.write\(.*\)/gi, "/* filtered by amg-magnet:document.write(...) */" ) );
jQuery( "#AMS_SLF_GLOBAL_RIGHTRAILNAV" ).css( { visibility: 'visible' } );
} else { CN.debug.info( "AMS_SLF_GLOBAL_RIGHTRAILNAV not in pageAds."); }
})();
}
//-->
</script>
</div> </div>
</div>
<div class="row-fluid x-most-popular ">
<div class ="most_pop dotter_head">
<div class="dotted_header">Most Popular</div>
<div class="most-views"><ol><li class="most_pop_odd"><a href="/flash/beauty-blog/2014/12/wavy-bob-styling-tips/"><div class="most-image-warpper"><img width="100" height="100" src="http://www.self.com/wp-content/themes/self-1.0.0/images/1x1.trans.gif" class="attachment-most-popular-img wp-post-image" alt="Elizabeth-Olsen-cut" enablelazyload="true" data-src="http://www.self.com/wp-content/uploads/2014/12/Elizabeth-Olsen-cut-100x100.png" /></div></a><a class="link_most_views" href="/flash/beauty-blog/2014/12/wavy-bob-styling-tips/">Here’s More Proof That the Wavy Bob Is 2015’s “It” Cut</a></li><li class="most_pop_even"><a href="/flash/nutrition/2014/07/pharmacist-approved-hangover-cure/"><div class="most-image-warpper"><img width="100" height="100" src="http://www.self.com/wp-content/themes/self-1.0.0/images/1x1.trans.gif" class="attachment-most-popular-img wp-post-image" alt="hangover-cure-7" enablelazyload="true" data-src="http://www.self.com/wp-content/uploads/2014/06/hangover-cure-7-100x100.jpg" /></div></a><a class="link_most_views" href="/flash/nutrition/2014/07/pharmacist-approved-hangover-cure/">A Pharmacist-Approved Hangover Cure (*Bookmark This!)</a></li><li class="most_pop_odd"><a href="/body/food/2010/03/20-superfoods-slideshow/"><div class="most-image-warpper"><div class='most-slide-icon'></div><img width="100" height="100" src="http://www.self.com/wp-content/themes/self-1.0.0/images/1x1.trans.gif" class="attachment-most-popular-img wp-post-image" alt="20-Slimming-Superfoods-300x300" enablelazyload="true" data-src="http://www.self.com/wp-content/uploads/2010/03/20-Slimming-Superfoods-300x300.jpg" /></div></a><a class="link_most_views" href="/body/food/2010/03/20-superfoods-slideshow/">20 Superfoods for Weight Loss</a></li><li class="most_pop_even"><a href="/body/workouts/2012/06/butt-workout-slideshow-2/"><div class="most-image-warpper"><div class='most-slide-icon'></div><img width="100" height="100" src="http://www.self.com/wp-content/themes/self-1.0.0/images/1x1.trans.gif" class="attachment-most-popular-img wp-post-image" alt="3MovesResizeButt" enablelazyload="true" data-src="http://www.self.com/wp-content/uploads/2012/06/3MovesResizeButt-100x100-1416005859.jpg" /></div></a><a class="link_most_views" href="/body/workouts/2012/06/butt-workout-slideshow-2/">6 Moves to Resize Your Butt and Thighs</a></li></ol></div> </div>
</div>
<div class="newsletter_mobile_hold visible-phone">
<div id="newsletterr" class="row-fluid newsletterr">