-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdanh-sach.html
1703 lines (1610 loc) · 87.8 KB
/
danh-sach.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="vi">
<!-- Mirrored from docln.net/danh-sach by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 20 Jun 2022 00:43:29 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Danh sách truyện - Cổng Light Novel - Đọc Light Novel</title>
<meta name="description" content="Đọc Light Novel online, bình luận Light Novel. Thư viện Light Novel Tiếng Việt lớn nhất, chất lượng cao, cập nhật liên tục, nhiều chức năng hỗ trợ việc đọc truyện dễ dàng.">
<meta name="theme-color" content="#000">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="csrf-token" content="gVFHwBP685stu3GmWYlTsLSYzJfvzezE4J49tCFY">
<meta name="logged-in" content="0">
<meta property="fb:app_id" content="1864643850436909">
<link rel="canonical" href="danh-sach.html">
<meta property="og:image" content="img/nocover.png">
<link rel="preload" href="fonts/OpenSans-Regular.ttf" as="font" type="font/ttf" crossorigin="anonymous">
<link rel="preload" href="fonts/OpenSans-SemiBold.ttf" as="font" type="font/ttf" crossorigin="anonymous">
<link rel="preconnect" href="https://www.google-analytics.com/">
<link rel="shortcut icon" href="img/favicon30f4.png?v=3">
<link rel="apple-touch-icon" sizes="57x57" href="img/apple-touch-icon30f4.png?v=3">
<link rel="apple-touch-icon" sizes="72x72" href="img/apple-touch-icon-72x7230f4.png?v=3">
<link rel="apple-touch-icon" sizes="114x114" href="img/apple-touch-icon-114x11430f4.png?v=3">
<link rel="stylesheet" href="css/interface26e1.css?id=116ca9f1e941e666d030">
<link rel="stylesheet" href="../cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.min.css" integrity="sha256-BtbhCIbtfeVWGsqxk1vOHEYXS6qcvQvLMZqjtpWUEx8=" crossorigin="anonymous" />
<script src="scripts/plugins9049.js?id=d4e173046ae81fa34b07"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-34864968-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-34864968-3');
</script>
</head>
<body>
<div id="page-top"></div>
<div data-scrollto="#page-top" class="backtoTop"><i class="fas fa-angle-double-up"></i></div>
<div id="navbar" class="headroom">
<div class="container">
<div id="sidenav-icon" class="none-xl none-l">
<div class="sidenav-icon-content">
<span class="sidenav-icon_white"></span>
<span class="sidenav-icon_white"></span>
<span class="sidenav-icon_white"></span>
</div>
<ul class="navbar-menu none hidden-block at-mobile unstyle">
<div class="navbar-search block none-m in-navbar-menu">
<form class="" action="https://docln.net/tim-kiem" method="get">
<input class="search-input" type="text" placeholder="Tối thiểu 2 kí tự" name="keywords" value="">
<button class="search-submit" type="submit" value="Tìm kiếm"><i class="fas fa-search"></i></button>
</form>
</div>
<li><a class="nav-menu_item" href="sang-tac.html"><span class="">Sáng tác</span></a></li>
<li><a class="nav-menu_item" href="convert.html"><span class="">Convert</span></a></li>
<li><a class="nav-menu_item" href="xuat-ban.html"><span class="">Xuất bản</span></a></li>
<li><a class="nav-menu_item" href="thao-luan.html"><span class="">Thảo luận</span></a></li>
<li><a class="nav-menu_item" href="danh-sach.html"><span class="">Danh sách</span></a></li>
<li class="nav-has-submenu">
<a class="nav-menu_item">
<span class="">Hướng dẫn</span>
<i class="fas fa-chevron-down dropdown-icon" style="float: right; margin-top: 6px"></i>
</a>
<ul class="nav-submenu list-unstyled none">
<li><a href="thao-luan/368-huong-dan-dang-truyen.html"><span>Đăng truyện</span></a></li>
<li><a href="thao-luan/2-gioi-thieu-cong-light-novel.html"><span>Giới thiệu</span></a></li>
<li><a href="thao-luan/1-mo-trang-thao-luan-gop-y-va-bao-loi.html"><span>Góp ý - Báo lỗi</span></a></li>
<li><a href="privacy-policy.html"><span>Privacy Policy</span></a></li>
</ul>
</li>
</ul>
</div>
<div class="navbar-logo-wrapper">
<a href="index.html" class="navbar-logo" style="background-image: url('img/logo-9.png')" title="Trang chủ"></a>
</div>
<div id="navbar-user" class="guest">
<a class="login-link" href="login.html">Đăng nhập</a>
<div id="guest-menu">
<div class="icon">
<span class="white-point"></span>
<span class="white-point"></span>
<span class="white-point"></span>
</div>
<ul class="nav-submenu hidden-block unstyled none">
<li>
<div class="nightmode-toggle li-inner">
<span><i class="fas fa-moon"></i>Nền tối</span>
<div class="toggle-icon">
<i class="fa fa-toggle-off"></i>
</div>
</div>
</li>
<li>
<a class="li-inner" href="lich-su-doc.html"><i class="fas fa-history"></i><span>Lịch sử</span></a>
</li>
</ul>
</div>
</div>
<div class="navbar-mainblock">
<div class="navbar-search none block-m">
<form class="" action="https://docln.net/tim-kiem" method="get">
<input class="search-input" type="text" placeholder="Tối thiểu 2 kí tự" name="keywords" value="">
<button class="search-submit" type="submit" value="Tìm kiếm"><i class="fas fa-search"></i></button>
</form>
</div>
<ul class="navbar-menu at-navbar none d-lg-block unstyled">
<li><a class="nav-menu_item" href="sang-tac.html"><i class="fas fa-pen-nib menu-icon"></i><span class="">Sáng tác</span></a></li>
<li><a class="nav-menu_item" href="convert.html"><i class="fas fa-book menu-icon"></i><span class="">Convert</span></a></li>
<li><a class="nav-menu_item" href="xuat-ban.html"><i class="fas fa-calendar menu-icon"></i><span class="">Xuất bản</span></a></li>
<li><a class="nav-menu_item" href="thao-luan.html"><i class="fas fa-users menu-icon"></i><span class="">Thảo luận</span></a></li>
<li><a class="nav-menu_item" href="danh-sach.html"><i class="fas fa-th-list menu-icon"></i><span class="">Danh sách</span></a></li>
<li class="nav-has-submenu">
<a class="nav-menu_item">
<i class="fas fa-question menu-icon"></i><span class="">Hướng dẫn</span>
<i class="fas fa-chevron-down dropdown-icon"></i>
<i class="fas fa-chevron-right dropdown-icon"></i>
</a>
<ul class="nav-submenu hidden-block unstyled none">
<li><a href="thao-luan/368-huong-dan-dang-truyen.html"><span>Đăng truyện</span></a></li>
<li><a href="thao-luan/2-gioi-thieu-cong-light-novel.html"><span>Giới thiệu</span></a></li>
<li><a href="thao-luan/1-mo-trang-thao-luan-gop-y-va-bao-loi.html"><span>Góp ý - Báo lỗi</span></a></li>
<li><a href="privacy-policy.html"><span>Privacy Policy</span></a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<div class="page-top-group">
<div class="index-background"></div>
</div>
<form method="get">
<main id="mainpart" class="browser-page">
<div style="text-align: center; margin: 0 auto 10px auto;">
</div>
<div class="container">
<div class="page-breadcrumb">
<span class="breadcrum-level"><a href="index.html"><i class="fas fa-home"></i></a></span>
<span class="next-icon"><i class="fas fa-chevron-right"></i></span>
<span class="breadcrum-level"><a href="danh-sach.html">Danh sách</a></span>
</div>
</div>
<div class="container">
<div class="row d-block clear">
<div class="col-12 none d-lg-block col-lg-3 float-right filters-wrapper">
<div class="none-l pad-bottom-20 text-right pad-top-20">
<span class="js-off-filters-wrapper button button-red">Tắt bộ lọc</span>
</div>
<section class="sub-index-style">
<div class="title-wrapper">
<div class="section-title">Chữ cái</div>
</div>
<div class="browse-alphabet">
<a class="alphabet_item current " href="danh-sach.html">Tất cả</a>
<a class="alphabet_item " href="danh-sach/khac.html">#</a>
<a class="alphabet_item " href="danh-sach/a.html">A</a>
<a class="alphabet_item " href="danh-sach/b.html">B</a>
<a class="alphabet_item " href="danh-sach/c.html">C</a>
<a class="alphabet_item " href="danh-sach/d.html">D</a>
<a class="alphabet_item " href="danh-sach/e.html">E</a>
<a class="alphabet_item " href="danh-sach/f.html">F</a>
<a class="alphabet_item " href="danh-sach/g.html">G</a>
<a class="alphabet_item " href="danh-sach/h.html">H</a>
<a class="alphabet_item " href="danh-sach/i.html">I</a>
<a class="alphabet_item " href="danh-sach/j.html">J</a>
<a class="alphabet_item " href="danh-sach/k.html">K</a>
<a class="alphabet_item " href="danh-sach/l.html">L</a>
<a class="alphabet_item " href="danh-sach/m.html">M</a>
<a class="alphabet_item " href="danh-sach/n.html">N</a>
<a class="alphabet_item " href="danh-sach/o.html">O</a>
<a class="alphabet_item " href="danh-sach/p.html">P</a>
<a class="alphabet_item " href="danh-sach/q.html">Q</a>
<a class="alphabet_item " href="danh-sach/r.html">R</a>
<a class="alphabet_item " href="danh-sach/s.html">S</a>
<a class="alphabet_item " href="danh-sach/t.html">T</a>
<a class="alphabet_item " href="danh-sach/u.html">U</a>
<a class="alphabet_item " href="danh-sach/v.html">V</a>
<a class="alphabet_item " href="danh-sach/w.html">W</a>
<a class="alphabet_item " href="danh-sach/x.html">X</a>
<a class="alphabet_item " href="danh-sach/y.html">Y</a>
<a class="alphabet_item " href="danh-sach/z.html">Z</a>
</div>
</section>
<section class="sub-index-style filter-section">
<div class="title-wrapper">
<div class="section-title">Phân loại</div>
</div>
<div class="section-content">
<ul class="filter-type unstyled">
<li><input type="checkbox" name="truyendich" value="1" checked> Truyện dịch</li>
<li><input type="checkbox" name="sangtac" value="1"> Truyện sáng tác</li>
<li><input type="checkbox" name="convert" value="1"> Convert</li>
</ul>
<div class="submit-wrapper">
<input type="submit" class="button button-primary-green" value="Áp dụng">
</div>
</div>
</section>
<section class="sub-index-style filter-section">
<div class="title-wrapper">
<div class="section-title">Tình trạng</div>
</div>
<div class="section-content">
<ul class="filter-type unstyled">
<li><input type="checkbox" name="dangtienhanh" value="1" checked> Đang tiến hành</li>
<li><input type="checkbox" name="tamngung" value="1" checked> Tạm ngưng</li>
<li><input type="checkbox" name="hoanthanh" value="1" checked> Đã hoàn thành</li>
</ul>
<div class="submit-wrapper">
<input type="submit" class="button button-primary-green" value="Áp dụng">
</div>
</div>
</section>
<section class="sub-index-style">
<div class="title-wrapper">
<div class="section-title">Phân loại</div>
</div>
<div class="section-content">
<ul class="filter-type unstyled clear">
<li class="filter-type_item"><a href="the-loai/action.html">Action</a>
<li class="filter-type_item"><a href="the-loai/adapted-to-anime.html">Adapted to Anime</a>
<li class="filter-type_item"><a href="the-loai/adapted-to-drama-cd.html">Adapted to Drama CD</a>
<li class="filter-type_item"><a href="the-loai/adapted-to-manga.html">Adapted to Manga</a>
<li class="filter-type_item"><a href="the-loai/adult.html">Adult</a>
<li class="filter-type_item"><a href="the-loai/adventure.html">Adventure</a>
<li class="filter-type_item"><a href="the-loai/age-gap.html">Age Gap</a>
<li class="filter-type_item"><a href="the-loai/boys-love.html">Boys Love</a>
<li class="filter-type_item"><a href="the-loai/character-growth.html">Character Growth</a>
<li class="filter-type_item"><a href="the-loai/chinese-novel.html">Chinese Novel</a>
<li class="filter-type_item"><a href="the-loai/comedy.html">Comedy</a>
<li class="filter-type_item"><a href="the-loai/cooking.html">Cooking</a>
<li class="filter-type_item"><a href="the-loai/different-social-status.html">Different Social Status</a>
<li class="filter-type_item"><a href="the-loai/drama.html">Drama</a>
<li class="filter-type_item"><a href="the-loai/ecchi.html">Ecchi</a>
<li class="filter-type_item"><a href="the-loai/english-novel.html">English Novel</a>
<li class="filter-type_item"><a href="the-loai/fantasy.html">Fantasy</a>
<li class="filter-type_item"><a href="the-loai/female-protagonist.html">Female Protagonist</a>
<li class="filter-type_item"><a href="the-loai/game.html">Game</a>
<li class="filter-type_item"><a href="the-loai/gender-bender.html">Gender Bender</a>
<li class="filter-type_item"><a href="the-loai/harem.html">Harem</a>
<li class="filter-type_item"><a href="the-loai/historical.html">Historical</a>
<li class="filter-type_item"><a href="the-loai/horror.html">Horror</a>
<li class="filter-type_item"><a href="the-loai/incest.html">Incest</a>
<li class="filter-type_item"><a href="the-loai/isekai.html">Isekai</a>
<li class="filter-type_item"><a href="the-loai/josei.html">Josei</a>
<li class="filter-type_item"><a href="the-loai/korean-novel.html">Korean Novel</a>
<li class="filter-type_item"><a href="the-loai/magic.html">Magic</a>
<li class="filter-type_item"><a href="the-loai/martial-arts.html">Martial Arts</a>
<li class="filter-type_item"><a href="the-loai/mature.html">Mature</a>
<li class="filter-type_item"><a href="the-loai/mecha.html">Mecha</a>
<li class="filter-type_item"><a href="the-loai/military.html">Military</a>
<li class="filter-type_item"><a href="the-loai/misunderstanding.html">Misunderstanding</a>
<li class="filter-type_item"><a href="the-loai/mystery.html">Mystery</a>
<li class="filter-type_item"><a href="the-loai/netorare.html">Netorare</a>
<li class="filter-type_item"><a href="the-loai/one-shot.html">One shot</a>
<li class="filter-type_item"><a href="the-loai/otome-game.html">Otome Game</a>
<li class="filter-type_item"><a href="the-loai/psychological.html">Psychological</a>
<li class="filter-type_item"><a href="the-loai/reverse-harem.html">Reverse Harem</a>
<li class="filter-type_item"><a href="the-loai/romance.html">Romance</a>
<li class="filter-type_item"><a href="the-loai/school-life.html">School Life</a>
<li class="filter-type_item"><a href="the-loai/science-fiction.html">Science Fiction</a>
<li class="filter-type_item"><a href="the-loai/seinen.html">Seinen</a>
<li class="filter-type_item"><a href="the-loai/shoujo.html">Shoujo</a>
<li class="filter-type_item"><a href="the-loai/shoujo-ai.html">Shoujo ai</a>
<li class="filter-type_item"><a href="the-loai/shounen.html">Shounen</a>
<li class="filter-type_item"><a href="the-loai/shounen-ai.html">Shounen ai</a>
<li class="filter-type_item"><a href="the-loai/slice-of-life.html">Slice of Life</a>
<li class="filter-type_item"><a href="the-loai/slow-life.html">Slow Life</a>
<li class="filter-type_item"><a href="the-loai/sports.html">Sports</a>
<li class="filter-type_item"><a href="the-loai/super-power.html">Super Power</a>
<li class="filter-type_item"><a href="the-loai/supernatural.html">Supernatural</a>
<li class="filter-type_item"><a href="the-loai/suspense.html">Suspense</a>
<li class="filter-type_item"><a href="the-loai/tragedy.html">Tragedy</a>
<li class="filter-type_item"><a href="the-loai/wars.html">Wars</a>
<li class="filter-type_item"><a href="the-loai/web-novel.html">Web Novel</a>
<li class="filter-type_item"><a href="the-loai/workplace.html">Workplace</a>
<li class="filter-type_item"><a href="the-loai/yuri.html">Yuri</a>
</ul>
</div>
</section>
</div>
<div class="col-12 float-left col-lg-9">
<section class="thumb-section-flow">
<header class="filter-container pad-bottom-10">
<select name="sapxep" onchange="this.form.submit()" class="block inline-m">
<option value="tentruyen">A - Z</option>
<option value="tentruyenza">Z - A</option>
<option value="capnhat">Mới cập nhật</option>
<option value="truyenmoi">Truyện mới</option>
<option value="theodoi">Theo dõi</option>
<option value="top">Top toàn thời gian</option>
<option value="topthang">Top tháng</option>
<option value="sotu">Số từ</option>
</select>
<div class="text-right inline-block-m right-m none-l">
<span class="button button-green js-call-filters-wrapper"><i class="fas fa-filter" style="margin-right: 10px;"></i>Bộ lọc</span>
</div>
</header>
<main class="row">
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_11923">
<a href="truyen/11923-hay-lam-tnh-di-loi-cau-hon-den-ban-cung-lop-cua-toi-truoc-khi-co-ay-nhay-lau/c94496-chuong-02.html" title="Chương 02">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../i.docln.net/lightnovel/covers/s11923-5bfc4306-9d2b-48fb-af42-75c0b89ad417-m.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Chương 02"><a href="truyen/11923-hay-lam-tnh-di-loi-cau-hon-den-ban-cung-lop-cua-toi-truoc-khi-co-ay-nhay-lau/c94496-chuong-02.html" title="Chương 02">Chương 02</a></div>
<div class="thumb_attr volume-title">Web Novel</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/11923-hay-lam-tnh-di-loi-cau-hon-den-ban-cung-lop-cua-toi-truoc-khi-co-ay-nhay-lau.html" title=""Hãy làm t*nh đi" Lời cầu hôn đến bạn cùng lớp của tôi trước khi cô ấy nhảy lầu">"Hãy làm t*nh đi" Lời cầu hôn đến bạn cùng lớp của tôi trước khi cô ấy nhảy lầu</a></div>
</div>
<div style="display: none">
<div id="series_11923">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
"Hãy làm t*nh đi" Lời cầu hôn đến bạn cùng lớp của tôi trước khi cô ấy nhảy lầu
</p>
<p>
<div>Số từ: 3.254</div>
<div>Lượt xem: 35.491</div>
<div>Lượt thích: 728</div>
</p>
Một ngày nọ, tôi phát hiện bạn cùng lớp xinh đẹp của tôi đang chuẩn bị tự tử. Cô ấy là người tôi yêu nhất và tôi sẽ không bao giờ để cô thực hiện điều đó.
Vậy nên tôi đã nói:
"Hãy làm t*nh với mình đi...
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_3845">
<a href="truyen/3845-omae-gotoki-ga-maou-ni-kateru-to-omou-na-to-gachizei-ni-yuusha-party-wo-tsuihou-sareta-node-outo-de-kimama-ni-kurashitai/c54081-chuong-8-co-gai-dao-nghich-toa-sang-noi-bong-toi-ngu-tri.html" title="Chương 8: Cô gái đảo nghịch tỏa sáng nơi bóng tối ngự trị">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../2.bp.blogspot.com/-rxtawNUWpsA/XDUSHk0ueiI/AAAAAAACBMw/tohHKh_cNHgMesmb-L_jZyayKevofbteQCHMYCw/w215/default.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Chương 8: Cô gái đảo nghịch tỏa sáng nơi bóng tối ngự trị"><a href="truyen/3845-omae-gotoki-ga-maou-ni-kateru-to-omou-na-to-gachizei-ni-yuusha-party-wo-tsuihou-sareta-node-outo-de-kimama-ni-kurashitai/c54081-chuong-8-co-gai-dao-nghich-toa-sang-noi-bong-toi-ngu-tri.html" title="Chương 8: Cô gái đảo nghịch tỏa sáng nơi bóng tối ngự trị">Chương 8: Cô gái đảo nghịch tỏa sáng nơi bóng tối ngự trị</a></div>
<div class="thumb_attr volume-title">Vol 01: Cô gái đảo nghịch từ chối lòng thương xót của Chúa</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/3845-omae-gotoki-ga-maou-ni-kateru-to-omou-na-to-gachizei-ni-yuusha-party-wo-tsuihou-sareta-node-outo-de-kimama-ni-kurashitai.html" title=""Omae Gotoki ga Maou ni Kateru to Omou na" to Gachizei ni Yuusha Party wo Tsuihou Sareta node, Outo de Kimama ni Kurashitai">"Omae Gotoki ga Maou ni Kateru to Omou na" to Gachizei ni Yuusha Party wo Tsuihou Sareta node, Outo de Kimama ni Kurashitai</a></div>
</div>
<div style="display: none">
<div id="series_3845">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
"Omae Gotoki ga Maou ni Kateru to Omou na" to Gachizei ni Yuusha Party wo Tsuihou Sareta node, Outo de Kimama ni Kurashitai
</p>
<p>
<div>Số từ: 43.149</div>
<div>Lượt xem: 146.111</div>
<div>Lượt thích: 500</div>
</p>
Đây là một câu chuyện kể về cô gái - người từng mang danh Anh Hùng - đi lên từ dưới đáy xã hội để quay trở về cuộc sống bình thường.
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_5091">
<a href="truyen/5091-omae-gotoki-ga-maou-ni-kateru-to-omou-na-to-gachizei-ni-yuusha-party-wo-tsuihou-sareta-node-outo-de-kimama-ni-kurashitai/c62750-chuong-04-di-thoi-toi-ngoi-lang-cua-su-tuyet-vong.html" title="Chương 04: Đi thôi, tới ngôi làng của sự tuyệt vọng.">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../i.docln.net/lightnovel/covers/s5091-e5bfbc2e-ec9c-4b59-8529-dff3205e9682-m.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Chương 04: Đi thôi, tới ngôi làng của sự tuyệt vọng."><a href="truyen/5091-omae-gotoki-ga-maou-ni-kateru-to-omou-na-to-gachizei-ni-yuusha-party-wo-tsuihou-sareta-node-outo-de-kimama-ni-kurashitai/c62750-chuong-04-di-thoi-toi-ngoi-lang-cua-su-tuyet-vong.html" title="Chương 04: Đi thôi, tới ngôi làng của sự tuyệt vọng.">Chương 04: Đi thôi, tới ngôi làng của sự tuyệt vọng.</a></div>
<div class="thumb_attr volume-title">ARC 02 : Nô lệ mang dấu ấn, mong muốn chuỗi ngày vô tận và sự kiểm soát</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/5091-omae-gotoki-ga-maou-ni-kateru-to-omou-na-to-gachizei-ni-yuusha-party-wo-tsuihou-sareta-node-outo-de-kimama-ni-kurashitai.html" title=""Omae Gotoki ga Maou ni Kateru to Omou na" to Gachizei ni Yuusha Party wo Tsuihou Sareta node, Outo de Kimama ni Kurashitai">"Omae Gotoki ga Maou ni Kateru to Omou na" to Gachizei ni Yuusha Party wo Tsuihou Sareta node, Outo de Kimama ni Kurashitai</a></div>
</div>
<div style="display: none">
<div id="series_5091">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
"Omae Gotoki ga Maou ni Kateru to Omou na" to Gachizei ni Yuusha Party wo Tsuihou Sareta node, Outo de Kimama ni Kurashitai
</p>
<p>
<div>Số từ: 54.626</div>
<div>Lượt xem: 85.361</div>
<div>Lượt thích: 387</div>
</p>
Flamm Apricot chưa từng bao giờ muốn rời khỏi làng của mình. Cô hài lòng dành cả quãng đời để sống yên bình tại nơi đây. Không may, sau khi bị chỉ định bởi lời tiên tri của Thần Sáng tạo [Origin] rằng...
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_8184">
<a href="truyen/8184-omae-gotoki-ga-maou-ni-kateru-to-omou-na-to-gachizei-ni-yuusha-party-wo-tsuihou-sareta-node-outo-de-kimama-ni-kurashitai/c81616-chuong-19-su-that-khong-co-o-do-dau.html" title="Chương 19: Sự thật không có ở đó đâu">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../i.docln.net/lightnovel/covers/s8184-1100e2bb-14eb-43a6-9665-00e0735e4e6b-m.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Chương 19: Sự thật không có ở đó đâu"><a href="truyen/8184-omae-gotoki-ga-maou-ni-kateru-to-omou-na-to-gachizei-ni-yuusha-party-wo-tsuihou-sareta-node-outo-de-kimama-ni-kurashitai/c81616-chuong-19-su-that-khong-co-o-do-dau.html" title="Chương 19: Sự thật không có ở đó đâu">Chương 19: Sự thật không có ở đó đâu</a></div>
<div class="thumb_attr volume-title">Vol 3: Đứa trẻ xoắn ốc người nói ra những ác ý</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/8184-omae-gotoki-ga-maou-ni-kateru-to-omou-na-to-gachizei-ni-yuusha-party-wo-tsuihou-sareta-node-outo-de-kimama-ni-kurashitai.html" title=""Omae Gotoki ga Maou ni Kateru to Omou na" to Gachizei ni Yuusha Party wo Tsuihou Sareta node, Outo de Kimama ni Kurashitai">"Omae Gotoki ga Maou ni Kateru to Omou na" to Gachizei ni Yuusha Party wo Tsuihou Sareta node, Outo de Kimama ni Kurashitai</a></div>
</div>
<div style="display: none">
<div id="series_8184">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
"Omae Gotoki ga Maou ni Kateru to Omou na" to Gachizei ni Yuusha Party wo Tsuihou Sareta node, Outo de Kimama ni Kurashitai
</p>
<p>
<div>Số từ: 43.170</div>
<div>Lượt xem: 60.074</div>
<div>Lượt thích: 396</div>
</p>
Flamm Apricot, một trong 7 anh hùng được thần linh lựa chọn để tiêu diệt quỷ tộc cứu rỗi loài người.
Trái ngược với đồng đội mình với chỉ số cao ngất trời, chỉ số của Flamm là con số 0 dù cô có làm gì...
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_11925">
<a href="truyen/11925-lets-have-sex-my-proposal-to-my-classmate/c97562-chuong-01-chung-minh-lam-tinh-di-loi-noi-toi-danh-cho-co-ban-cung-lop-truoc-khi-nhay-lau-va-toi-da-co-gang-cau-hon-co-ay.html" title="Prologue: "Chúng mình làm tình đi!" Lời nói tôi dành cho cô bạn cùng lớp trước khi nhảy lầu và tôi đã cố gắng cầu hôn cô ấy.">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../i.docln.net/lightnovel/covers/s11925-33e2ff22-3991-42ae-8817-9d8477b8cb2d-m.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Prologue: "Chúng mình làm tình đi!" Lời nói tôi dành cho cô bạn cùng lớp trước khi nhảy lầu và tôi đã cố gắng cầu hôn cô ấy."><a href="truyen/11925-lets-have-sex-my-proposal-to-my-classmate/c97562-chuong-01-chung-minh-lam-tinh-di-loi-noi-toi-danh-cho-co-ban-cung-lop-truoc-khi-nhay-lau-va-toi-da-co-gang-cau-hon-co-ay.html" title="Prologue: "Chúng mình làm tình đi!" Lời nói tôi dành cho cô bạn cùng lớp trước khi nhảy lầu và tôi đã cố gắng cầu hôn cô ấy.">Prologue: "Chúng mình làm tình đi!" Lời nói tôi dành cho cô bạn cùng lớp trước khi nhảy lầu và tôi đã cố gắng cầu hôn cô ấy.</a></div>
<div class="thumb_attr volume-title">VOL 1</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/11925-lets-have-sex-my-proposal-to-my-classmate-just-before-she-jumps-off.html" title="“Let’s Have Sex” My Proposal to My Classmate Just Before She Jumps Off">“Let’s Have Sex” My Proposal to My Classmate Just Before She Jumps Off</a></div>
</div>
<div style="display: none">
<div id="series_11925">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
“Let’s Have Sex” My Proposal to My Classmate Just Before She Jumps Off
</p>
<p>
<div>Số từ: 45.490</div>
<div>Lượt xem: 507.842</div>
<div>Lượt thích: 3.834</div>
</p>
Tiêu đề thì như vậy, nhưng đây lại là một câu chuyện tình yêu đầy trong sáng!? Đối phương là mối tình đầu trầm lặng và dễ thương.Mối tình đầu đời của tôi, Koga Kurumi.
Sở hữu vẻ đẹp và tính cách dường...
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_468">
<a href="truyen/468-um-sorry-ive-been-reincarnated/c15724-chuong-11-co-ve-cha-that-su-tuyet-voi.html" title="Chương 11 - Có vẻ Cha thật sự tuyệt vời">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../2.bp.blogspot.com/-ciuJHNqZ2iQ/WO2wOLtgubI/AAAAAAAAKIQ/rG2aYbCj2sg/w215/series_468.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Chương 11 - Có vẻ Cha thật sự tuyệt vời"><a href="truyen/468-um-sorry-ive-been-reincarnated/c15724-chuong-11-co-ve-cha-that-su-tuyet-voi.html" title="Chương 11 - Có vẻ Cha thật sự tuyệt vời">Chương 11 - Có vẻ Cha thật sự tuyệt vời</a></div>
<div class="thumb_attr volume-title">Arc 1: Tuổi Thơ sung túc</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/468-um-sorry-ive-been-reincarnated.html" title="(Um, Sorry) I’ve Been Reincarnated!">(Um, Sorry) I’ve Been Reincarnated!</a></div>
</div>
<div style="display: none">
<div id="series_468">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
(Um, Sorry) I’ve Been Reincarnated!
</p>
<p>
<div>Số từ: 11.223</div>
<div>Lượt xem: 64.446</div>
<div>Lượt thích: 358</div>
</p>
Vẫn là câu chuyện tái sinh ở thế giới khác. Lần này nguyên nhân là cứu bạn và chấn thương sọ não vì cái bình hoa của thượng đế. Được chọn giữa biến mất và tái sinh, câu trả lời là tái sinh và yêu cầu...
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_4849">
<a href="truyen/4849-um-sorry-ive-been-reincarnated/c73905-chuong-59-tien-den-lau-dai.html" title="Chương 59: Tiến đến lâu đài">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../i.docln.net/lightnovel/covers/s4849-0663eedd-a005-4d45-83bb-c1ee6e8558e8-m.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Chương 59: Tiến đến lâu đài"><a href="truyen/4849-um-sorry-ive-been-reincarnated/c73905-chuong-59-tien-den-lau-dai.html" title="Chương 59: Tiến đến lâu đài">Chương 59: Tiến đến lâu đài</a></div>
<div class="thumb_attr volume-title">Arc 2: Tiến tới Học viện nào!</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/4849-um-sorry-ive-been-reincarnated.html" title="(Um, Sorry) I’ve Been Reincarnated!">(Um, Sorry) I’ve Been Reincarnated!</a></div>
</div>
<div style="display: none">
<div id="series_4849">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
(Um, Sorry) I’ve Been Reincarnated!
</p>
<p>
<div>Số từ: 114.794</div>
<div>Lượt xem: 233.898</div>
<div>Lượt thích: 810</div>
</p>
Sau khi bị một vị thần vô tình cướp đi mạng sống của mình. Shou được tái sinh với món quà từ thần để bù dắp cho cậu. Shou yêu cầu giữ lại tất cả ký ức từ kiếp trước. Cậu tái sinh thành Will, con trai...
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_5184">
<a href="truyen/5184-koko-wa-ore-ni-makasete-saki-ni-ike-to-itte-kara-10-nen-ga-tattara-densetsu-ni-natteita/c58018-chuong-20-di-nhan-nhiem-vu-nao.html" title="Chương 20: Đi nhận nhiệm vụ nào">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../i.docln.net/lightnovel/covers/s5184-5c9063be-fe93-45af-b80a-a8c416d91788-m.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Chương 20: Đi nhận nhiệm vụ nào"><a href="truyen/5184-koko-wa-ore-ni-makasete-saki-ni-ike-to-itte-kara-10-nen-ga-tattara-densetsu-ni-natteita/c58018-chuong-20-di-nhan-nhiem-vu-nao.html" title="Chương 20: Đi nhận nhiệm vụ nào">Chương 20: Đi nhận nhiệm vụ nào</a></div>
<div class="thumb_attr volume-title">Web Novel</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/5184-koko-wa-ore-ni-makasete-saki-ni-ike-to-itte-kara-10-nen-ga-tattara-densetsu-ni-natteita.html" title="10 năm sau khi nói câu “Cứ đi đi, ở đây để tôi lo”, tôi đã trở thành một huyền thoại">10 năm sau khi nói câu “Cứ đi đi, ở đây để tôi lo”, tôi đã trở thành một huyền thoại</a></div>
</div>
<div style="display: none">
<div id="series_5184">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
10 năm sau khi nói câu “Cứ đi đi, ở đây để tôi lo”, tôi đã trở thành một huyền thoại
</p>
<p>
<div>Số từ: 19.387</div>
<div>Lượt xem: 112.663</div>
<div>Lượt thích: 695</div>
</p>
Tổ Đội Anh Hùng bị tấn công bởi Quân Đoàn quỷ vương với số lượng vô số kể, không nghi ngờ gì nữa nếu đối đầu trực tiếp tổ đội sẽ hoàn toàn bị tiêu diệt.
Một thành viên trong tổ đội, Pháp Sư mạnh nhất,...
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_7596">
<a href="truyen/7596-10-nam-sau-khi-noi-cau-cu-di-di-o-day-de-toi-lo-toi-da-tro-thanh-mot-huyen-thoai/c69387-chapter-23-dieu-cau-ay-bao-ve.html" title="Chapter 23 : Điều cậu ấy bảo vệ.">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../i.docln.net/lightnovel/covers/s7596-cd32fad4-92a2-42cd-b46a-ea7541ba9d6b-m.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Chapter 23 : Điều cậu ấy bảo vệ."><a href="truyen/7596-10-nam-sau-khi-noi-cau-cu-di-di-o-day-de-toi-lo-toi-da-tro-thanh-mot-huyen-thoai/c69387-chapter-23-dieu-cau-ay-bao-ve.html" title="Chapter 23 : Điều cậu ấy bảo vệ.">Chapter 23 : Điều cậu ấy bảo vệ.</a></div>
<div class="thumb_attr volume-title">WN</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/7596-10-nam-sau-khi-noi-cau-cu-di-di-o-day-de-toi-lo-toi-da-tro-thanh-mot-huyen-thoai.html" title="10 năm sau khi nói câu “Cứ đi đi, ở đây để tôi lo”, tôi đã trở thành một huyền thoại">10 năm sau khi nói câu “Cứ đi đi, ở đây để tôi lo”, tôi đã trở thành một huyền thoại</a></div>
</div>
<div style="display: none">
<div id="series_7596">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
10 năm sau khi nói câu “Cứ đi đi, ở đây để tôi lo”, tôi đã trở thành một huyền thoại
</p>
<p>
<div>Số từ: 4.573</div>
<div>Lượt xem: 23.448</div>
<div>Lượt thích: 197</div>
</p>
Khi tổ Đội Anh Hùng bị tấn công bởi Quân Đoàn quỷ vương với số lượng vô số kể, không nghi ngờ gì nữa nếu đối đầu trực tiếp tổ đội sẽ hoàn toàn bị tiêu diệt.
Một thành viên trong tổ đội, Pháp Sư mạnh n...
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_759">
<a href="truyen/759-10-nen-goshi-no-hikiniito-o-yamete-gaishutsushitara-jitaku-goto-isekai-ni-tenishiteta/c64252-phan-ket.html" title="Phần kết">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../i.docln.net/lightnovel/covers/s759-4109954a-6358-4bcf-9abb-4c6d5a2cfa1d-m.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Phần kết"><a href="truyen/759-10-nen-goshi-no-hikiniito-o-yamete-gaishutsushitara-jitaku-goto-isekai-ni-tenishiteta/c64252-phan-ket.html" title="Phần kết">Phần kết</a></div>
<div class="thumb_attr volume-title">Chương 08: Lãnh đạo tiên phong Yuuji trở thành trưởng làng Honjou, lãnh địa Pasteur</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/759-10-nen-goshi-no-hikiniito-o-yamete-gaishutsushitara-jitaku-goto-isekai-ni-tenishiteta.html" title="10 nen goshi no HikiNiito o Yamete Gaishutsushitara Jitaku goto Isekai ni Ten’ishiteta">10 nen goshi no HikiNiito o Yamete Gaishutsushitara Jitaku goto Isekai ni Ten’ishiteta</a></div>
</div>
<div style="display: none">
<div id="series_759">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
10 nen goshi no HikiNiito o Yamete Gaishutsushitara Jitaku goto Isekai ni Ten’ishiteta
</p>
<p>
<div>Số từ: 187.670</div>
<div>Lượt xem: 381.452</div>
<div>Lượt thích: 1.572</div>
</p>
Houjou Yuuji, 30 tuổi, thất nghiệp, là một hikikomori trong suốt 10 năm, quyết định đi ra khỏi nhà. Tuy nhiên, bên ngoài đó lại là một thế giới khác cùng với những sinh vật kì lạ mà cậu chưa từng biết...
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_890">
<a href="truyen/890-10-sai-no-saikyou-madoushi/c19850-mua-sam.html" title="Mua sắm - おかいもの">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../2.bp.blogspot.com/-aYUSfXJCoBs/WS2rXDUeIrI/AAAAAAAAU7E/P4rB6kpL3Jo2QnsGaoH2XuqpoM95nWfGwCHM/w215/default.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Mua sắm - おかいもの"><a href="truyen/890-10-sai-no-saikyou-madoushi/c19850-mua-sam.html" title="Mua sắm - おかいもの">Mua sắm - おかいもの</a></div>
<div class="thumb_attr volume-title">WN</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/890-10-sai-no-saikyou-madoushi.html" title="10 sai no Saikyou Madoushi">10 sai no Saikyou Madoushi</a></div>
</div>
<div style="display: none">
<div id="series_890">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
10 sai no Saikyou Madoushi
</p>
<p>
<div>Số từ: 12.583</div>
<div>Lượt xem: 41.776</div>
<div>Lượt thích: 273</div>
</p>
Pháp sư mạnh nhất không biết mình là “người mạnh nhất” đã xuất hiện!
Cô bé Ferris 10 tuổi là nô lệ làm việc ở khu mỏ khai thác ma thạch.
Tuy nhiên, khi bé được phát hiện đang mang trong mình tài...
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_1739">
<a href="truyen/1739-juu-sai-no-saikyou-madoushi/c25377-chuong-07-con-duong-toi-truong-phan-2.html" title="Chương 07 : Con đường tới trường - Phần 2">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../2.bp.blogspot.com/-UEgqsbpRBtc/Wf3YGNzbaRI/AAAAAAAAxyc/YSUcM2slIrEh9D8l4zP3NbiQip5zUHlEQCHMYCw/w215/default.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Chương 07 : Con đường tới trường - Phần 2"><a href="truyen/1739-juu-sai-no-saikyou-madoushi/c25377-chuong-07-con-duong-toi-truong-phan-2.html" title="Chương 07 : Con đường tới trường - Phần 2">Chương 07 : Con đường tới trường - Phần 2</a></div>
<div class="thumb_attr volume-title">Tập 01</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/1739-juu-sai-no-saikyou-madoushi.html" title="10 Sai no Saikyou Madoushi">10 Sai no Saikyou Madoushi</a></div>
</div>
<div style="display: none">
<div id="series_1739">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
10 Sai no Saikyou Madoushi
</p>
<p>
<div>Số từ: 2.832</div>
<div>Lượt xem: 21.255</div>
<div>Lượt thích: 173</div>
</p>
Pháp sư mạnh nhất không biết mình là “người mạnh nhất” đã xuất hiện!
Cô bé Ferris 10 tuổi là nô lệ làm việc ở khu mỏ khai thác ma thạch.
Tuy nhiên, khi bé được phát hiện đang mang trong mình tài năn...
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_5797">
<a href="truyen/5797-100-dieu-em-khong-biet-ve-senpai/c95094-ngay-thu-84-senpai-anh-dang-o-dau-day-a.html" title="Ngày thứ 84: "Senpai, anh đang ở đâu đấy ạ?"">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../i.docln.net/lightnovel/covers/s5797-29ef7abb-8149-4bd2-b631-ae25e97f03a3-m.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Ngày thứ 84: "Senpai, anh đang ở đâu đấy ạ?""><a href="truyen/5797-100-dieu-em-khong-biet-ve-senpai/c95094-ngay-thu-84-senpai-anh-dang-o-dau-day-a.html" title="Ngày thứ 84: "Senpai, anh đang ở đâu đấy ạ?"">Ngày thứ 84: "Senpai, anh đang ở đâu đấy ạ?"</a></div>
<div class="thumb_attr volume-title">Web Novel</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/5797-100-dieu-em-khong-biet-ve-senpai.html" title="100 điều em không biết về senpai">100 điều em không biết về senpai</a></div>
</div>
<div style="display: none">
<div id="series_5797">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
100 điều em không biết về senpai
</p>
<p>
<div>Số từ: 130.973</div>
<div>Lượt xem: 558.343</div>
<div>Lượt thích: 3.649</div>
</p>
"Senpai, anh làm rơi gì này."
Câu nói đột ngột ấy đánh dấu cho sự bắt đầu của mối quan hệ giữa senpai thơ thẩn và kouhai-chan dễ-thương-tăng-động. Mặc dù không có mối liên kết nào ngoài việc đi chung...
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_5078">
<a href="truyen/5078-15-sai-demo-ore-no-yome/c51356-chuong-01-va-roi-no-thanh-mot-dam-cuoi-hoan-hi.html" title="Chương 01 - Và rồi nó thành một đám cưới hoan hỉ">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../i.docln.net/lightnovel/covers/s5078-ad42e309-df5d-4f01-bcf8-de224b9b04e6-m.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Chương 01 - Và rồi nó thành một đám cưới hoan hỉ"><a href="truyen/5078-15-sai-demo-ore-no-yome/c51356-chuong-01-va-roi-no-thanh-mot-dam-cuoi-hoan-hi.html" title="Chương 01 - Và rồi nó thành một đám cưới hoan hỉ">Chương 01 - Và rồi nó thành một đám cưới hoan hỉ</a></div>
<div class="thumb_attr volume-title">Tập 01 - The booksellers wars beginning with a haphazar marriage</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/5078-15-sai-demo-ore-no-yome.html" title="15 sai demo Ore no Yome!">15 sai demo Ore no Yome!</a></div>
</div>
<div style="display: none">
<div id="series_5078">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
15 sai demo Ore no Yome!
</p>
<p>
<div>Số từ: 5.006</div>
<div>Lượt xem: 58.323</div>
<div>Lượt thích: 449</div>
</p>
Chuyện về Hinosaka Kenichi, một thanh niên công chức 27 tuổi kết hôn cùng với nữ sinh trung học 15 tuổi. Chuyện tình này không chỉ một mà đến những hai bé 15 tuổi mới đau chứ. Liệu thanh niên này sẽ s...
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_8133">
<a href="truyen/8133-1-ldk-soshite-2-jk-26-sai-salaryman-joshikousei-ni-nin-to-doukyo-hajimemashita/c86777-chuong-06-tai-nan-voi-nu-sinh-cao-trung.html" title="Chương 06: Tai nạn với nữ sinh cao trung">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../i.docln.net/lightnovel/covers/s8133-9baa3e68-1b67-4998-9342-37033257b650-m.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Chương 06: Tai nạn với nữ sinh cao trung"><a href="truyen/8133-1-ldk-soshite-2-jk-26-sai-salaryman-joshikousei-ni-nin-to-doukyo-hajimemashita/c86777-chuong-06-tai-nan-voi-nu-sinh-cao-trung.html" title="Chương 06: Tai nạn với nữ sinh cao trung">Chương 06: Tai nạn với nữ sinh cao trung</a></div>
<div class="thumb_attr volume-title">Tập 01</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/8133-1-ldk-soshite-2-jk-26-sai-salaryman-joshikousei-ni-nin-to-doukyo-hajimemashita.html" title="1LDK, Soshite 2JK. 26-sai Salaryman, Joshi Kousei Futari to Doukyou Hajimemashita">1LDK, Soshite 2JK. 26-sai Salaryman, Joshi Kousei Futari to Doukyou Hajimemashita</a></div>
</div>
<div style="display: none">
<div id="series_8133">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
1LDK, Soshite 2JK. 26-sai Salaryman, Joshi Kousei Futari to Doukyou Hajimemashita
</p>
<p>
<div>Số từ: 26.742</div>
<div>Lượt xem: 61.444</div>
<div>Lượt thích: 820</div>
</p>
“Ahh, unm, cũng lâu rồi anh ha.”
(……Không đời nào.)
Komamura, một người làm công ăn lương độc thân, đã được giao phó cho việc chăm sóc cô em họ, Kanon, một gal JK.
Khi vừa mới gắng hiểu sự thay đổi sự...
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_3660">
<a href="truyen/3660-2311/c98148-chuong-79.html" title="Chương 79">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../4.bp.blogspot.com/-kXSvTnxZ8ys/XBKNSxoa4SI/AAAAAAAB58Y/bJYY-ulN_0M-FfcooEiWpKNiFpXyC13UgCHMYCw/w215/default.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Chương 79"><a href="truyen/3660-2311/c98148-chuong-79.html" title="Chương 79">Chương 79</a></div>
<div class="thumb_attr volume-title">23:11</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/3660-2311.html" title="23:11">23:11</a></div>
</div>
<div style="display: none">
<div id="series_3660">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
23:11
</p>
<p>
<div>Số từ: 54.692</div>
<div>Lượt xem: 164.572</div>
<div>Lượt thích: 282</div>
</p>
“Nếu em muốn hạnh phúc mãi mãi về sau, anh sẵn sàng bắt đầu câu chuyện ngày xửa ngày xưa với em.” - Rico, 23:11 Tóm tắt nội dung của tác giả:Một tác giả. Một kẻ lạ mặt kỳ quái. Rất nhiều cuộc hội thoạ...
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_8328">
<a href="truyen/8328-2311/c93616-chuong-12.html" title="Chương 12">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../i.docln.net/lightnovel/covers/s8328-de0ec3cf-03fd-4d23-986b-295e0bc7c619-m.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Chương 12"><a href="truyen/8328-2311/c93616-chuong-12.html" title="Chương 12">Chương 12</a></div>
<div class="thumb_attr volume-title">Tập 01</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/8328-2311.html" title="23/11">23/11</a></div>
</div>
<div style="display: none">
<div id="series_8328">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
23/11
</p>
<p>
<div>Số từ: 39.950</div>
<div>Lượt xem: 16.094</div>
<div>Lượt thích: 63</div>
</p>
phần tiếp theo sau cái kết của phần 23:11.
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_2138">
<a href="truyen/2138-29-years-old-bachelor-was-brought-to-a-different-world-to-live-freely/c46557-chuong-10-toi-roi-vao-trang-thai-cam-ghet-ban-than-minh.html" title="Chương 26: Tôi rơi vào trạng thái căm ghét bản thân mình.">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../2.bp.blogspot.com/-1O8TibBXvaU/WovJMyYTnSI/AAAAAAAA_18/sRf55GJAP20NgVb4BiX62wJcLwf2NMIqACHMYCw/w215/default.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Chương 26: Tôi rơi vào trạng thái căm ghét bản thân mình."><a href="truyen/2138-29-years-old-bachelor-was-brought-to-a-different-world-to-live-freely/c46557-chuong-10-toi-roi-vao-trang-thai-cam-ghet-ban-than-minh.html" title="Chương 26: Tôi rơi vào trạng thái căm ghét bản thân mình.">Chương 26: Tôi rơi vào trạng thái căm ghét bản thân mình.</a></div>
<div class="thumb_attr volume-title">Tập 02</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/2138-29-years-old-bachelor-was-brought-to-a-different-world-to-live-freely.html" title="29-sai Dokushin wa Isekai de Jiyuu ni Ikita......katta">29-sai Dokushin wa Isekai de Jiyuu ni Ikita......katta</a></div>
</div>
<div style="display: none">
<div id="series_2138">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
29-sai Dokushin wa Isekai de Jiyuu ni Ikita......katta
</p>
<p>
<div>Số từ: 123.450</div>
<div>Lượt xem: 326.056</div>
<div>Lượt thích: 1.792</div>
</p>
Một anh main 29 tuổi còn độc thân được qua thế giới khác mà mình từng mong muốn…
Từ những ngày đầu khi anh đăng ký vào Guild mạo hiểm giả, anh gặp một cô gái và đã miễn cưỡng phải cưới cô ấy.
Hơn mười...
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_2840">
<a href="truyen/2840-3-minutes-boy-meets-girl/c34162-chuong-19-3-phut-boy-meets-girl.html" title="Chương 19. 3 Phút Boy Meets Girl">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../4.bp.blogspot.com/-8shteqngTDM/WzjkgV_LTaI/AAAAAAABXkE/PL7IYOgMHLUG_r0TZOXzjKrX2r9KsCDRwCHMYCw/w215/default.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Chương 19. 3 Phút Boy Meets Girl"><a href="truyen/2840-3-minutes-boy-meets-girl/c34162-chuong-19-3-phut-boy-meets-girl.html" title="Chương 19. 3 Phút Boy Meets Girl">Chương 19. 3 Phút Boy Meets Girl</a></div>
<div class="thumb_attr volume-title">Toàn tập</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/2840-3-minutes-boy-meets-girl.html" title="3 Minutes Boy Meets Girl">3 Minutes Boy Meets Girl</a></div>
</div>
<div style="display: none">
<div id="series_2840">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
3 Minutes Boy Meets Girl
</p>
<p>
<div>Số từ: 36.887</div>
<div>Lượt xem: 49.126</div>
<div>Lượt thích: 377</div>
</p>
3 Minutes Boy Meets Girl là một tuyển tập truyện ngắn của các tác giả làm việc tại Famitsu Bunko. Có 19 chương và là 19 truyện ngắn từ 19 tác giả khác nhau. Thể loại chung chính là lãng mạn. Truyện đư...
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_2031">
<a href="truyen/2031-400-years-old-virgin-demon-king/c32374-chuong-03-ma-vuong-thuc-hien-hoa-ly-tuong.html" title="Chương 03 : Ma vương thực hiện hóa lý tưởng.">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="img/nocover.png"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Chương 03 : Ma vương thực hiện hóa lý tưởng."><a href="truyen/2031-400-years-old-virgin-demon-king/c32374-chuong-03-ma-vuong-thuc-hien-hoa-ly-tuong.html" title="Chương 03 : Ma vương thực hiện hóa lý tưởng.">Chương 03 : Ma vương thực hiện hóa lý tưởng.</a></div>
<div class="thumb_attr volume-title">Tập 01</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/2031-400-years-old-virgin-demon-king.html" title="400 Years Old Virgin Demon King">400 Years Old Virgin Demon King</a></div>
</div>
<div style="display: none">
<div id="series_2031">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
400 Years Old Virgin Demon King
</p>
<p>
<div>Số từ: 4.723</div>
<div>Lượt xem: 19.572</div>
<div>Lượt thích: 115</div>
</p>
Chuyện về ma vương 400 tuổi còn trinh đi kiếm vợ và một gái muốn cưới hắn để nắm giữ quyền lực to lớn.
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_1985">
<a href="truyen/1985-86-eightysix/c65065-chuong-8-run-to-the-battlefront.html" title="Chương 8: Run to the Battlefront">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../i.docln.net/lightnovel/covers/s1985-b606b7d8-33bc-4b2c-87a5-5f811c463ae8-m.jpg"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Chương 8: Run to the Battlefront"><a href="truyen/1985-86-eightysix/c65065-chuong-8-run-to-the-battlefront.html" title="Chương 8: Run to the Battlefront">Chương 8: Run to the Battlefront</a></div>
<div class="thumb_attr volume-title">Tập 3</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/1985-86-eightysix.html" title="86 -eightysix-">86 -eightysix-</a></div>
</div>
<div style="display: none">
<div id="series_1985">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
86 -eightysix-
</p>
<p>
<div>Số từ: 244.749</div>
<div>Lượt xem: 505.011</div>
<div>Lượt thích: 1.648</div>
</p>
Cộng hòa San Magnolia.Quốc gia này từ lâu đã chịu phải ách xâm lược từ những Legion - chiến xa không người lái của phía Đế quốc. Để đáp trả lại mối đe doạ đó, nước Cộng hoà cũng phát triển thành công...
</div>
</div>
</div>
<div class="thumb-item-flow col-4 col-md-3 col-lg-2">
<div class="thumb-wrapper ln-tooltip" data-tooltip-content="#series_2463">
<a href="truyen/2463-99th-vampire-princess-the-last-vampire/c35808-part-03.html" title="Part 03">
<div class="a6-ratio">
<div class="content img-in-ratio lazyload" data-bg="../3.bp.blogspot.com/-io56sbTwLKQ/WtNbfTL0lDI/AAAAAAABHzE/4C55FPwci4wEpA10SHqrMkoiIdxYQHrVgCHMYCw/w215/default.png"></div>
</div>
</a>
<div class="thumb-detail">
<div class="thumb_attr chapter-title" title="Part 03"><a href="truyen/2463-99th-vampire-princess-the-last-vampire/c35808-part-03.html" title="Part 03">Part 03</a></div>
<div class="thumb_attr volume-title">Chương 1: Truyền thuyết về nghi thức " Liên lạc với người chết"</div>
</div>
</div>
<div class="thumb_attr series-title"><a href="truyen/2463-99th-vampire-princess-the-last-vampire.html" title="99th vampire princess ~The last vampire~">99th vampire princess ~The last vampire~</a></div>
</div>
<div style="display: none">
<div id="series_2463">
<div style="margin: 10px 0; width: 250px">
<p style="color: white; font-weight: bold">
99th vampire princess ~The last vampire~
</p>
<p>
<div>Số từ: 7.532</div>
<div>Lượt xem: 23.681</div>
<div>Lượt thích: 242</div>
</p>
"Lores" - những hình thể đáng kể được sinh ra từ những truyền thuyết thành phố. Và học sinh trung học Tsukumo Jin, người đã vô tình giải phóng "truyền thuyết về ma cà rồng" mạnh mẽ nhất, giờ đây là ng...