-
Notifications
You must be signed in to change notification settings - Fork 0
/
notes.html
1020 lines (1019 loc) · 135 KB
/
notes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html>
<head>
<script type='text/javascript' src="public/javascripts/jquery.js"></script>
<script type='text/javascript'>
jQuery(document).ready(function($) {
$(".daily_love_note").each(function(index) {
$('.iner').append('<p>'+$(this).text()+'</p>');
});
});
</script>
</head>
<body>
<div class="iner"></div>
<div style="display:none;">
<div class="archive_widget widget_taxonomy"><h4 class="archive">Recipient:</h4><select name='recipients' id='widget-taxonomy-4-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
</div><div class="archive_widget widget_taxonomy"><h4 class="archive">Occasion:</h4><select name='occasions' id='widget-taxonomy-3-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
<option class="level-0" value="world-day-for-cultural-diversity">World Day for Cultural Diversity (2)</option>
<a href="http://dailylovenotes.com/dln/october-2nd-2010/" rel="bookmark" title="October 2nd, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/logo.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-161 daily_love_note type-daily_love_note hentry logo font-nobile text-white percent-75 bold">
Your love makes me stronger, your love makes my heart beat softer, your love completes who I am!</p></div></div></a>
<div class="padding"></div>
<a href="http://dailylovenotes.com/dln/october-1-2010/" rel="bookmark" title="October 1, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/mystery_machine.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-168 daily_love_note type-daily_love_note hentry mystery-machine font-old-standard-tt text-white back-green">
I'd like to tell you, hold you, love you — forever!</p></div></div></a>
<div class="padding"></div>
<div style="visibility:hidden; height:0px;"><p>Max num pages: 18</p></div>
<div class="archive_widget widget_taxonomy"><h4 class="archive">Recipient:</h4><select name='recipients' id='widget-taxonomy-4-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
</div><div class="archive_widget widget_taxonomy"><h4 class="archive">Occasion:</h4><select name='occasions' id='widget-taxonomy-3-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
<option class="level-0" value="world-day-for-cultural-diversity">World Day for Cultural Diversity (2)</option>
<a href="http://dailylovenotes.com/dln/october-12th-2010/" rel="bookmark" title="October 12th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/long_hair.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-152 daily_love_note type-daily_love_note hentry long-hair font-neuton text-white percent-125">
I am true to the one I love, I am true to you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-10th-2010/" rel="bookmark" title="October 10th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/beat_poetry_by_tom_waits.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-149 daily_love_note type-daily_love_note hentry beat-poetry-by-tom-waits font-cardo text-orange back-beige percent-75">
10 years ago, 10 months ago, 10 days ago, I loved you. And in 10 days, 10 months and 10 years I will still love you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-8th-2010/" rel="bookmark" title="October 8th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/500_dream_lovers.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-142 daily_love_note type-daily_love_note hentry 500-dream-lovers font-tangerine text-white percent-175">
When I think of you, I know who love is and who love represents!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-6th-2010/" rel="bookmark" title="October 6th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/infatuation_elation.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-144 daily_love_note type-daily_love_note hentry infatuation-elation font-im-fell-double-pica text-red back-beige percent-75">
Call on me to make your day and night, call on me to hold you ever so tight, call me to make it just right!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-4th-2010/" rel="bookmark" title="October 4th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/powdered_sugar_cloud.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-158 daily_love_note type-daily_love_note hentry powdered-sugar-clouds georgia text-black percent-125">
The rain completes the perfect day as I caress you in my arms!</p></div></div></a>
<div class="padding"></div>
<a href="http://dailylovenotes.com/dln/october-11th-2010/" rel="bookmark" title="October 11th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/love_flowers.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-151 daily_love_note type-daily_love_note hentry love-flowers font-philosopher text-white back-red">
Roses may be red and violets may be blue but neither of them compares to the beauty of you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-9th-2010/" rel="bookmark" title="October 9th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/halcyon.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-141 daily_love_note type-daily_love_note hentry halcyon font-crimson-text text-beige back-brown percent-125 bold">
I come home to love, I come home to you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-7th-2010/" rel="bookmark" title="October 7th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/elegant2.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-143 daily_love_note type-daily_love_note hentry elegant-2 comic-sans text-beige percent-150">
Mom, you're still the prettiest girl I know!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-5th-2010/" rel="bookmark" title="October 5th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/moms_suit.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-145 daily_love_note type-daily_love_note hentry moms-suite font-tangerine text-brown percent-175 bold">
Treasured woman, you are my angel!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-3rd-2010/" rel="bookmark" title="October 3rd, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/dictate.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-159 daily_love_note type-daily_love_note hentry dictate font-vollkorn text-white">
I would love you again, I would hold you again, I would marry you again!</p></div></div></a>
<div class="padding"></div>
<div style="visibility:hidden; height:0px;"><p>Max num pages: 18</p></div>
<div class="nav-previous"><a href="http://dailylovenotes.com/daily-love-note-archives/page/16/" >« Previous Page</a></div><div class="nav-next"><a href="http://dailylovenotes.com/daily-love-note-archives/page/18/" >Next Page »</a></div>
markup: '<div class="pp_pic_holder"> \
<div class="pp_top"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_content_container"> \
<div class="pp_left"> \
<div class="pp_right"> \
<div class="pp_content"> \
<div class="pp_fade"> \
<div class="pp_loaderIcon"></div> \
<div class="pp_hoverContainer"> \
<div id="pp_full_res"></div> \
<div class="pp_details clearfix"> \
<div class="pp_nav"> \
<div class="pp_bottom"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_overlay"></div> \
<div class="ppt"></div>',
inline_markup: '<div class="pp_inline clearfix">{content}</div>'
<div class="archive_widget widget_taxonomy"><h4 class="archive">Recipient:</h4><select name='recipients' id='widget-taxonomy-4-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
</div><div class="archive_widget widget_taxonomy"><h4 class="archive">Occasion:</h4><select name='occasions' id='widget-taxonomy-3-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
<option class="level-0" value="world-day-for-cultural-diversity">World Day for Cultural Diversity (2)</option>
<a href="http://dailylovenotes.com/dln/october-22nd-2010/" rel="bookmark" title="October 22nd, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/in_the_backyard.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-179 daily_love_note type-daily_love_note hentry in-the-backyard font-droid-serif text-white back-brown percent-125">
Enjoy the time we share, so our love will never despair!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-20th-2010/" rel="bookmark" title="October 20th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/happy_bluzette.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-176 daily_love_note type-daily_love_note hentry happy-bluzette font-im-fell-double-pica text-black percent-125">
My loves stands for you. My love supports you. My love hopes for you. My love prays for you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-18th-2010/" rel="bookmark" title="October 18th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/sucks_you_in.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-173 daily_love_note type-daily_love_note hentry sucks-you-in font-cuprum text-white percent-125">
I don't need another chance to love you, I have the chance to love you NOW!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-16th-2010/" rel="bookmark" title="October 16th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/dictate.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-169 daily_love_note type-daily_love_note hentry dictate font-tangerine text-white percent-125">
A long time ago, I chose love. Your love!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-14th-2010/" rel="bookmark" title="October 14th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/shake_it_baby.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-154 daily_love_note type-daily_love_note hentry shake-it-baby font-yanone-kaffeesatz text-white percent-150 bold">
I would never want to love anyone other than you!</p></div></div></a>
<div class="padding"></div>
<a href="http://dailylovenotes.com/dln/october-21-2010/" rel="bookmark" title="October 21st, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/sour_chocolate.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-178 daily_love_note type-daily_love_note hentry sour-chocolate font-neucha text-brown back-white percent-100 italic">
I dreamed a fairytale last night and you were my princess!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-19th-2010/" rel="bookmark" title="October 19th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/playful_pals.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-175 daily_love_note type-daily_love_note hentry playful-pals font-ofl-sorts-mill-goudy-tt text-black percent-150 bold">
I love you, I will always love you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-17th-2010/" rel="bookmark" title="October 17th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/pat.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-172 daily_love_note type-daily_love_note hentry pat font-philosopher text-red percent-125">
You are my sweet delicate rose, with nary a thorn to hurt me.</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-15th-2010/" rel="bookmark" title="October 15th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/tenderness.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-157 daily_love_note type-daily_love_note hentry tenderness font-cardo text-black">
All of the impossible experiences in my life molded me into the person you have come to love!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-13th-2010/" rel="bookmark" title="October 13th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/maddiness.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-153 daily_love_note type-daily_love_note hentry maddiness font-molengo text-white percent-125 bold">
You are a lady like no other, you are graceful and divine, sensual and fine!!</p></div></div></a>
<div class="padding"></div>
<div style="visibility:hidden; height:0px;"><p>Max num pages: 18</p></div>
<div class="nav-previous"><a href="http://dailylovenotes.com/daily-love-note-archives/page/15/" >« Previous Page</a></div><div class="nav-next"><a href="http://dailylovenotes.com/daily-love-note-archives/page/17/" >Next Page »</a></div>
markup: '<div class="pp_pic_holder"> \
<div class="pp_top"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_content_container"> \
<div class="pp_left"> \
<div class="pp_right"> \
<div class="pp_content"> \
<div class="pp_fade"> \
<div class="pp_loaderIcon"></div> \
<div class="pp_hoverContainer"> \
<div id="pp_full_res"></div> \
<div class="pp_details clearfix"> \
<div class="pp_nav"> \
<div class="pp_bottom"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_overlay"></div> \
<div class="ppt"></div>',
inline_markup: '<div class="pp_inline clearfix">{content}</div>'
<div class="archive_widget widget_taxonomy"><h4 class="archive">Recipient:</h4><select name='recipients' id='widget-taxonomy-4-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
</div><div class="archive_widget widget_taxonomy"><h4 class="archive">Occasion:</h4><select name='occasions' id='widget-taxonomy-3-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
<option class="level-0" value="world-day-for-cultural-diversity">World Day for Cultural Diversity (2)</option>
<a href="http://dailylovenotes.com/dln/november-1st-2010/" rel="bookmark" title="November 1st, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/afro.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-200 daily_love_note type-daily_love_note hentry afro georgia text-blue back-beige percent-100 bold">
I enjoy the privilege of your love!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-30th-2010/" rel="bookmark" title="October 30th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/500_dream_lovers.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-197 daily_love_note type-daily_love_note hentry 500-dream-lovers arial text-beige percent-125 italic">
Let's fall in love, all over again!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-28th-2010/" rel="bookmark" title="October 28th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/elegant2.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-195 daily_love_note type-daily_love_note hentry elegant-2 font-droid-sans text-red back-beige percent-100">
Every day I love you, every day I long for you, every day I miss you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-26th-2010/" rel="bookmark" title="October 26th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/plaid.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-189 daily_love_note type-daily_love_note hentry plaid arial text-white percent-125 italic">
I know you, I love you, I so cherish you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-24th-2010/" rel="bookmark" title="October 24th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/nascer_do_sol2.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-182 daily_love_note type-daily_love_note hentry nascer-do-sol-2 font-cardo text-black bold">
Time reveals the secrets of a heart and each day time will reveal a new day of love for us to start!</p></div></div></a>
<div class="padding"></div>
<a href="http://dailylovenotes.com/dln/october-31st-2010/" rel="bookmark" title="October 31st, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/adorned_with_gold.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-199 daily_love_note type-daily_love_note hentry adorned-with-gold font-lobster text-white percent-100 italic">
The love I have for you grows with each additional moment!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-29th-2010/" rel="bookmark" title="October 29th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/circles_retro.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-196 daily_love_note type-daily_love_note hentry circles-retro font-im-fell-double-pica-sc text-blue back-beige percent-100 bold">
Yours, is a love worth living for, worth hoping for, worth enjoying, worth sharing!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-27th-2010/" rel="bookmark" title="October 27th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/uh-oh.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-192 daily_love_note type-daily_love_note hentry uh-oh font-crimson-text text-orange back-white percent-100 bold">
To know you is to love you and to love you is all I could ever hope for! </p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-25th-2010/" rel="bookmark" title="October 25th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/ice_cubes.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-183 daily_love_note type-daily_love_note hentry ice-cubes font-droid-sans text-red bold">
Time will give us love and make for magical moments which can never be taken away from us!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/october-23rd-2010/" rel="bookmark" title="October 23rd, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/cest_ta_saison.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-180 daily_love_note type-daily_love_note hentry cest-ta-saison font-inconsolata text-purple back-beige percent-75">
There was a time when love meant little to me, until you entered my life and began to love me!</p></div></div></a>
<div class="padding"></div>
<div style="visibility:hidden; height:0px;"><p>Max num pages: 18</p></div>
<div class="nav-previous"><a href="http://dailylovenotes.com/daily-love-note-archives/page/14/" >« Previous Page</a></div><div class="nav-next"><a href="http://dailylovenotes.com/daily-love-note-archives/page/16/" >Next Page »</a></div>
markup: '<div class="pp_pic_holder"> \
<div class="pp_top"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_content_container"> \
<div class="pp_left"> \
<div class="pp_right"> \
<div class="pp_content"> \
<div class="pp_fade"> \
<div class="pp_loaderIcon"></div> \
<div class="pp_hoverContainer"> \
<div id="pp_full_res"></div> \
<div class="pp_details clearfix"> \
<div class="pp_nav"> \
<div class="pp_bottom"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_overlay"></div> \
<div class="ppt"></div>',
inline_markup: '<div class="pp_inline clearfix">{content}</div>'
<div class="archive_widget widget_taxonomy"><h4 class="archive">Recipient:</h4><select name='recipients' id='widget-taxonomy-4-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
</div><div class="archive_widget widget_taxonomy"><h4 class="archive">Occasion:</h4><select name='occasions' id='widget-taxonomy-3-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
<option class="level-0" value="world-day-for-cultural-diversity">World Day for Cultural Diversity (2)</option>
<a href="http://dailylovenotes.com/dln/november-11th-2010/" rel="bookmark" title="November 11th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/pat.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-211 daily_love_note type-daily_love_note hentry pat times-new-roman text-purple percent-100 italic">
Your love has kissed my soul, granting me eternal happiness!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-9th-2010/" rel="bookmark" title="November 9th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/moms_suit.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-209 daily_love_note type-daily_love_note hentry moms-suite font-cardo text-orange back-beige percent-100 italic">
I stand and applaud you for being you, so wonderful, so loving, so perfect!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-7th-2010/" rel="bookmark" title="November 7th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/m_a_r.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-206 daily_love_note type-daily_love_note hentry m-a-r font-vollkorn text-red back-beige percent-100 bold">
I am yours to love in every moment!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-5th-2010/" rel="bookmark" title="November 5th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/dont_leaf_qlaudia1.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-204 daily_love_note type-daily_love_note hentry dont-leaf-qlaudia tahoma text-orange back-beige percent-100 italic">
More and more, I feel like loving you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-3rd-2010/" rel="bookmark" title="November 3rd, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/zhoozh.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-202 daily_love_note type-daily_love_note hentry zhoozh verdana text-purple percent-100 italic">
But for you, love would not have risen in my long lost heart!</p></div></div></a>
<div class="padding"></div>
<a href="http://dailylovenotes.com/dln/november-10th-2010/" rel="bookmark" title="November 10th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/maddiness.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-210 daily_love_note type-daily_love_note hentry maddiness font-nobile text-blue back-beige percent-100 bold">
Each morning, I would love to hold you a few minutes longer!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-8th-2010/" rel="bookmark" title="November 8th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/happy_bluzette.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-208 daily_love_note type-daily_love_note hentry happy-bluzette font-im-fell-great-primer-sc text-red back-white percent-100">
I can't tell you enough, I can't show you enough, I can't sing it loud enough, I love you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-6th-2010/" rel="bookmark" title="November 6th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/logo.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-205 daily_love_note type-daily_love_note hentry logo comic-sans text-blue back-beige percent-100 italic">
Even as I have tried to runaway from you, I've found myself running back to you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-4th-2010/" rel="bookmark" title="November 4th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/infatuation_elation.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-203 daily_love_note type-daily_love_note hentry infatuation-elation font-crimson-text text-orange back-beige percent-100">
The times I think of you make me smile, the times I hold you bring me warmth, the times I kiss you make me whole!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-2nd-2010/" rel="bookmark" title="November 2nd, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/brite.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-201 daily_love_note type-daily_love_note hentry brite font-nobile text-orange back-beige percent-100 bold">
I have faith in all that you do and faith in all that you are!</p></div></div></a>
<div class="padding"></div>
<div style="visibility:hidden; height:0px;"><p>Max num pages: 18</p></div>
<div class="nav-previous"><a href="http://dailylovenotes.com/daily-love-note-archives/page/13/" >« Previous Page</a></div><div class="nav-next"><a href="http://dailylovenotes.com/daily-love-note-archives/page/15/" >Next Page »</a></div>
markup: '<div class="pp_pic_holder"> \
<div class="pp_top"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_content_container"> \
<div class="pp_left"> \
<div class="pp_right"> \
<div class="pp_content"> \
<div class="pp_fade"> \
<div class="pp_loaderIcon"></div> \
<div class="pp_hoverContainer"> \
<div id="pp_full_res"></div> \
<div class="pp_details clearfix"> \
<div class="pp_nav"> \
<div class="pp_bottom"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_overlay"></div> \
<div class="ppt"></div>',
inline_markup: '<div class="pp_inline clearfix">{content}</div>'
<div class="archive_widget widget_taxonomy"><h4 class="archive">Recipient:</h4><select name='recipients' id='widget-taxonomy-4-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
</div><div class="archive_widget widget_taxonomy"><h4 class="archive">Occasion:</h4><select name='occasions' id='widget-taxonomy-3-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
<option class="level-0" value="world-day-for-cultural-diversity">World Day for Cultural Diversity (2)</option>
<a href="http://dailylovenotes.com/dln/november-21st-2010/" rel="bookmark" title="November 21st, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/weird.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-223 daily_love_note type-daily_love_note hentry weird font-vollkorn text-orange back-white percent-100 italic">
Each day, we share a great love affair!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-19th-2010/" rel="bookmark" title="November 19th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/wedding_veil.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-220 daily_love_note type-daily_love_note hentry wedding-veil font-droid-sans-mono text-purple percent-100 italic">
I love you endlessly with my warm heart and I will love you forever!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-17th-2010/" rel="bookmark" title="November 17th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/in_the_backyard.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-218 daily_love_note type-daily_love_note hentry in-the-backyard font-vollkorn text-brown back-white percent-100 italic">
Everyday of my life, I love you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-15th-2010/" rel="bookmark" title="November 15th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/frog_prince1.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-215 daily_love_note type-daily_love_note hentry frog-prince font-crimson-text text-purple back-white percent-100">
The laughter of our children reminds me of all things love, all things you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-13th-2010/" rel="bookmark" title="November 13th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/500_dream_lovers.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-213 daily_love_note type-daily_love_note hentry 500-dream-lovers arial text-red back-beige percent-100">
All of my hopes are wrapped in your dreams!</p></div></div></a>
<div class="padding"></div>
<a href="http://dailylovenotes.com/dln/november-20th-2010/" rel="bookmark" title="November 20th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/cuddle_attack.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-222 daily_love_note type-daily_love_note hentry cuddle-attack font-cuprum text-red percent-125">
Make the time to fall in love, again!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-18th-2010/" rel="bookmark" title="November 18th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/afro.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-219 daily_love_note type-daily_love_note hentry afro font-cantarell text-brown back-beige percent-100 italic">
Surround me with your love, feed my joy in each moment!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-16th-2010/" rel="bookmark" title="November 16th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/i_want_to_remix_you.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-217 daily_love_note type-daily_love_note hentry i-want-to-remix-you font-im-fell-dw-pica-sc text-black percent-100 italic">
In an instant, you laugh, I laugh, and we love forever!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-14th-2010/" rel="bookmark" title="November 14th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/adorned_with_gold.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-214 daily_love_note type-daily_love_note hentry adorned-with-gold font-cantarell text-orange back-white">
There is no greater love than the love I share with you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-12th-2010/" rel="bookmark" title="November 12th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/pink_love.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-212 daily_love_note type-daily_love_note hentry pink-love font-im-fell-double-pica text-blue back-white percent-100 italic">
Come sing a song and dance a dance with me!</p></div></div></a>
<div class="padding"></div>
<div style="visibility:hidden; height:0px;"><p>Max num pages: 18</p></div>
<div class="nav-previous"><a href="http://dailylovenotes.com/daily-love-note-archives/page/12/" >« Previous Page</a></div><div class="nav-next"><a href="http://dailylovenotes.com/daily-love-note-archives/page/14/" >Next Page »</a></div>
markup: '<div class="pp_pic_holder"> \
<div class="pp_top"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_content_container"> \
<div class="pp_left"> \
<div class="pp_right"> \
<div class="pp_content"> \
<div class="pp_fade"> \
<div class="pp_loaderIcon"></div> \
<div class="pp_hoverContainer"> \
<div id="pp_full_res"></div> \
<div class="pp_details clearfix"> \
<div class="pp_nav"> \
<div class="pp_bottom"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_overlay"></div> \
<div class="ppt"></div>',
inline_markup: '<div class="pp_inline clearfix">{content}</div>'
<div class="archive_widget widget_taxonomy"><h4 class="archive">Recipient:</h4><select name='recipients' id='widget-taxonomy-4-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
</div><div class="archive_widget widget_taxonomy"><h4 class="archive">Occasion:</h4><select name='occasions' id='widget-taxonomy-3-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
<option class="level-0" value="world-day-for-cultural-diversity">World Day for Cultural Diversity (2)</option>
<a href="http://dailylovenotes.com/dln/december-1st-2010/" rel="bookmark" title="December 1st, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/lady_of_the_lake.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-234 daily_love_note type-daily_love_note hentry lady-of-the-lake font-neucha text-green back-beige percent-100">
Every moment is an opportunity to love someone special, you are my someone special!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-29th-2010/" rel="bookmark" title="November 29th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/not_just_black.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-231 daily_love_note type-daily_love_note hentry not-just-black arial-black text-green back-white percent-100 italic">
Every son should have a father like you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-27th-2010/" rel="bookmark" title="November 27th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/i_want_to_remix_you.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-229 daily_love_note type-daily_love_note hentry i-want-to-remix-you font-philosopher text-white percent-100 bold">
My ship has finally come in!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-25th-2010/" rel="bookmark" title="November 25th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/gentleman_of_quality.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-227 daily_love_note type-daily_love_note hentry gentleman-of-quality font-im-fell-great-primer text-orange back-beige percent-100 italic">
The feelings I have for you, make me willing to take a chance on you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-23rd-2010/" rel="bookmark" title="November 23rd, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/lady_of_the_lake.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-225 daily_love_note type-daily_love_note hentry lady-of-the-lake courier-new text-red percent-75 bold italic">
These feelings of love I have for you, will only grow in their strength and intensity!</p></div></div></a>
<div class="padding"></div>
<a href="http://dailylovenotes.com/dln/november-30th-2010/" rel="bookmark" title="November 30th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/dottie.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-233 daily_love_note type-daily_love_note hentry dottie font-inconsolata text-blue back-beige percent-100 italic">
I close my eyes, I place my hand to my heart and I salute you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-28th-2010/" rel="bookmark" title="November 28th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/not_just_black.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-230 daily_love_note type-daily_love_note hentry not-just-black font-tangerine text-orange back-white percent-125 italic">
I don't want tomorrow, I want today, I want you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-26th-2010/" rel="bookmark" title="November 26th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/lazy_together.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-228 daily_love_note type-daily_love_note hentry lazy-together font-neucha text-purple back-beige percent-100 italic">
When I look at you or think of you, there is never a moment of doubt!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-24th-2010/" rel="bookmark" title="November 24th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/flowers.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-226 daily_love_note type-daily_love_note hentry flowers font-molengo text-beige percent-100 italic">
Thank you for loving me! </p></div></div></a>
<a href="http://dailylovenotes.com/dln/november-22nd-2010/" rel="bookmark" title="November 22nd, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/m_a_r.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-224 daily_love_note type-daily_love_note hentry m-a-r font-josefin-sans-std-light text-blue back-beige percent-100 italic">
Even after all of the time we've shared together, I still want more with you!</p></div></div></a>
<div class="padding"></div>
<div style="visibility:hidden; height:0px;"><p>Max num pages: 18</p></div>
<div class="nav-previous"><a href="http://dailylovenotes.com/daily-love-note-archives/page/11/" >« Previous Page</a></div><div class="nav-next"><a href="http://dailylovenotes.com/daily-love-note-archives/page/13/" >Next Page »</a></div>
markup: '<div class="pp_pic_holder"> \
<div class="pp_top"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_content_container"> \
<div class="pp_left"> \
<div class="pp_right"> \
<div class="pp_content"> \
<div class="pp_fade"> \
<div class="pp_loaderIcon"></div> \
<div class="pp_hoverContainer"> \
<div id="pp_full_res"></div> \
<div class="pp_details clearfix"> \
<div class="pp_nav"> \
<div class="pp_bottom"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_overlay"></div> \
<div class="ppt"></div>',
inline_markup: '<div class="pp_inline clearfix">{content}</div>'
<div class="archive_widget widget_taxonomy"><h4 class="archive">Recipient:</h4><select name='recipients' id='widget-taxonomy-4-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
</div><div class="archive_widget widget_taxonomy"><h4 class="archive">Occasion:</h4><select name='occasions' id='widget-taxonomy-3-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
<option class="level-0" value="world-day-for-cultural-diversity">World Day for Cultural Diversity (2)</option>
<a href="http://dailylovenotes.com/dln/december-11th-2010/" rel="bookmark" title="December 11th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/circles.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-250 daily_love_note type-daily_love_note hentry circles font-crimson-text text-red back-green percent-100 italic">
Tomorrow won't matter if we don't love each other, today!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-9th-2010/" rel="bookmark" title="December 9th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/cest_ta_saison.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-243 daily_love_note type-daily_love_note hentry cest-ta-saison courier-new text-purple percent-100">
People come and go, while a friendship like ours lasts forever!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-7th-2010/" rel="bookmark" title="December 7th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/bracelets.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-241 daily_love_note type-daily_love_note hentry bracelets font-cardo text-blue back-white percent-100 italic">
I loved you in an instant, I'll love you forever!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-5th-2010/" rel="bookmark" title="December 5th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/american_werewolf.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-239 daily_love_note type-daily_love_note hentry american-werewolf font-cardo text-white percent-100 italic">
I will shelter you with my heart and surround you with my loving soul!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-3rd-2010/" rel="bookmark" title="December 3rd, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/adorned_with_gold.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-236 daily_love_note type-daily_love_note hentry adorned-with-gold arial-black text-purple back-beige percent-100 italic">
Long before I met you, I dreamed of the first day when we would meet!</p></div></div></a>
<div class="padding"></div>
<a href="http://dailylovenotes.com/dln/december-10th-2010/" rel="bookmark" title="December 10th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/bracelets.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-248 daily_love_note type-daily_love_note hentry bracelets courier-new text-orange back-white percent-100 italic">
If I could have you, I would have you forever and ever!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-8th-2010/" rel="bookmark" title="December 8th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/brite.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-242 daily_love_note type-daily_love_note hentry brite comic-sans text-purple back-beige percent-100">
Your slow wet kisses make my soul come alive!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-6th-2010/" rel="bookmark" title="December 6th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/beat_poetry_by_tom_waits.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-240 daily_love_note type-daily_love_note hentry beat-poetry-by-tom-waits font-cardo text-orange back-white percent-100">
Yours is a love so soft, a love so sweet, a love so complete!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-4th-2010/" rel="bookmark" title="December 4th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/afro.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-237 daily_love_note type-daily_love_note hentry afro font-cantarell text-red back-beige percent-100">
The time we spend together is the time we make for love!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-2nd-2010/" rel="bookmark" title="December 2nd, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/500_dream_lovers.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-235 daily_love_note type-daily_love_note hentry 500-dream-lovers arial text-beige percent-100">
Whether near or far my sweet, I love you as you are!</p></div></div></a>
<div class="padding"></div>
<div style="visibility:hidden; height:0px;"><p>Max num pages: 18</p></div>
<div class="nav-previous"><a href="http://dailylovenotes.com/daily-love-note-archives/page/10/" >« Previous Page</a></div><div class="nav-next"><a href="http://dailylovenotes.com/daily-love-note-archives/page/12/" >Next Page »</a></div>
markup: '<div class="pp_pic_holder"> \
<div class="pp_top"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_content_container"> \
<div class="pp_left"> \
<div class="pp_right"> \
<div class="pp_content"> \
<div class="pp_fade"> \
<div class="pp_loaderIcon"></div> \
<div class="pp_hoverContainer"> \
<div id="pp_full_res"></div> \
<div class="pp_details clearfix"> \
<div class="pp_nav"> \
<div class="pp_bottom"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_overlay"></div> \
<div class="ppt"></div>',
inline_markup: '<div class="pp_inline clearfix">{content}</div>'
<div class="archive_widget widget_taxonomy"><h4 class="archive">Recipient:</h4><select name='recipients' id='widget-taxonomy-4-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
</div><div class="archive_widget widget_taxonomy"><h4 class="archive">Occasion:</h4><select name='occasions' id='widget-taxonomy-3-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
<option class="level-0" value="world-day-for-cultural-diversity">World Day for Cultural Diversity (2)</option>
<a href="http://dailylovenotes.com/dln/december-21st-2010/" rel="bookmark" title="December 21st, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/elegant.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-272 daily_love_note type-daily_love_note hentry elegant georgia text-black back-beige percent-75">
The time to love is now, the reason to love is you, the purpose of love is our lifelong happiness!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-19th-2010/" rel="bookmark" title="December 19th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/dottie.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-270 daily_love_note type-daily_love_note hentry dottie font-im-fell-double-pica text-purple back-beige percent-100 italic">
In my lifetime, I have had at least one dream to come true-YOU!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-17th-2010/" rel="bookmark" title="December 17th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/dictate.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-263 daily_love_note type-daily_love_note hentry dictate font-droid-serif text-beige percent-100 italic">
I will deliver your fondest dreams!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-15th-2010/" rel="bookmark" title="December 15th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/dandelion_puff.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-259 daily_love_note type-daily_love_note hentry dandelion-puff font-droid-sans-mono text-green back-white percent-100 italic">
Everyday you become more beautiful, more sexy, more desirable!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-13th-2010/" rel="bookmark" title="December 13th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/circles_retro.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-254 daily_love_note type-daily_love_note hentry circles-retro font-cuprum text-blue back-beige percent-100 italic">
The passing years have shown, you've kept my love so young, so new!</p></div></div></a>
<div class="padding"></div>
<a href="http://dailylovenotes.com/dln/december-20th-2010/" rel="bookmark" title="December 20th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/drops_of_fire.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-271 daily_love_note type-daily_love_note hentry drops-of-fire font-im-fell-double-pica-sc text-brown back-beige percent-100 italic">
The best times of my life have been spent with you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-18th-2010/" rel="bookmark" title="December 18th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/dont_leaf_qlaudia1.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-269 daily_love_note type-daily_love_note hentry dont-leaf-qlaudia georgia text-red back-beige percent-100">
I was blessed the day I found you, and now I will build my world around you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-16th-2010/" rel="bookmark" title="December 16th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/daydreamer.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-261 daily_love_note type-daily_love_note hentry daydreamer font-droid-sans-mono text-white back-green percent-75 italic">
Every star in the sky, represents a day of love between you and I!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-14th-2010/" rel="bookmark" title="December 14th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/cuddle_attack.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-256 daily_love_note type-daily_love_note hentry cuddle-attack font-droid-sans text-orange back-white percent-75 italic">
In a moment's notice I would love you, in the blink of an eye I would hold you, in every second I would choose you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-12th-2010/" rel="bookmark" title="December 12th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/circles_retro.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-252 daily_love_note type-daily_love_note hentry circles-retro font-crimson-text text-red back-beige percent-100">
From sunrise to sunset, this day and the next, I will love you!</p></div></div></a>
<div class="padding"></div>
<div style="visibility:hidden; height:0px;"><p>Max num pages: 18</p></div>
<div class="nav-previous"><a href="http://dailylovenotes.com/daily-love-note-archives/page/9/" >« Previous Page</a></div><div class="nav-next"><a href="http://dailylovenotes.com/daily-love-note-archives/page/11/" >Next Page »</a></div>
markup: '<div class="pp_pic_holder"> \
<div class="pp_top"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_content_container"> \
<div class="pp_left"> \
<div class="pp_right"> \
<div class="pp_content"> \
<div class="pp_fade"> \
<div class="pp_loaderIcon"></div> \
<div class="pp_hoverContainer"> \
<div id="pp_full_res"></div> \
<div class="pp_details clearfix"> \
<div class="pp_nav"> \
<div class="pp_bottom"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_overlay"></div> \
<div class="ppt"></div>',
inline_markup: '<div class="pp_inline clearfix">{content}</div>'
<div class="archive_widget widget_taxonomy"><h4 class="archive">Recipient:</h4><select name='recipients' id='widget-taxonomy-4-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
</div><div class="archive_widget widget_taxonomy"><h4 class="archive">Occasion:</h4><select name='occasions' id='widget-taxonomy-3-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
<option class="level-0" value="world-day-for-cultural-diversity">World Day for Cultural Diversity (2)</option>
<div>Oops, something went wrong.</div>
<div class="padding"></div>
<div>Oops, something went wrong.</div>
<div class="padding"></div>
<div style="visibility:hidden; height:0px;"><p>Max num pages: 18</p></div>
<div class="nav-previous"><a href="http://dailylovenotes.com/daily-love-note-archives/page/18/" >« Previous Page</a></div><div class="nav-next"></div>
markup: '<div class="pp_pic_holder"> \
<div class="pp_top"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_content_container"> \
<div class="pp_left"> \
<div class="pp_right"> \
<div class="pp_content"> \
<div class="pp_fade"> \
<div class="pp_loaderIcon"></div> \
<div class="pp_hoverContainer"> \
<div id="pp_full_res"></div> \
<div class="pp_details clearfix"> \
<div class="pp_nav"> \
<div class="pp_bottom"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_overlay"></div> \
<div class="ppt"></div>',
inline_markup: '<div class="pp_inline clearfix">{content}</div>'
<div class="archive_widget widget_taxonomy"><h4 class="archive">Recipient:</h4><select name='recipients' id='widget-taxonomy-4-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
</div><div class="archive_widget widget_taxonomy"><h4 class="archive">Occasion:</h4><select name='occasions' id='widget-taxonomy-3-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
<option class="level-0" value="world-day-for-cultural-diversity">World Day for Cultural Diversity (2)</option>
<a href="http://dailylovenotes.com/dln/december-31st-2010/" rel="bookmark" title="December 31st, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/halcyon.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-288 daily_love_note type-daily_love_note hentry halcyon font-im-fell-french-canon text-purple back-beige percent-75 italic">
The first time I knew you my dear!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-29th-2010/" rel="bookmark" title="December 29th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/girly_tiger.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-286 daily_love_note type-daily_love_note hentry girly-tiger font-im-fell-english text-red back-white percent-100 italic">
You are the inspiration for my love!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-27th-2010/" rel="bookmark" title="December 27th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/gaga.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-282 daily_love_note type-daily_love_note hentry gaga font-im-fell-dw-pica text-red back-white percent-100 bold italic">
It's the gift of your heart that means the most to me!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-25th-2010/" rel="bookmark" title="December 25th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/flowers.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-279 daily_love_note type-daily_love_note hentry flowers font-im-fell-double-pica-sc text-green back-white percent-75">
Merry Christmas sweetheart, your love and tenderness make me even more thankful during this time of the year!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-23rd-2010/" rel="bookmark" title="December 23rd, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/feeling_brown.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-275 daily_love_note type-daily_love_note hentry feeling-brown font-im-fell-double-pica text-blue back-beige percent-100 italic">
A love as sweet as yours is a love worth celebrating!</p></div></div></a>
<div class="padding"></div>
<a href="http://dailylovenotes.com/dln/december-30th-2010/" rel="bookmark" title="December 30th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/gold.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-287 daily_love_note type-daily_love_note hentry gold font-im-fell-english-sc text-purple back-black percent-75 italic">
Right now, is the perfect time to love you, right now is the perfect time to hold you, right now and forever I love you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-28th-2010/" rel="bookmark" title="December 28th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/gentleman_of_quality.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-284 daily_love_note type-daily_love_note hentry gentleman-of-quality font-im-fell-english text-brown back-beige percent-100 italic">
I hold your hand and I come to know what is real, what true love means!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-26th-2010/" rel="bookmark" title="December 26th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/frog_prince1.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-280 daily_love_note type-daily_love_note hentry frog-prince font-im-fell-dw-pica text-blue back-white percent-100 italic">
You are the only one who makes my love shout!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-24th-2010/" rel="bookmark" title="December 24th, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/flaunt_my_deux_cent.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-278 daily_love_note type-daily_love_note hentry flaunt-my-deux-cent font-im-fell-double-pica-sc text-red back-white percent-100 italic">
My days and nights seem perfect as you lie helplessly in my arms!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/december-22nd-2010/" rel="bookmark" title="December 22nd, 2010" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/elegant2.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-274 daily_love_note type-daily_love_note hentry elegant-2 font-im-fell-double-pica text-white percent-100">
I hope today and everyday you will be showered with love and laughter!</p></div></div></a>
<div class="padding"></div>
<div style="visibility:hidden; height:0px;"><p>Max num pages: 18</p></div>
<div class="nav-previous"><a href="http://dailylovenotes.com/daily-love-note-archives/page/8/" >« Previous Page</a></div><div class="nav-next"><a href="http://dailylovenotes.com/daily-love-note-archives/page/10/" >Next Page »</a></div>
markup: '<div class="pp_pic_holder"> \
<div class="pp_top"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_content_container"> \
<div class="pp_left"> \
<div class="pp_right"> \
<div class="pp_content"> \
<div class="pp_fade"> \
<div class="pp_loaderIcon"></div> \
<div class="pp_hoverContainer"> \
<div id="pp_full_res"></div> \
<div class="pp_details clearfix"> \
<div class="pp_nav"> \
<div class="pp_bottom"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_overlay"></div> \
<div class="ppt"></div>',
inline_markup: '<div class="pp_inline clearfix">{content}</div>'
<div class="archive_widget widget_taxonomy"><h4 class="archive">Recipient:</h4><select name='recipients' id='widget-taxonomy-4-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
</div><div class="archive_widget widget_taxonomy"><h4 class="archive">Occasion:</h4><select name='occasions' id='widget-taxonomy-3-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
<option class="level-0" value="world-day-for-cultural-diversity">World Day for Cultural Diversity (2)</option>
<a href="http://dailylovenotes.com/dln/january-10th-2011/" rel="bookmark" title="January 10th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/long_hair.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-298 daily_love_note type-daily_love_note hentry long-hair font-molengo text-purple back-white percent-100 italic">
Our togetherness grants us so many joys and laughter!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-8th-2011/" rel="bookmark" title="January 8th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/lazy_together.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-296 daily_love_note type-daily_love_note hentry lazy-together lucida-console text-beige back-green percent-100 italic">
Hey, hey, I'll miss you today!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-6th-2011/" rel="bookmark" title="January 6th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/infatuation_elation.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-294 daily_love_note type-daily_love_note hentry infatuation-elation font-josefin-sans-std-light text-orange back-beige percent-100 italic">
In a quiet moment, I extend not only my hand, but my heart!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-4th-2011/" rel="bookmark" title="January 4th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/ice_cubes.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-292 daily_love_note type-daily_love_note hentry ice-cubes impact text-red percent-100 italic">
I only wish everyone could love someone as beautiful as you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-2nd-2011/" rel="bookmark" title="January 2nd, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/horizon.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-290 daily_love_note type-daily_love_note hentry horizon font-im-fell-french-canon text-purple percent-100 italic">
As the sun came up today, I felt your smile and all its warmth!</p></div></div></a>
<div class="padding"></div>
<a href="http://dailylovenotes.com/dln/january-9th-2011/" rel="bookmark" title="January 9th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/logo.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-297 daily_love_note type-daily_love_note hentry logo lucida-sans-unicode text-blue back-white percent-100">
Again last night, I dreamt a dream of you and your happiness!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-7th-2011/" rel="bookmark" title="January 7th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/lady_of_the_lake.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-295 daily_love_note type-daily_love_note hentry lady-of-the-lake font-lobster text-red percent-100 italic">
From the beginning of the day until its end, you are forever on my mind!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-5th-2011/" rel="bookmark" title="January 5th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/in_the_backyard.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-293 daily_love_note type-daily_love_note hentry in-the-backyard font-inconsolata text-black back-beige percent-75 bold italic">
Only the words of the sweetest love song can capture my love for you and all that you have become!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-3rd-2011/" rel="bookmark" title="January 3rd, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/i_want_to_remix_you.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-291 daily_love_note type-daily_love_note hentry i-want-to-remix-you font-im-fell-french-canon-sc text-green back-beige percent-100 italic">
When I consider all of the time we spend together, I remember why I am happiest!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-1st-2011/" rel="bookmark" title="January 1st, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/happy_bluzette.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-289 daily_love_note type-daily_love_note hentry happy-bluzette font-im-fell-french-canon text-blue back-beige percent-100 italic">
On this, the first day of the year, I pledge my love anew!</p></div></div></a>
<div class="padding"></div>
<div style="visibility:hidden; height:0px;"><p>Max num pages: 18</p></div>
<div class="nav-previous"><a href="http://dailylovenotes.com/daily-love-note-archives/page/7/" >« Previous Page</a></div><div class="nav-next"><a href="http://dailylovenotes.com/daily-love-note-archives/page/9/" >Next Page »</a></div>
markup: '<div class="pp_pic_holder"> \
<div class="pp_top"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_content_container"> \
<div class="pp_left"> \
<div class="pp_right"> \
<div class="pp_content"> \
<div class="pp_fade"> \
<div class="pp_loaderIcon"></div> \
<div class="pp_hoverContainer"> \
<div id="pp_full_res"></div> \
<div class="pp_details clearfix"> \
<div class="pp_nav"> \
<div class="pp_bottom"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_overlay"></div> \
<div class="ppt"></div>',
inline_markup: '<div class="pp_inline clearfix">{content}</div>'
<div class="archive_widget widget_taxonomy"><h4 class="archive">Recipient:</h4><select name='recipients' id='widget-taxonomy-4-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
</div><div class="archive_widget widget_taxonomy"><h4 class="archive">Occasion:</h4><select name='occasions' id='widget-taxonomy-3-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
<option class="level-0" value="world-day-for-cultural-diversity">World Day for Cultural Diversity (2)</option>
<a href="http://dailylovenotes.com/dln/january-20th-2011/" rel="bookmark" title="January 20th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/nascer_do_sol.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-309 daily_love_note type-daily_love_note hentry nascer-do-sol font-pt-sans-caption text-beige back-red percent-100">
Listen to the secrets my heart wants to share with you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-18th-2011/" rel="bookmark" title="January 18th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/500_dream_lovers.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-306 daily_love_note type-daily_love_note hentry 500-dream-lovers palatino-linotype text-white back-red percent-100 italic">
Yesterday, today, tomorrow, forever!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-16th-2011/" rel="bookmark" title="January 16th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/millistellar.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-304 daily_love_note type-daily_love_note hentry millistellar font-old-standard-tt text-orange back-white percent-100 italic">
In the perfect evening, we will share a kiss, a hug, some chocolate and a long embrace!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-14th-2011/" rel="bookmark" title="January 14th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/mellonious2.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-302 daily_love_note type-daily_love_note hentry mellonious-2 font-ofl-sorts-mill-goudy-tt text-white back-red percent-100 italic">
Trust is the sacred vow, I shall never betray!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-12th-2011/" rel="bookmark" title="January 12th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/m_a_r2.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-300 daily_love_note type-daily_love_note hentry m-a-r-2 font-neuton text-purple back-beige percent-100">
Day by day, moment by moment, my love for you grows!</p></div></div></a>
<div class="padding"></div>
<a href="http://dailylovenotes.com/dln/january-19th-2011/" rel="bookmark" title="January 19th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/mystery_machine.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-308 daily_love_note type-daily_love_note hentry mystery-machine font-philosopher text-white percent-100 italic">
By now, you should know, just how much I love you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-17th-2011/" rel="bookmark" title="January 17th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/moms_suit.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-305 daily_love_note type-daily_love_note hentry moms-suite palatino-linotype text-white back-red percent-100 italic">
I know only one love, the love I have for you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-15th-2011/" rel="bookmark" title="January 15th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/melt_neapolitan_tartan.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-303 daily_love_note type-daily_love_note hentry melt-neapolitan-tartan font-ofl-sorts-mill-goudy-tt text-purple back-beige percent-100 italic">
As I might gaze at the snow-capped mountains, I see a beauty that will never equal yours!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-13th-2011/" rel="bookmark" title="January 13th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/maddiness.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-301 daily_love_note type-daily_love_note hentry maddiness font-nobile text-orange back-white percent-100 italic">
The pleasure in us being apart is the anticipation of seeing you again!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-11-2011/" rel="bookmark" title="January 11th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/love_flowers.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-299 daily_love_note type-daily_love_note hentry love-flowers font-neucha text-black back-beige percent-100">
As you have my heart, you enjoy my everlasting love!</p></div></div></a>
<div class="padding"></div>
<div style="visibility:hidden; height:0px;"><p>Max num pages: 18</p></div>
<div class="nav-previous"><a href="http://dailylovenotes.com/daily-love-note-archives/page/6/" >« Previous Page</a></div><div class="nav-next"><a href="http://dailylovenotes.com/daily-love-note-archives/page/8/" >Next Page »</a></div>
markup: '<div class="pp_pic_holder"> \
<div class="pp_top"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_content_container"> \
<div class="pp_left"> \
<div class="pp_right"> \
<div class="pp_content"> \
<div class="pp_fade"> \
<div class="pp_loaderIcon"></div> \
<div class="pp_hoverContainer"> \
<div id="pp_full_res"></div> \
<div class="pp_details clearfix"> \
<div class="pp_nav"> \
<div class="pp_bottom"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_overlay"></div> \
<div class="ppt"></div>',
inline_markup: '<div class="pp_inline clearfix">{content}</div>'
<div class="archive_widget widget_taxonomy"><h4 class="archive">Recipient:</h4><select name='recipients' id='widget-taxonomy-4-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
</div><div class="archive_widget widget_taxonomy"><h4 class="archive">Occasion:</h4><select name='occasions' id='widget-taxonomy-3-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
<option class="level-0" value="world-day-for-cultural-diversity">World Day for Cultural Diversity (2)</option>
<a href="http://dailylovenotes.com/dln/january-30th-2011/" rel="bookmark" title="January 30th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/500_dream_lovers.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-336 daily_love_note type-daily_love_note hentry 500-dream-lovers arial back-beige percent-100 italic">
The touch of your skin and the scent of your aroma make my spirit come alive!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-28th-2011/" rel="bookmark" title="January 28th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/pineapple_slices.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-321 daily_love_note type-daily_love_note hentry pineapple-slices palatino-linotype back-white percent-100 italic">
Right now, I prefer to be kissing you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-26th-2011/" rel="bookmark" title="January 26th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/ornamental.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-319 daily_love_note type-daily_love_note hentry ornamental font-ofl-sorts-mill-goudy-tt text-white percent-100 italic">
Yes, I do, I shall, I will and more importantly, I will continue to love you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-24th-2011/" rel="bookmark" title="January 24th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/navajo.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-313 daily_love_note type-daily_love_note hentry navajo font-tangerine text-orange back-white percent-125 italic">
For just a moment of your love, I will travel near and far!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-22nd-2011/" rel="bookmark" title="January 22nd, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/nascer_do_sol3.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-311 daily_love_note type-daily_love_note hentry nascer-do-sol-3 font-reenie-beanie text-white percent-150 italic">
Join me in a dance of love and joy!</p></div></div></a>
<div class="padding"></div>
<a href="http://dailylovenotes.com/dln/january-29th-2011/" rel="bookmark" title="January 29th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/pink_autumn_leaves.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-322 daily_love_note type-daily_love_note hentry pink-autumn-leaves font-philosopher text-white percent-100 italic">
You make everyday perfect!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-27th-2011/" rel="bookmark" title="January 27th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/pat.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-320 daily_love_note type-daily_love_note hentry pat font-old-standard-tt text-orange percent-100">
As I think of love, I see you in every moment!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-25th-2011/" rel="bookmark" title="January 25th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/not_just_black.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-314 daily_love_note type-daily_love_note hentry not-just-black font-tangerine text-red back-white percent-150 italic">
Love is the only answer, love is the only reason, love is the only way!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-23rd-2011/" rel="bookmark" title="January 23rd, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/500_dream_lovers.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-312 daily_love_note type-daily_love_note hentry 500-dream-lovers tahoma text-white percent-100 italic">
I'll do anything, for you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-21st-2011/" rel="bookmark" title="January 21st, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/nascer_do_sol2.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-310 daily_love_note type-daily_love_note hentry nascer-do-sol-2 font-pt-sans-narrow text-orange back-beige percent-100 italic">
I have sat and thought, wished and dreamed, hoped and longed, and finally realized my dreams have come true!</p></div></div></a>
<div class="padding"></div>
<div style="visibility:hidden; height:0px;"><p>Max num pages: 18</p></div>
<div class="nav-previous"><a href="http://dailylovenotes.com/daily-love-note-archives/page/5/" >« Previous Page</a></div><div class="nav-next"><a href="http://dailylovenotes.com/daily-love-note-archives/page/7/" >Next Page »</a></div>
markup: '<div class="pp_pic_holder"> \
<div class="pp_top"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_content_container"> \
<div class="pp_left"> \
<div class="pp_right"> \
<div class="pp_content"> \
<div class="pp_fade"> \
<div class="pp_loaderIcon"></div> \
<div class="pp_hoverContainer"> \
<div id="pp_full_res"></div> \
<div class="pp_details clearfix"> \
<div class="pp_nav"> \
<div class="pp_bottom"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_overlay"></div> \
<div class="ppt"></div>',
inline_markup: '<div class="pp_inline clearfix">{content}</div>'
<div class="archive_widget widget_taxonomy"><h4 class="archive">Recipient:</h4><select name='recipients' id='widget-taxonomy-4-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
</div><div class="archive_widget widget_taxonomy"><h4 class="archive">Occasion:</h4><select name='occasions' id='widget-taxonomy-3-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
<option class="level-0" value="world-day-for-cultural-diversity">World Day for Cultural Diversity (2)</option>
<a href="http://dailylovenotes.com/dln/february-9th-2011/" rel="bookmark" title="February 9th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/cuddle_attack.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-347 daily_love_note type-daily_love_note hentry cuddle-attack font-droid-serif text-blue back-white percent-100">
Your love inspires me to do more, to give more, to share more!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-7th-2011/" rel="bookmark" title="February 7th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/circles.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-344 daily_love_note type-daily_love_note hentry circles font-droid-sans-mono text-white back-red percent-100">
I shall never want to awake from our dream!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-5th-2011/" rel="bookmark" title="February 5th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/brite.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-342 daily_love_note type-daily_love_note hentry brite font-cuprum text-white back-red percent-100 italic">
Will you hold my hand, as I hold yours?</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-3rd-2011/" rel="bookmark" title="February 3rd, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/beat_poetry_by_tom_waits.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-340 daily_love_note type-daily_love_note hentry beat-poetry-by-tom-waits courier-new text-orange back-white percent-100 italic">
I will share my love with you, daily!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-1st-2011/" rel="bookmark" title="February 1st, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/afro.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-338 daily_love_note type-daily_love_note hentry afro font-cardo text-brown back-beige percent-100 italic">
You evoke a passion, I never knew existed!</p></div></div></a>
<div class="padding"></div>
<a href="http://dailylovenotes.com/dln/february-8th-2011/" rel="bookmark" title="February 8th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/circles_retro.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-346 daily_love_note type-daily_love_note hentry circles-retro font-droid-sans-mono text-green back-beige percent-100 italic">
On a cloudy day, I have you to make me smile!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-6th-2011/" rel="bookmark" title="February 6th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/cest_ta_saison.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-343 daily_love_note type-daily_love_note hentry cest-ta-saison font-droid-sans text-white percent-100 italic">
You are the rose of my life and with each bloom you remind me of your beauty!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-4th-2011/" rel="bookmark" title="February 4th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/bracelets.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-341 daily_love_note type-daily_love_note hentry bracelets font-crimson-text text-red back-white percent-100">
I cherish all that we have shared together and all that we have wished for!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-2nd-2011/" rel="bookmark" title="February 2nd, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/american_werewolf.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-339 daily_love_note type-daily_love_note hentry american-werewolf font-cardo text-blue back-white percent-100 bold">
I invite you into my heart to share a life based on love and respect!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/january-31st-2011/" rel="bookmark" title="January 31st, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/adorned_with_gold.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-337 daily_love_note type-daily_love_note hentry adorned-with-gold font-cantarell back-beige percent-100 italic">
As our souls touch, we become one!</p></div></div></a>
<div class="padding"></div>
<div style="visibility:hidden; height:0px;"><p>Max num pages: 18</p></div>
<div class="nav-previous"><a href="http://dailylovenotes.com/daily-love-note-archives/page/4/" >« Previous Page</a></div><div class="nav-next"><a href="http://dailylovenotes.com/daily-love-note-archives/page/6/" >Next Page »</a></div>
markup: '<div class="pp_pic_holder"> \
<div class="pp_top"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_content_container"> \
<div class="pp_left"> \
<div class="pp_right"> \
<div class="pp_content"> \
<div class="pp_fade"> \
<div class="pp_loaderIcon"></div> \
<div class="pp_hoverContainer"> \
<div id="pp_full_res"></div> \
<div class="pp_details clearfix"> \
<div class="pp_nav"> \
<div class="pp_bottom"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_overlay"></div> \
<div class="ppt"></div>',
inline_markup: '<div class="pp_inline clearfix">{content}</div>'
<div class="archive_widget widget_taxonomy"><h4 class="archive">Recipient:</h4><select name='recipients' id='widget-taxonomy-4-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
</div><div class="archive_widget widget_taxonomy"><h4 class="archive">Occasion:</h4><select name='occasions' id='widget-taxonomy-3-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
<option class="level-0" value="world-day-for-cultural-diversity">World Day for Cultural Diversity (2)</option>
<a href="http://dailylovenotes.com/dln/february-14th-2011-5-am/" rel="bookmark" title="February 14th, 2011 (5 am)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/flaunt_my_deux_cent.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-375 daily_love_note type-daily_love_note hentry flaunt-my-deux-cent font-philosopher text-red back-white percent-100 bold">
After all these years with so many laughs and tears, I am still happy to call you my very own Valentine!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14th-2011-3am/" rel="bookmark" title="February 14th, 2011 (3am)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/elegant2.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-373 daily_love_note type-daily_love_note hentry elegant-2 font-lobster text-beige percent-100 italic">
Be my Valentine, today and forever!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14th-2011-1-am/" rel="bookmark" title="February 14th, 2011 (1 am)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/circles.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-371 daily_love_note type-daily_love_note hentry circles font-cardo text-red back-beige percent-100">
Mom, you were my first Valentine and you remain as my favorite Valentine!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-13th-2011/" rel="bookmark" title="February 13th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/dont_leaf_qlaudia1.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-351 daily_love_note type-daily_love_note hentry dont-leaf-qlaudia font-im-fell-dw-pica text-orange back-white percent-100 italic">
Take a chance on love, take a chance on loving me!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-11th-2011/" rel="bookmark" title="February 11th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/daydreamer.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-349 daily_love_note type-daily_love_note hentry daydreamer font-im-fell-double-pica text-orange back-green percent-100 italic">
I was hopeless and loveless until you loved me!</p></div></div></a>
<div class="padding"></div>
<a href="http://dailylovenotes.com/dln/february-14th-2011-4am/" rel="bookmark" title="February 14th, 2011 (4am)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/girly_tiger.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-374 daily_love_note type-daily_love_note hentry girly-tiger font-ofl-sorts-mill-goudy-tt text-white percent-100 italic">
On everyday I love you, but especially today-Happy Valentine's Day!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14th-2011-2-am/" rel="bookmark" title="February 14th, 2011 (2 am)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/elegant.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-372 daily_love_note type-daily_love_note hentry elegant font-cuprum text-white percent-100">
Happy Valentine's Day, I love you more this year than last year!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14th-2011-midnight/" rel="bookmark" title="February 14th, 2011 (Midnight)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/500_dream_lovers.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-370 daily_love_note type-daily_love_note hentry 500-dream-lovers font-cantarell text-white percent-100 italic">
On this Valentine's Day and every Valentine's Day, you have my heart!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-12th-2011/" rel="bookmark" title="February 12th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/dictate.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-350 daily_love_note type-daily_love_note hentry dictate font-im-fell-double-pica-sc text-purple back-beige percent-100">
I will make room, I will make time, I will make a way for your love!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-10th-2011/" rel="bookmark" title="February 10th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/dandelion_puff.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-348 daily_love_note type-daily_love_note hentry dandelion-puff georgia text-orange back-white percent-100 italic">
A single moment will never define our love, but a lifetime of moments shared together will define who we are and who we were!</p></div></div></a>
<div class="padding"></div>
<div style="visibility:hidden; height:0px;"><p>Max num pages: 18</p></div>
<div class="nav-previous"><a href="http://dailylovenotes.com/daily-love-note-archives/page/3/" >« Previous Page</a></div><div class="nav-next"><a href="http://dailylovenotes.com/daily-love-note-archives/page/5/" >Next Page »</a></div>
markup: '<div class="pp_pic_holder"> \
<div class="pp_top"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_content_container"> \
<div class="pp_left"> \
<div class="pp_right"> \
<div class="pp_content"> \
<div class="pp_fade"> \
<div class="pp_loaderIcon"></div> \
<div class="pp_hoverContainer"> \
<div id="pp_full_res"></div> \
<div class="pp_details clearfix"> \
<div class="pp_nav"> \
<div class="pp_bottom"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_overlay"></div> \
<div class="ppt"></div>',
inline_markup: '<div class="pp_inline clearfix">{content}</div>'
<div class="archive_widget widget_taxonomy"><h4 class="archive">Recipient:</h4><select name='recipients' id='widget-taxonomy-4-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
</div><div class="archive_widget widget_taxonomy"><h4 class="archive">Occasion:</h4><select name='occasions' id='widget-taxonomy-3-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
<option class="level-0" value="world-day-for-cultural-diversity">World Day for Cultural Diversity (2)</option>
<a href="http://dailylovenotes.com/dln/february-14th-2011-1500/" rel="bookmark" title="February 14th, 2011 (1500)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/tenderness.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-385 daily_love_note type-daily_love_note hentry tenderness font-josefin-sans-std-light text-red percent-100 italic">
Make this Valentine's Day extra special, say you will marry me!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14th-2011-1pm/" rel="bookmark" title="February 14th, 2011 (1300)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/sucks_you_in.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-383 daily_love_note type-daily_love_note hentry sucks-you-in arial text-beige percent-100 italic">
On this Day, this beautiful Valentine's Day, give me your love, give me your heart, give me your soul!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14th-2011-11am/" rel="bookmark" title="February 14th, 2011 (11am)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/pink_imagination.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-381 daily_love_note type-daily_love_note hentry pink-imagination font-reenie-beanie text-red back-white percent-100 italic">
The magic of a Valentine's Day spent with you is the love that comes pouring from your heart, your soul!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14th-2011-9am/" rel="bookmark" title="February 14th, 2011 (9am)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/pineapple_slices.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-379 daily_love_note type-daily_love_note hentry pineapple-slices font-pt-sans-caption text-white back-red percent-100 italic">
Light the candles, turn out the lights, cue the music and make me your Valentine tonight!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14th-2011-7am/" rel="bookmark" title="February 14th, 2011 (7am)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/nascer_do_sol5.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-377 daily_love_note type-daily_love_note hentry nascer-do-sol-5 font-ofl-sorts-mill-goudy-tt text-white percent-100">
Because I have you, I have every reason to celebrate Valentine's Day!!</p></div></div></a>
<div class="padding"></div>
<a href="http://dailylovenotes.com/dln/february-14th-2011-1400/" rel="bookmark" title="February 14th, 2011 (1400)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/sweet_and_soft.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-384 daily_love_note type-daily_love_note hentry sweet-and-soft font-pt-sans-caption text-purple back-beige percent-100">
Let me, let me love you like you want to be loved!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14th-2011-noon/" rel="bookmark" title="February 14th, 2011 (noon)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/pink_love.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-382 daily_love_note type-daily_love_note hentry pink-love font-tangerine text-white percent-125 bold">
We share one heart, one love, one lifetime in each Valentine's Day!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14th-2011-10am/" rel="bookmark" title="February 14th, 2011 (10am)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/pink_autumn_leaves.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-380 daily_love_note type-daily_love_note hentry pink-autumn-leaves font-im-fell-great-primer text-white italic">
Let's spend this Valentine's Day at home alone with only each other to occupy our thoughts and passion!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14th-2011/" rel="bookmark" title="February 14th, 2011 (8am)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/dottie.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-352 daily_love_note type-daily_love_note hentry dottie font-im-fell-dw-pica-sc text-red back-white percent-100">
On this Valentine's Day and every Valentine's Day, I Love you with all of my heart!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14th-2011-6am/" rel="bookmark" title="February 14th, 2011 (6am)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/love_flowers.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-376 daily_love_note type-daily_love_note hentry love-flowers verdana text-purple text-red back-beige percent-100">
My simple wish is to be your one and only Valentine!</p></div></div></a>
<div class="padding"></div>
<div style="visibility:hidden; height:0px;"><p>Max num pages: 18</p></div>
<div class="nav-previous"><a href="http://dailylovenotes.com/daily-love-note-archives/page/2/" >« Previous Page</a></div><div class="nav-next"><a href="http://dailylovenotes.com/daily-love-note-archives/page/4/" >Next Page »</a></div>
markup: '<div class="pp_pic_holder"> \
<div class="pp_top"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_content_container"> \
<div class="pp_left"> \
<div class="pp_right"> \
<div class="pp_content"> \
<div class="pp_fade"> \
<div class="pp_loaderIcon"></div> \
<div class="pp_hoverContainer"> \
<div id="pp_full_res"></div> \
<div class="pp_details clearfix"> \
<div class="pp_nav"> \
<div class="pp_bottom"> \
<div class="pp_left"></div> \
<div class="pp_middle"></div> \
<div class="pp_right"></div> \
<div class="pp_overlay"></div> \
<div class="ppt"></div>',
inline_markup: '<div class="pp_inline clearfix">{content}</div>'
<div class="archive_widget widget_taxonomy"><h4 class="archive">Recipient:</h4><select name='recipients' id='widget-taxonomy-4-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
</div><div class="archive_widget widget_taxonomy"><h4 class="archive">Occasion:</h4><select name='occasions' id='widget-taxonomy-3-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
<option class="level-0" value="world-day-for-cultural-diversity">World Day for Cultural Diversity (2)</option>
<a href="http://dailylovenotes.com/dln/february-16th-2011/" rel="bookmark" title="February 16th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/elegant.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-354 daily_love_note type-daily_love_note hentry elegant font-im-fell-english text-white percent-100 italic">
You are the perfect day come true!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14th-2011-2300/" rel="bookmark" title="February 14th, 2011 (2300)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/tokyo_night_club.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-393 daily_love_note type-daily_love_note hentry tokyo-night-club tahoma text-red back-white percent-100 italic">
Happy Valentine's Day, you have always been my rock and provided me strength through your unquestioned love!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14th-2010-2100/" rel="bookmark" title="February 14th, 2010 (2100)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/summer_flowers.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-390 daily_love_note type-daily_love_note hentry summer-flowers font-inconsolata text-white percent-100">
Happy Valentine's Day, I wish you a day of joy, filled with happiness, warmth and love!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14th-2011-1900/" rel="bookmark" title="February 14th, 2011 (1900)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/sdcfscfw.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-389 daily_love_note type-daily_love_note hentry sdcfscfw font-reenie-beanie text-orange back-white percent-100 italic">
I have only to say, that your still so lovely and its because I love you that I dedicate this day to you!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14th-2011-1700/" rel="bookmark" title="February 14th, 2011 (1700)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/wedding_veil.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-387 daily_love_note type-daily_love_note hentry wedding-veil font-neucha text-red percent-125 italic">
Valentine, sweet Valentine, be my forever Valentine!</p></div></div></a>
<div class="padding"></div>
<a href="http://dailylovenotes.com/dln/february-15th-2011/" rel="bookmark" title="February 15th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/drops_of_fire.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-353 daily_love_note type-daily_love_note hentry drops-of-fire font-im-fell-english text-brown back-white percent-100">
I discovered happiness the day you walked into my life!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14th-2011-2200/" rel="bookmark" title="February 14th, 2011 (2200)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/to_plaid_or_to_play.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-392 daily_love_note type-daily_love_note hentry to-plaid-or-to-play trebuchet text-beige percent-100 italic">
While Valentine's Day may be important, you are the reason I choose to love!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14th-2011-2000/" rel="bookmark" title="February 14th, 2011 (2000)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/summer_hug.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-391 daily_love_note type-daily_love_note hentry summer-hug text-orange back-white percent-100 italic">
Your smile still makes my heart flutter!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14th-2011-1800/" rel="bookmark" title="February 14th, 2011 (1800)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/powdered_sugar_cloud.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-388 daily_love_note type-daily_love_note hentry powdered-sugar-clouds font-pt-sans-caption text-red percent-100">
Yours is a love so true, yours is a love meant for me and you, yours is a love for this day of Valentine's!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-14-2011-1600/" rel="bookmark" title="February 14th, 2011 (1600)" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/wavy.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-386 daily_love_note type-daily_love_note hentry wavy font-inconsolata text-white percent-125 italic">
Happy Valentine's Day, I love you very dearly!</p></div></div></a>
<div class="padding"></div>
<div style="visibility:hidden; height:0px;"><p>Max num pages: 18</p></div>
<div class="nav-previous"><a href="http://dailylovenotes.com/daily-love-note-archives/" >« Previous Page</a></div><div class="nav-next"><a href="http://dailylovenotes.com/daily-love-note-archives/page/3/" >Next Page »</a></div>
<div class="archive_widget widget_taxonomy"><h4 class="archive">Recipient:</h4><select name='recipients' id='widget-taxonomy-4-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
</div><div class="archive_widget widget_taxonomy"><h4 class="archive">Occasion:</h4><select name='occasions' id='widget-taxonomy-3-mfields_taxonomy_widget_dropdown_wrapper' class='postform' >
<option class="level-0" value="world-day-for-cultural-diversity">World Day for Cultural Diversity (2)</option>
<a href="http://dailylovenotes.com/dln/february-26th-2011/" rel="bookmark" title="February 26th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/american_werewolf.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-414 daily_love_note type-daily_love_note hentry american-werewolf font-cardo text-red back-beige percent-100">
Every time you need me, I will be there!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-24th-2011/" rel="bookmark" title="February 24th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/navajo.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-411 daily_love_note type-daily_love_note hentry navajo font-philosopher text-blue back-white percent-100 italic">
True love never dies, it grows stronger much like ours has!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-22nd-2011/" rel="bookmark" title="February 22nd, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/adorned_with_gold.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-408 daily_love_note type-daily_love_note hentry adorned-with-gold font-cantarell text-red back-beige percent-100 italic">
The only place I belong is in your arms!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-20th-2011/" rel="bookmark" title="February 20th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/cest_ta_saison.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-404 daily_love_note type-daily_love_note hentry cest-ta-saison trebuchet text-blue back-beige percent-100 italic">
I ask you to greet me, hold me, love me!</p></div></div></a>
<a href="http://dailylovenotes.com/dln/february-18th-2011/" rel="bookmark" title="February 18th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/09/daydreamer.png'); background-repeat:repeat;">
<div class="dln_text"><p class="post-401 daily_love_note type-daily_love_note hentry daydreamer font-lobster text-white percent-100 italic">
Come on over and relax in my arms!</p></div></div></a>
<div class="padding"></div>
<a href="http://dailylovenotes.com/dln/february-25th-2011/" rel="bookmark" title="February 25th, 2011" target="_parent"><div class="dln_format" style="background-image:url('http://dailylovenotes.com/wp-content/uploads/2010/10/afro.png'); background-repeat:repeat;">