-
Notifications
You must be signed in to change notification settings - Fork 18
/
ecommerce.sql
1139 lines (964 loc) · 255 KB
/
ecommerce.sql
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
-- phpMyAdmin SQL Dump
-- version 5.0.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jul 14, 2021 at 08:36 AM
-- Server version: 10.4.11-MariaDB
-- PHP Version: 7.4.2
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `ecommerce`
--
-- --------------------------------------------------------
--
-- Table structure for table `admins`
--
CREATE TABLE `admins` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`category` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`coupon` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`product` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`blog` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`other` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`report` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`role` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`return` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`contact` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`comment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`setting` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`stock` varchar(240) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`type` int(11) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `admins`
--
INSERT INTO `admins` (`id`, `name`, `phone`, `email`, `email_verified_at`, `password`, `remember_token`, `category`, `coupon`, `product`, `blog`, `order`, `other`, `report`, `role`, `return`, `contact`, `comment`, `setting`, `stock`, `type`, `created_at`, `updated_at`) VALUES
(3, 'Admin', '01711212121', '[email protected]', NULL, '$2y$10$nQ.J0QlWLynYZOTtZdtePOWSUycOzU1riUXXTBcwUUAXyphSjK5F2', NULL, '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', 1, '2020-02-21 04:49:25', '2020-02-22 13:30:13'),
(4, 'Shahed Chy', '0189999999', '[email protected]', NULL, '$2y$10$7oEUYZeEIfcvtdP.ER6ymejOMQoka3k3s0hQQPm7oXzfg5oDolcae', NULL, '1', NULL, '1', '1', NULL, '1', NULL, NULL, '1', NULL, NULL, '1', NULL, 2, NULL, NULL),
(5, 'admin2', '01826262676', '[email protected]', NULL, '$2y$10$y0BusOeRXMHiTioMeeilGekh6iG/pQWWZ2t2SRd7zWPVycUFE8NFa', 'uaaw1sCjcNiFie61O0vm5B5wS2vX9VVKM0vctv2QaPJnEPltsxNpSav7fWfv', '1', NULL, '1', '1', '1', NULL, NULL, '1', '1', NULL, '1', NULL, NULL, 2, NULL, '2020-04-04 10:02:22');
-- --------------------------------------------------------
--
-- Table structure for table `brands`
--
CREATE TABLE `brands` (
`id` bigint(20) UNSIGNED NOT NULL,
`brand_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`brand_logo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `brands`
--
INSERT INTO `brands` (`id`, `brand_name`, `brand_logo`, `created_at`, `updated_at`) VALUES
(1, 'Glozzom', 'public/media/brand/Gfavicon1582574592.png', NULL, NULL),
(3, 'HP', 'public/media/brand/pc1582574666.jpeg', NULL, NULL),
(8, 'Samsung', 'public/media/brand/12_10_19_481582992705.png', NULL, NULL),
(9, 'Mixuse', 'public/media/brand/mlogo1582609223.png', NULL, NULL),
(10, 'Huawei', 'public/media/brand/121019_16_29_061582992408.jpg', NULL, NULL),
(11, 'Rado', 'public/media/brand/171019_14_37_171582992437.png', NULL, NULL),
(12, 'Lenovo', 'public/media/brand/231019_15_14_361582992479.jpg', NULL, NULL),
(13, 'Assus', 'public/media/brand/231019_15_25_361582992524.png', NULL, NULL),
(14, 'Canon', 'public/media/brand/231019_15_42_361582992569.png', NULL, NULL),
(15, 'Cats Eye', 'public/media/brand/231019_15_55_361582992604.png', NULL, NULL),
(16, 'Dell', 'public/media/brand/231019_15_10_371582992634.png', NULL, NULL),
(17, 'Sony', 'public/media/brand/121019_15_06_561582992742.jpg', NULL, NULL),
(18, 'Xiaomi', 'public/media/brand/231019_15_09_391582992782.png', NULL, NULL),
(19, 'Walton', 'public/media/brand/231019_15_16_381582992839.png', NULL, NULL),
(20, 'Men\'s World', 'public/media/brand/231019_15_40_371582992874.png', NULL, NULL),
(21, 'Plus Point', 'public/media/brand/231019_15_29_371582992910.jpg', NULL, NULL),
(22, 'Jamuna', 'public/media/brand/231019_15_51_371582992941.jpg', NULL, NULL),
(23, 'Apple', 'public/media/brand/231019_15_52_391582992968.png', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `categories`
--
CREATE TABLE `categories` (
`id` bigint(20) UNSIGNED NOT NULL,
`category_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `categories`
--
INSERT INTO `categories` (`id`, `category_name`, `created_at`, `updated_at`) VALUES
(1, 'Men\'s Fashion', '2020-02-24 11:24:41', NULL),
(2, 'Women\'s Fashion', '2020-02-24 05:26:08', '2020-02-24 05:26:08'),
(8, 'Child\'s Fashion', '2020-02-24 07:06:29', '2020-02-24 07:06:29'),
(9, 'Watch', '2020-02-27 10:06:53', '2020-02-27 10:06:53'),
(10, 'Furniture', '2020-02-29 08:13:08', '2020-02-29 08:13:08'),
(11, 'Electronics', '2020-02-29 08:13:33', '2020-02-29 08:13:33'),
(12, 'Health', '2020-02-29 08:13:56', '2020-02-29 08:13:56'),
(13, 'Beauty', '2020-02-29 14:15:02', NULL),
(14, 'Sports & Outdoor', '2020-02-29 14:15:02', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `coupons`
--
CREATE TABLE `coupons` (
`id` bigint(20) UNSIGNED NOT NULL,
`coupon` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `coupons`
--
INSERT INTO `coupons` (`id`, `coupon`, `discount`, `created_at`, `updated_at`) VALUES
(1, 'learnHunter10', '10', NULL, NULL),
(2, 'LernHunter5', '5', NULL, NULL),
(3, 'CodersFoundation15', '15', NULL, NULL),
(4, 'SSB128', '7', NULL, NULL),
(5, 'iiuc', '20', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `failed_jobs`
--
CREATE TABLE `failed_jobs` (
`id` bigint(20) UNSIGNED NOT NULL,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2014_10_12_100000_create_password_resets_table', 1),
(3, '2019_08_19_000000_create_failed_jobs_table', 1),
(4, '2019_11_06_075920_create_admins_table', 1),
(5, '2020_02_22_194920_create_categories_table', 2),
(6, '2020_02_22_195135_create_subcategories_table', 2),
(7, '2020_02_22_195215_create_brands_table', 2),
(8, '2020_02_24_195015_create_brands_table', 3),
(9, '2020_02_24_195753_create_brands_table', 4),
(10, '2020_02_25_160219_create_coupons_table', 5),
(11, '2020_02_25_203447_create_newsletters_table', 6),
(12, '2020_02_26_111148_create_products_table', 7),
(13, '2020_02_28_132957_create_post_category_table', 8),
(14, '2020_02_28_133104_create_posts_table', 8),
(15, '2020_02_28_144335_create_post_category_table', 9),
(16, '2020_02_28_144352_create_posts_table', 9),
(17, '2020_03_05_182725_create_wishlists_table', 10),
(18, '2020_03_10_213028_create_settings_table', 11),
(19, '2016_06_01_000001_create_oauth_auth_codes_table', 12),
(20, '2016_06_01_000002_create_oauth_access_tokens_table', 12),
(21, '2016_06_01_000003_create_oauth_refresh_tokens_table', 12),
(22, '2016_06_01_000004_create_oauth_clients_table', 12),
(23, '2016_06_01_000005_create_oauth_personal_access_clients_table', 12),
(24, '2020_03_13_181939_create_orders_table', 13),
(25, '2020_03_13_182052_create_order_details_table', 13),
(26, '2020_03_13_182122_create_shipping_table', 13),
(27, '2020_03_17_160511_create_subscribers_table', 14),
(28, '2020_03_17_161233_create_seo_table', 15),
(29, '2020_03_23_143810_create_sitesetting_table', 16);
-- --------------------------------------------------------
--
-- Table structure for table `newsletters`
--
CREATE TABLE `newsletters` (
`id` bigint(20) UNSIGNED NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `newsletters`
--
INSERT INTO `newsletters` (`id`, `email`, `created_at`, `updated_at`) VALUES
(1, '[email protected]', '2020-02-25 21:10:24', NULL),
(2, '[email protected]', '2020-02-23 21:43:56', NULL),
(3, '[email protected]', '2020-02-26 02:21:39', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `oauth_access_tokens`
--
CREATE TABLE `oauth_access_tokens` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) UNSIGNED DEFAULT NULL,
`client_id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`scopes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`revoked` tinyint(1) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`expires_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `oauth_auth_codes`
--
CREATE TABLE `oauth_auth_codes` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`client_id` bigint(20) UNSIGNED NOT NULL,
`scopes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`revoked` tinyint(1) NOT NULL,
`expires_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `oauth_clients`
--
CREATE TABLE `oauth_clients` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED DEFAULT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`secret` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`redirect` text COLLATE utf8mb4_unicode_ci NOT NULL,
`personal_access_client` tinyint(1) NOT NULL,
`password_client` tinyint(1) NOT NULL,
`revoked` tinyint(1) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `oauth_clients`
--
INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`) VALUES
(1, NULL, 'Laravel Personal Access Client', '1wWgbEHONmTDIbFrdLu7JBswIUO7ffPNyRLQwH82', 'http://localhost', 1, 0, 0, '2020-03-12 04:11:43', '2020-03-12 04:11:43'),
(2, NULL, 'Laravel Password Grant Client', 'Km8sh1GyRIbatnkRmWbOFu6DSPGg8iMFgayoTmhe', 'http://localhost', 0, 1, 0, '2020-03-12 04:11:43', '2020-03-12 04:11:43');
-- --------------------------------------------------------
--
-- Table structure for table `oauth_personal_access_clients`
--
CREATE TABLE `oauth_personal_access_clients` (
`id` bigint(20) UNSIGNED NOT NULL,
`client_id` bigint(20) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `oauth_personal_access_clients`
--
INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES
(1, 1, '2020-03-12 04:11:43', '2020-03-12 04:11:43');
-- --------------------------------------------------------
--
-- Table structure for table `oauth_refresh_tokens`
--
CREATE TABLE `oauth_refresh_tokens` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`revoked` tinyint(1) NOT NULL,
`expires_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `orders`
--
CREATE TABLE `orders` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`payment_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`paying_amount` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`blnc_transection` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`stripe_order_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`subtotal` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`shipping` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`vat` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`total` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`payment_type` varchar(240) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT '0',
`return_order` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT '0',
`month` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`date` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`year` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status_code` varchar(198) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
`updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `orders`
--
INSERT INTO `orders` (`id`, `user_id`, `payment_id`, `paying_amount`, `blnc_transection`, `stripe_order_id`, `subtotal`, `shipping`, `vat`, `total`, `payment_type`, `status`, `return_order`, `month`, `date`, `year`, `status_code`, `created_at`, `updated_at`) VALUES
(1, '1', 'card_1GMeqPFOBam2v3LthykqJ01O', '999', 'txn_1GMeqRFOBam2v3LtkWM0nuR7', '5e6d24257150e', '800.00', '7', '0', '800.00', 'stripe', '4', '0', 'March', '14-03-20', '2020', '522525', NULL, NULL),
(2, '1', 'card_1GMexDFOBam2v3Ltci4Vazr5', '999', 'txn_1GMexEFOBam2v3LtA6TyPhr7', '5e6d25cad4f4d', '800.00', '7', '0', '800.00', 'stripe', '2', '0', 'March', '14-03-20', '2020', '2563', NULL, NULL),
(3, '2', 'card_1GMf3AFOBam2v3LtVgqf1aIf', '999', 'txn_1GMf3BFOBam2v3LtCRJSptcO', '5e6d273c232a6', '350.00', '7', '0', '350.00', 'stripe', '1', '0', 'March', '21-03-20', '2020', '2521', NULL, NULL),
(4, '1', 'card_1GNc6SFOBam2v3LtNcSI43cO', '999', 'txn_1GNc6WFOBam2v3Lt3ZHVntFM', '5e709df394863', '887.00', '7', '0', '887.00', 'stripe', '3', '1', 'March', '17-03-20', '2020', '45578', NULL, NULL),
(5, '2', 'card_1GNcHAFOBam2v3LtQqbtwwhw', '999', 'txn_1GNcHEFOBam2v3Lt4sofdLGF', '5e70a08a36ec1', '944.00', '7', '0', '944.00', 'stripe', '0', '0', 'July', '02-07-20', '2020', '343274', NULL, NULL),
(6, '2', 'card_1GNcJKFOBam2v3LtPpCRnpfP', '999', 'txn_1GNcJOFOBam2v3LtgrN4SsyX', '5e70a11005328', '247.00', '7', '0', '247.00', 'stripe', '3', '0', 'July', '02-07-20', '2020', '34663', NULL, NULL),
(7, '2', 'card_1GNcL4FOBam2v3Lt3g59qS08', '999', 'txn_1GNcL6FOBam2v3LtOrx31LzE', '5e70a17c636aa', '27.00', '7', '0', '27.00', 'stripe', '3', '0', 'July', '02-07-20', '2020', '968547', NULL, NULL),
(8, '1', 'card_1GNxqoFOBam2v3LtV2OWeayv', '999', 'txn_1GNxqrFOBam2v3LtbFYjGWae', '5e71e48366699', '33.00', '7', '0', '33.00', 'stripe', '3', '2', 'March', '21-03-20', '2020', '164715', NULL, NULL),
(9, '1', 'card_1GOeVlFOBam2v3LtDIB7tKQZ', '999', 'txn_1GOeVnFOBam2v3LtAbb1pMTH', '5e746514adb8c', '444.00', '7', '0', '444.00', 'stripe', '3', '0', 'March', '20-03-20', '2020', '184036', NULL, NULL),
(10, '1', 'card_1GPjnYFOBam2v3Lto0ogMAqH', '999', 'txn_1GPjncFOBam2v3LtumlR2wjM', '5e7857708a5cb', '100.00', '7', '0', '100.00', 'stripe', '3', '2', 'March', '23-03-20', '2020', '344132', NULL, NULL),
(11, '2', 'card_1GQSvXFOBam2v3LtgMfnmdL9', '500', 'txn_1GQSvbFOBam2v3LtRLqzC5LS', '5e7afd13b521e', '500.00', '7', '0', '500.00', 'stripe', '1', '0', 'March', '25-03-20', '2020', '329433', NULL, NULL),
(12, '2', 'card_1GQTELFOBam2v3LtA49soulJ', '107', 'txn_1GQTEOFOBam2v3LtQU4pmwZl', '5e7b01a0e00e3', '90', '7', '0', '107', 'stripe', '4', '0', 'March', '25-03-20', '2020', '891044', NULL, NULL),
(13, '2', 'card_1GQTROFOBam2v3LtmQswxUjx', '807', 'txn_1GQTRQFOBam2v3LtdLjUDWq3', '5e7b04c9939bc', '795', '7', '0', '807', 'stripe', '1', '0', 'March', '25-03-20', '2020', '821086', NULL, NULL),
(14, '2', 'card_1GQTnUFOBam2v3Ltf3H9hwh2', '32', 'txn_1GQTnVFOBam2v3LteQ1TG1Sk', '5e7b0a230a533', '25', '7', '0', '32', 'stripe', '0', '0', 'March', '25-03-20', '2020', '885006', NULL, NULL),
(15, '2', 'card_1GQTpcFOBam2v3LtjgU5rGHK', '32', 'txn_1GQTpfFOBam2v3LtGIe5frT2', '5e7b0aa815dcc', '25', '7', '0', '32', 'stripe', '0', '0', 'March', '25-03-20', '2020', '154425', NULL, NULL),
(16, '1', 'card_1GQU4rFOBam2v3LtlSaELnd6', '307', 'txn_1GQU4tFOBam2v3Lto3dOiYwu', '5e7b0e58af31a', '300.00', '7', '0', '307', 'stripe', '1', '0', 'March', '25-03-20', '2020', '145393', NULL, NULL),
(17, '1', 'card_1GXPA0FOBam2v3LtFYufoyZl', '57', 'txn_1GXPA3FOBam2v3LtS5cQoYkh', '5e94394cd002d', '50.00', '7', '0', '57', 'stripe', '0', '0', 'April', '13-04-20', '2020', '242452', NULL, NULL),
(18, '1', 'card_1Gcr4OFOBam2v3LtbPaqs7Ix', '307', 'txn_1Gcr4QFOBam2v3Lt0PkPJIKB', '5ea80b391e607', '300.00', '7', '0', '307', 'stripe', '0', '0', 'April', '28-04-20', '2020', '326337', NULL, NULL),
(19, '1', 'card_1H2AY9FOBam2v3LtEiOmAdWJ', '794', 'txn_1H2AYCFOBam2v3LtiqT7qktw', '5f0419f191080', '787.00', '7', '0', '794', 'stripe', '4', '0', 'July', '07-07-20', '2020', '948362', NULL, NULL),
(20, '1', 'card_1IZWiMFOBam2v3LtokQfbSL7', '256', 'txn_1IZWiPFOBam2v3LtAQvvlacn', '605ee09a9e620', '249', '7', '0', '256', 'stripe', '3', '0', 'March', '27-03-21', '2021', '672457', NULL, NULL),
(21, '1', 'card_1JCVa1FOBam2v3LturHfIaNH', '257', 'txn_1JCVa4FOBam2v3LtgcLCvNcW', '60eca3025c67b', '250.00', '7', '0', '257', 'stripe', '2', '0', 'July', '12-07-21', '2021', '331624', NULL, NULL),
(22, '1', 'card_1JCVa5FOBam2v3LtTRpsdxih', '257', 'txn_1JCVa7FOBam2v3LtlnTorjIp', '60eca30583c61', '250.00', '7', '0', '257', 'stripe', '1', '0', 'July', '12-07-21', '2021', '134007', NULL, NULL),
(23, '1', 'card_1JCf0dFOBam2v3LtXsmmfp0z', '430', 'txn_1JCf0gFOBam2v3LtSIdufiQ6', '60ed3097bb2f3', '423', '7', '0', '430', 'stripe', '0', '0', 'July', '13-07-21', '2021', '866496', NULL, NULL),
(24, '1', 'card_1JCf21FOBam2v3Lt4Yk64vfj', '430', 'txn_1JCf22FOBam2v3LtEtGaEp08', '60ed30ebe148d', '423', '7', '0', '430', 'stripe', '3', '0', 'July', '13-07-21', '2021', '268143', NULL, NULL),
(25, '1', 'card_1JCfRMFOBam2v3LtcUUMP7BP', '495', 'txn_1JCfRNFOBam2v3LtuaiYUZpg', '60ed370ee6db0', '488.00', '7', '0', '495', 'stripe', '0', '0', 'July', '13-07-21', '2021', '971203', '2021-07-13 06:47:44', '2021-07-13 06:47:44'),
(26, '1', 'card_1JCfW7FOBam2v3LtRh6c8wrp', '517', 'txn_1JCfW9FOBam2v3LtkL5bGszT', '60ed383681ca9', '510.00', '7', '0', '517', 'stripe', '1', '0', 'July', '13-07-21', '2021', '373569', '2021-07-13 06:52:39', '2021-07-13 06:52:39'),
(27, '1', 'card_1JCfarFOBam2v3LttsY5gs9b', '907', 'txn_1JCfatFOBam2v3LtwRGe2Wxr', '60ed395c789dc', '900.00', '7', '0', '907', 'stripe', '4', '0', 'July', '13-07-21', '2021', '218936', '2021-07-13 06:57:33', '2021-07-13 06:57:33'),
(28, '1', 'card_1JCfjvFOBam2v3LtCXelH5TM', '57', 'txn_1JCfjxFOBam2v3LtdAIaeE1S', '60ed3b8e5821b', '50.00', '7', '0', '57', 'stripe', '2', '0', 'July', '13-07-21', '2021', '691581', '2021-07-13 07:06:56', '2021-07-13 07:06:56'),
(29, '1', 'card_1JCjCtFOBam2v3LtTqkhrHKa', '307', 'txn_1JCjCwFOBam2v3LtkJw968GR', '60ed6f9ea76c8', '300.00', '7', '0', '307', 'stripe', '3', '0', 'July', '13-07-21', '2021', '800345', '2021-07-13 10:49:06', '2021-07-13 10:49:06');
-- --------------------------------------------------------
--
-- Table structure for table `order_details`
--
CREATE TABLE `order_details` (
`id` bigint(20) UNSIGNED NOT NULL,
`order_id` int(240) DEFAULT NULL,
`product_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`product_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`size` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`quantity` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`singleprice` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`totalprice` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `order_details`
--
INSERT INTO `order_details` (`id`, `order_id`, `product_id`, `product_name`, `color`, `size`, `quantity`, `singleprice`, `totalprice`, `created_at`, `updated_at`) VALUES
(1, 2, '17', 'I Phone 11', 'white', 'm', '1', '300', '300', NULL, NULL),
(2, 2, '13', 'Lenovo Ideapad', 'white', '17inch', '1', '500', '500', NULL, NULL),
(3, 3, '17', 'I Phone 11', 'white', 'm', '1', '300', '300', NULL, NULL),
(4, 3, '14', 'Rado Watch', 'black', 'Small', '1', '50', '50', NULL, NULL),
(5, 4, '19', 'Mac Book', 'White', 'medium', '1', '787', '787', NULL, NULL),
(6, 4, '14', 'Rado Watch', 'black', 'Medium', '2', '50', '100', NULL, NULL),
(7, 5, '13', 'Lenovo Ideapad', 'white', '17inch', '1', '500', '500', NULL, NULL),
(8, 5, '9', 'iPhone Xr', 'red', '7.2inch', '1', '444', '444', NULL, NULL),
(9, 6, '16', 'Headphone', 'gray', 'l', '1', '27', '27', NULL, NULL),
(10, 6, '18', 'HP Notebook', 'black', NULL, '1', '220', '220', NULL, NULL),
(11, 7, '16', 'Headphone', 'gray', 'l', '1', '27', '27', NULL, NULL),
(12, 8, '10', 'T-Shirt', 'black', 'xl', '1', '33', '33', NULL, NULL),
(13, 9, '8', 'Huawei Mate 20 Pro', 'blue', 'long', '1', '444', '444', NULL, NULL),
(14, 10, '1', 'Hand Watch', 'black', '40mm', '2', '50', '100', NULL, NULL),
(15, 11, '13', 'Lenovo Ideapad', 'white', '17inch', '1', '500', '500', NULL, NULL),
(16, 12, '14', 'Rado Watch', 'black', 'Small', '2', '50', '100', NULL, NULL),
(17, 13, '6', 'Samsung Galaxy S9', 'Navyblue', '6 inch', '2', '400', '800', NULL, NULL),
(18, 15, '5', 'Men\'s stylish watch', 'Black', 'Medium', '1', '30', '30', NULL, NULL),
(19, 16, '17', 'I Phone 11', 'white', 'm', '1', '300', '300', NULL, NULL),
(20, 17, '14', 'Rado Watch', 'black', 'Small', '1', '50', '50', NULL, NULL),
(21, 18, '17', 'I Phone 11', 'white', 'm', '1', '300', '300', NULL, NULL),
(22, 19, '19', 'Mac Book', 'White', 'medium', '1', '787', '787', NULL, NULL),
(23, 20, '16', 'Headphone', 'gray', 'l', '2', '27', '54', NULL, NULL),
(24, 20, '1', 'Hand Watch', 'black', '40mm', '4', '50', '200', NULL, NULL),
(25, 22, '1', 'Hand Watch', 'blue', '40mm', '2', '50', '100', NULL, NULL),
(26, 22, '14', 'Rado Watch', 'black', 'Small', '3', '50', '150', NULL, NULL),
(27, 21, '1', 'Hand Watch', 'blue', '40mm', '2', '50', '100', NULL, NULL),
(28, 21, '14', 'Rado Watch', 'black', 'Small', '3', '50', '150', NULL, NULL),
(29, 24, '18', 'HP Notebook', 'black', NULL, '2', '200', '400', NULL, NULL),
(30, 24, '4', 'Ladies Bag', 'black', 'm12', '1', '28', '28', NULL, NULL),
(31, 26, '9', 'iPhone Xr', 'red', '7.2inch', '1', '444', '444', NULL, NULL),
(32, 26, '12', 'Men\'s Black Watch', 'gray', 'medium', '3', '22', '66', NULL, NULL),
(33, 27, '17', 'I Phone 11', 'white', 'm', '3', '300', '900', NULL, NULL),
(34, 28, '14', 'Rado Watch', 'black', 'Small', '1', '50', '50', NULL, NULL),
(35, 29, '17', 'I Phone 11', 'white', 'm', '1', '300', '300', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `password_resets`
--
INSERT INTO `password_resets` (`email`, `token`, `created_at`) VALUES
('[email protected]', '$2y$10$b7L0rNsaGmDOMvqxVbg.6eOIN9lMjhYmPaglOErXSgIqQ6PW.zgDe', '2020-04-03 15:15:12'),
('[email protected]', '$2y$10$5Lajkuz0Iy7CK8m6YNQC5OjSGKJqSvaUaCNXrfU9PDGYaYmV5YWbW', '2020-04-04 13:44:08'),
('[email protected]', '$2y$10$WlxGxNnhjzFDwqG/QoVTJuEOGZHkrGH6.w7Thn/W4uusXzaowakee', '2021-07-10 06:16:35'),
('[email protected]', '$2y$10$zCpihD2Ke3XJDQBE1FzzZ.PAL026tUTMXVp8tuxpsuYdjPKZcJJQm', '2021-07-10 13:48:25');
-- --------------------------------------------------------
--
-- Table structure for table `posts`
--
CREATE TABLE `posts` (
`id` bigint(20) UNSIGNED NOT NULL,
`category_id` int(11) NOT NULL,
`post_title_en` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title_bn` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`post_image` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`details_en` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`details_bn` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `posts`
--
INSERT INTO `posts` (`id`, `category_id`, `post_title_en`, `post_title_bn`, `post_image`, `details_en`, `details_bn`, `created_at`, `updated_at`) VALUES
(1, 2, 'Hello Developers!', 'হ্যালো ডেভেলপার গণ!', 'public/media/post/1.6597956488964E+15.JPG', 'Welcome to the Laravel Framework, Have a good day to all.<br>', 'লারাভেল ফ্রেমওয়ার্কে আপনাদের স্বাগতম, সকলের দিন ভাল কাটুক।<br>', NULL, NULL),
(2, 1, 'Hello Programmers!', 'হ্যালো প্রোগ্রামারস!', 'public/media/post/1.6597974460577E+15.jpeg', '<p>\r\n Welcome to the Computer Science, Have a good day to all.</p>', '<p> কম্পিউটার বিজ্ঞানে আপনাদের স্বাগতম, সকলের দিন ভাল কাটুক।</p>', NULL, NULL),
(3, 2, 'Good Morning! Learners', 'শুভ সকাল! বন্ধুগণ', 'public/media/post/1660941847566777.jpeg', 'Hope that all of you are fine, Have a nice day to all.Good wishes for you.', 'আশা করি সকলেই ভাল আছেন,সকলের দিনটি ভাল কাটুক। সকলের জন্য শুভ কামনা রইল।', NULL, NULL);
INSERT INTO `posts` (`id`, `category_id`, `post_title_en`, `post_title_bn`, `post_image`, `details_en`, `details_bn`, `created_at`, `updated_at`) VALUES
(4, 2, 'PROTECTING YOUR HOME AGAINST CORONAVIRUS', 'করোনা ভাইরাস থেকে ঘরের সুরক্ষা যেভাবে নিশ্চিত করবেন ।', 'public/media/post/1705003534044539.jpg', '<section class=\"m-5\" style=\"box-sizing: border-box; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; position: relative; font-family: Rubik, sans-serif;\"><div class=\"container\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding-top: 0px; padding-bottom: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; position: relative; width: 1170px; max-width: 1170px;\"><div class=\"row\" style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; position: relative;\"><div class=\"col\" style=\"box-sizing: border-box; margin: 0px; padding-top: 0px; padding-bottom: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; width: 1170px;\"><div class=\"blog_text\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; position: relative;\"><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">Coronavirus, or Covid-19, just made landfall in Bangladesh. But regardless of its presence in the country or how much it may spread in the future, it is imperative to remember that there is no need to PANIC! According to several organizations like WHO, Even the common influenza is more dangerous than Covid-19 in terms of spread. And in order to protect yourself and your family, all you need to do is follow a few precautions – starting with your home which will drastically reduce your chances of contracting the Covid-19. However, there is a<a href=\"https://www.nst.com.my/news/nation/2020/03/571957/unicef-malaysia-rings-alarm-bell-fake-covid-19-message\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); display: inline; position: relative; border: 0px; transition-duration: 0.25s; transition-timing-function: ease; vertical-align: baseline; font-family: inherit; opacity: initial;\"> lot of misinformation floating around social media</a> regarding this issue such as that the virus is unusually large and cannot survive in a warmer climate – citing UNICEF as the source.<a href=\"https://twitter.com/myUNICEF/status/1235386412112818176\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); display: inline; position: relative; border: 0px; transition-duration: 0.25s; transition-timing-function: ease; vertical-align: baseline; font-family: inherit; opacity: initial;\"> All that information, however, is entirely incorrect</a>. So, let’s take a look at a few REAL tips on how to protect your home against coronavirus.</p><figure id=\"attachment_37687\" aria-describedby=\"caption-attachment-37687\" class=\"wp-caption aligncenter\" style=\"box-sizing: border-box; margin: 40px auto; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589.jpg\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; transition-duration: 0.25s; display: block;\"><img class=\"size-full wp-image-37687\" src=\"https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589.jpg\" alt=\"Cleaning items\" width=\"1440\" height=\"959\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-1024x682.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; vertical-align: baseline; border: 0px; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-37687\" class=\"wp-caption-text\" style=\"box-sizing: border-box; margin: 5px 0px 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">There is no need for specialized cleaning equipment to protect your home</figcaption></figure><ul style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: none; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 16px; border: 0px; vertical-align: baseline; text-transform: uppercase;\">REGULARLY CLEAN “HIGH-TRAFFIC” SURFACES</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">There are a few objects in all our homes that receive greater “traffic” than others, as in, some objects or surfaces are more touched. This includes <span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-weight: bolder; border: 0px; vertical-align: baseline; font-family: inherit;\"><i style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\">tables, dining chairs, light switches, toilets, doorknobs, handles, and remotes</i></span>. A lot of people frequently touch these objects throughout the day. As a result, they are at greater risk of coronavirus contamination. That is why, to protect your home against coronavirus, such surfaces need to be cleaned regularly and thoroughly. If necessary, cleaning them once or twice a day will result in the most protection. Store-bought alcohol-based cleaners and detergents are enough to disinfect them.</p><ul style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: none; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 16px; border: 0px; vertical-align: baseline; text-transform: uppercase;\">LIMIT SHARING ITEMS</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">The exact transmission process of the virus is still being figured out, but they certainly transmit through repository droplets. These droplets can, when sneezed or coughed onto a surface, be picked up by unsuspecting people onto their clothes and all sorts of surfaces. And when these droplets enter the body of a healthy individual – through mouth or nose – they become infected as well. That is why, as a measure of precaution, it is advised to either limit or prohibit the sharing of objects such as <span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-weight: bolder; border: 0px; vertical-align: baseline; font-family: inherit;\"><i style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\">dishes, drinking glasses, cups, utensils, or even towels and bedding</i></span> – as they are more susceptible to become carriers of the virus.</p><ul style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: none; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 16px; border: 0px; vertical-align: baseline; text-transform: uppercase;\">WASH IMMEDIATELY AFTER USE</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">While it is a good practice by itself, in order to protect your home against coronavirus, washing all your items as soon as you are done using them is a good step to take. The dishes, the utensils – clean them using hot water and soap once you are done with them. There is no need to do anything fancy. Just <span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-weight: bolder; border: 0px; vertical-align: baseline; font-family: inherit;\"><i style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\">scrub them really well with soap</i></span> and that’s it. The same goes for laundry, especially if your clothes, towels or bedding have any blood or body fluids. <span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-weight: bolder; border: 0px; vertical-align: baseline; font-family: inherit;\"><i style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\">Hot water and detergent</i></span> are enough to disinfect them.</p><ul style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: none; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 16px; border: 0px; vertical-align: baseline; text-transform: uppercase;\">DISINFECT ELECTRONICS</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">Often, people forget how dirty or susceptible electronic items such as appliances, phones, laptops, tablets, or even laptops can get. Phones, in particular, constantly remain at our side – whether we are inside or outside. They unintentionally come into contact with a lot of foreign objects and can easily pick up the virus. So, just as we wash our hands and mouths after returning home, our electronic devices should be cleaned as well; especially if you are committed to protecting your home against coronavirus. While soap and water may do the trick, they are hardly appropriate for electronic devices. Instead, <span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-weight: bolder; border: 0px; vertical-align: baseline; font-family: inherit;\"><i style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\">use alcohol pads</i></span> to<a href=\"https://www.bproperty.com/blog/clean-home-appliances/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); display: inline; position: relative; border: 0px; transition-duration: 0.25s; transition-timing-function: ease; vertical-align: baseline; font-family: inherit; opacity: initial;\"> clean home appliances</a> and electronics, which are better as a cleaning agent and they work as a disinfectant as well.</p><ul style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: none; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 16px; border: 0px; vertical-align: baseline; text-transform: uppercase;\">MOP THE FLOORS</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">Mopping the floors of our homes is a regular practice here in Bangladesh, but to really protect your home against coronavirus, you need to take a step further. Even though there is a low probability of picking up the virus from the floor, it is always better to be safe than sorry. As it stands, most floors are washed using only water and not even soapy water, which leaves them vulnerable. So, to truly clean the floors, start mixing <span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-weight: bolder; border: 0px; vertical-align: baseline; font-family: inherit;\">antiseptic disinfectants</span> into the water used. This will clear out not only any hint of Covid-19 but also most other germs.</p><ul style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: none; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 16px; border: 0px; vertical-align: baseline; text-transform: uppercase;\">CLEAN THE CLEANING EQUIPMENT</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">Reusing “dirty” cleaning equipment such as sponges and mops may do more harm than help and can accidentally help spread viruses. An item that was used to clean a vulnerable or infected surface may still have residue left on it. That is why the items themselves need to be <span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-weight: bolder; border: 0px; vertical-align: baseline; font-family: inherit;\"><i style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\">rinsed and washed using hot water and then dried using heat</i></span>.</p><ul style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: none; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 16px; border: 0px; vertical-align: baseline; text-transform: uppercase;\">PET CARE</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">Pets are one of the members of our family and we try our<a href=\"https://www.bproperty.com/blog/create-pet-friendly-apartment/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); display: inline; position: relative; border: 0px; transition-duration: 0.25s; transition-timing-function: ease; vertical-align: baseline; font-family: inherit; opacity: initial;\"> best to make them feel that as well</a>. But unfortunately, pets can be carriers of Covid-19 without anyone knowing. And, there have been some reports of dogs being infected with the virus as well. So, to protect your home against coronavirus, pet care needs to be taken into account as well. Bathing your beloved cat or dog every day is a good start, and not just with water. Try to <span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-weight: bolder; border: 0px; vertical-align: baseline; font-family: inherit;\"><i style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\">use soap and proper disinfectant</i></span> to make sure you and your pet are safe. Furthermore, it is also advised not to let your dog play with unfamiliar or infected individuals.</p><ul style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: none; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 16px; border: 0px; vertical-align: baseline; text-transform: uppercase;\">LIMIT OUTSIDERS</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">Limiting the number of people you let into your home may not be an ideal, but it can be an effective move to protect your home against the virus. The incubation period for Covid-19 is between 2 and 14 days. Even then, the symptoms may not outright signify the virus. As such, <span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-weight: bolder; border: 0px; vertical-align: baseline; font-family: inherit;\"><i style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\">limiting outsiders</i></span> can be a necessary protective move for the time being.</p><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">Bangladesh had been ranked as one of the most vulnerable countries against coronavirus in recent times, and the virus has now made its presence well. But it is important to understand that this coronavirus is preventable with just a bit of precaution. So, take the measures mentioned here from today and start protecting your home against Covid-19.</p><div><br></div></div></div></div></div></section>', '<p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">কোভিড-১৯, যা নভেল করোনা ভাইরাস নামে পরিচিত, ইতিমধ্যে যা বাংলাদেশে ছড়িয়ে পরতে শুরু করেছে। সোশ্যাল মিডিয়ায় নানাভাবে অতিরঞ্জিত খবর ছড়িয়ে পরার কারনে সবাই ভীষণ ভয়ে দিন পার করছেন। যদিও বুঝে কিংবা না বুঝে অধিকাংশ মানুষই আতঙ্কগ্রস্ত হয়ে পরছেন। কিন্তু এতোটা আতঙ্কিত না হলেই বরং পরিস্থিতি অনিকূলে থাকবে। ঘাবড়ে যাবার কিছু নেই। করোনা ভাইরাস প্রতিরোধে আতঙ্কের চেয়ে সচেতনতাই অনেক বেশি কার্যকরী। ডব্লিউএইচও (WHO) এর মতো সংস্থাগুলো বলেছে, দ্রুত ছড়িয়ে পরার ক্ষেত্রে ইনফ্লুয়েঞ্জা, কোভিড-১৯ এর চেয়ে বেশি বিপজ্জনক। সুতরাং, করোনা নিয়ে ভয় পাবার কিছু নেই। তবে সতর্কতা অবশ্যই প্রয়োজন। আর তাই, নিজেকে এবং নিজের পরিবারকে সুরক্ষিত করার জন্য এই কয়েকটি গুরুত্বপুর্ণ সতর্কতা অনুসরণ করা উচিত। করোনা ভাইরাস থেকে ঘরের সুরক্ষা নিশ্চিত করতে, এই কয়েকটি উপায় অবলম্বন করলেই আপনি করোনার আধিপত্য থেকে নিরাপদ থাকতে পারবেন। তবে তার আগে, করোনা সম্পর্কে সঠিক এবং ভুল তথ্য কোনটি সেটি আপনাকে নিশ্চিত হতে হবে। যেমন, করোনা ভাইরাসকে নিয়ে ভুল একটি ধারণা হল, উষ্ণ জলবায়ুতে এই ভাইরাসটি টিকে থাকতে পারে না। এরকম ভুল তথ্যে আস্থা রাখা যাবে না। তথ্যের উৎস যাচাই বাছাই করে নিয়ে তবেই বিশ্বাস করবেন। এবার, তাহলে চলুন করোনা ভাইরাস থেকে ঘরের সুরক্ষা কিভাবে নিশ্চিত করবেন সে সম্বন্ধে জানা যাক!</p><figure id=\"attachment_37687\" aria-describedby=\"caption-attachment-37687\" class=\"wp-caption alignnone\" style=\"box-sizing: border-box; margin-top: 40px; margin-bottom: 40px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589.jpg\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; transition-duration: 0.25s; display: block;\"><img class=\"wp-image-37687 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589.jpg\" alt=\"পরিষ্কারক আইটেম \" width=\"1440\" height=\"959\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-1024x682.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; vertical-align: baseline; border: 0px; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-37687\" class=\"wp-caption-text\" style=\"box-sizing: border-box; margin: 5px 0px 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">সুরক্ষা এখন নিজেদের হাতেই</figcaption></figure><ul style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: none; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 16px; border: 0px; vertical-align: baseline; text-transform: uppercase;\">কমন স্পেসগুলো নিয়মিত পরিষ্কার করুন</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">আমাদের ঘরের এমন কিছু জিনিস বা জায়গা আছে যেগুলো, সারাদিনে বেশি ব্যবহৃত হয়ে থাকে। সেগুলোর প্রতি আপনাকে মনোযোগী হতে হবে। যেমন, টেবিল, ডাইনিং চেয়ার, ইলেকট্রিক সুইচ, টয়লেট, ডোর নবস, হ্যান্ডেল এবং রিমোট। সারা দিনে এই জিনিসগুলো ঘরের সবাই বার বার স্পর্শ করে থাকে। যার ফলে ঘরের এই সমস্ত জিনিসে করোনা ভাইরাস ছড়িয়ে পরার সম্ভাবনা বেশি থাকে। এইজন্য এগুলো নিয়মিত পরিষ্কার করা উচিত। খুবই ভালো ফলাফল হয় যদি দিনে দু-একবার এগুলো পরিষ্কার করা যেত। এগুলো পরিষ্কার করার জন্য যেকোন দোকান থেকে অ্যালকোহল বেইসড লিকুইড ক্লিনার দিয়ে পরিষ্কার করে জীবাণু মুক্ত করতে পারেন।</p><ul style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: none; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit; text-align: justify;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 16px; border: 0px; vertical-align: baseline; text-transform: uppercase;\">অপর ব্যক্তির কিছু ব্যবহার করবেন না</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">এই ভাইরাস মানুষের ফুসফুসে সংক্রমণ ঘটিয়ে থাকে এবং শ্বাস প্রশ্বাসের মাধ্যমেও একজনের থেকে আরেকজনের দেহে ছড়িয়ে পরে। সাধারণ ফ্লু বা ঠান্ডা লাগার মতোই এই ভাইরাস ছড়ায় হাঁচি বা কাশির মাধ্যমে। থুতু ফেলার সময়ও আপনাকে হতে হবে সাবধান। ভাইরাসটি নতুন হওয়াতে এখনই এর কোনো টিকা বা প্রতিষেধক আবিষ্কার হয়নি। এমনকি এমন কোনও চিকিৎসাও নেই, যা এ রোগ ঠেকাতে পারে। তাই এই রোগ থেকে নিজেকে সুরক্ষিত রাখতে অন্যের প্লেট, চশমা, কাপ, তোয়ালে, ব্যক্তিগত জিনিস এমনকি অন্যের বিছানা ব্যবহার কিংবা আশেপাশে যাওয়া, এ সকল কিছু এখন থেকেই কমিয়ে দিতে হবে। একে অপরের সংস্পর্শে থাকা সম্পূর্ণ কমিয়ে দিতে হবে।</p><ul style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: none; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit; text-align: justify;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 16px; border: 0px; vertical-align: baseline; text-transform: uppercase;\">সাবান দিয়ে ভালো মত ধুয়ে নিন</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">করোনা ভাইরাস থেকে সুরক্ষা পেতে চাইলে, আপনার ব্যবহারের সবকিছু সাথে সাথে ধুয়ে ফেলুন। গরম পানি ব্যবহার করে সাবান বা লিকুইড সোপ দিয়ে সাথে সাথে ধুয়ে নিন। বেশি কিছু করবার প্রয়োজন নেই, সাবান দিয়ে অল্প কিছুক্ষণ ঘষে মেজে, তারপর গরম পানি দিয়ে ধুয়ে নিন। আপনার ব্যবহারের লন্ড্রি কাপড় কিংবা বিছানার চাদর একইভাবে গরম পানি আর ডিটারজেন্ট দিয়ে ভিজিয়ে রেখে ধুয়ে ফেলুন। গরম পানি আর ডিটারজেন্ট, যেকোন জীবাণু ধ্বংসের জন্য যথেষ্ট।</p><ul style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: none; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit; text-align: justify;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 16px; border: 0px; vertical-align: baseline; text-transform: uppercase;\">ইলেকট্রনিক্সের জিনিসগুলো পরিষ্কার রাখুন</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">হোম অ্যাপ্লায়েন্সগুলো অবশ্যই পরিষ্কার রাখুন। আপনি চাইলে এগুলো ঘরোয়া উপায়ে পরিষ্কার করতে পারেন। তার জন্য আছে নানা রকমের <a href=\"https://www.bproperty.com/blog/bn/%E0%A6%B9%E0%A7%8B%E0%A6%AE-%E0%A6%85%E0%A7%8D%E0%A6%AF%E0%A6%BE%E0%A6%AA%E0%A7%8D%E0%A6%B2%E0%A6%BE%E0%A6%AF%E0%A6%BC%E0%A7%87%E0%A6%A8%E0%A7%8D%E0%A6%B8-%E0%A6%AA%E0%A6%B0%E0%A6%BF%E0%A6%B7%E0%A7%8D%E0%A6%95%E0%A6%BE%E0%A6%B0/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); display: inline; position: relative; border: 0px; transition-duration: 0.25s; transition-timing-function: ease; vertical-align: baseline; font-family: inherit; opacity: initial;\">কার্যকরী টিপস</a>। হোম অ্যাপ্লায়েন্স ছাড়াও আরও বেশ কিছু অনুষঙ্গ আছে যেগুলো নিয়ে আমরা প্রতিনিয়ত ঘরে এবং বাইরে দৌড়াই। এবং ঘর পরিষ্কারের পাশাপাশি ঘরের ইলেক্ট্রনিক্সগুলো পরিষ্কার করতেও ভুলে যাই। যেগুলো হল, ফোন, ল্যাপটপ, ট্যাবলেট ইত্যাদি। এগুলো নিয়ে আমরা বাইরে অনেক জায়গায়ই ঘোরাফেরা করি। সুতরাং এগুলোর মাধ্যমেও এই ভাইরাসটি আমাদের ঘরে এবং দেহে প্রবেশ করতে পারে। এইজন্য এগুলো অ্যালকোহল প্যাড দিয়ে পরিষ্কার করুন। এবং সময় সময় খেয়াল রাখুন যে আবার পরিষ্কার করা প্রয়োজন কিনা।</p><ul style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: none; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit; text-align: justify;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 16px; border: 0px; vertical-align: baseline; text-transform: uppercase;\">ঘরের মেঝে পরিষ্কার করুন</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">করোনা ভাইরাস থেকে ঘরের সুরক্ষা নিশ্চিত করতে ঘরের মেঝে নিয়মিত সাবান দিয়ে পরিষ্কার করুন। মেঝে থেকে এই ভাইরাস ছড়ানোর সম্ভাবনা কম হলেও সাবধান থাকাটাই সবচেয়ে নিরাপদ। সেভলন অ্যান্টিসেপটিক পানির সাথে মিশিয়ে ঘরের মেঝে মুছে নিন। শুধু কোভিড -১৯ নয়, অন্যান্য রোগ জীবাণু থেকেও আপনি অচিরেই মুক্তি পেয়ে যাবেন।</p><ul style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: none; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit; text-align: justify;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 16px; border: 0px; vertical-align: baseline; text-transform: uppercase;\">ধোয়ামোছার জিনিসগুলো পরিষ্কার করুন</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">একবারের ব্যবহারের পোঁছাটি পুনরায় ব্যবহার করার জন্য এই ভাইরাসটি আবার ছড়িয়ে যেতে পারে। সুতরাং ব্যবহারের পোঁছা, স্পঞ্জ এবং মোপসগুলো গরম পানি ব্যবহার করে সাবান দিয়ে ভালোমত পরিষ্কার করে নেওয়া উচিত। দেখা গেল, পরিষ্কার হয়ে যাওয়া জীবাণুগুলো আবারও ঘরের থেকে গেল। সেজন্য প্রচুর সাবধানতা অবলম্বন করতে হবে। প্রয়োজন হলে ধুয়ে ফেলা পোঁছা গুলো তাপের সাহায্যে শুকিয়ে নিতে হবে।</p><ul style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: none; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit; text-align: justify;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 16px; border: 0px; vertical-align: baseline; text-transform: uppercase;\">পোষ্য প্রাণীটির যত্ন নিন</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">আমাদের সবচেয়ে প্রিয় এবং বেশ আদুরে হল এই পোষ্য প্রাণীগুলো। কিন্তু কষ্টের হলেও, এটাই সত্যি যে এই নিরিহ প্রাণীগুলোও এই ভাইরাসের বাহক হতে পারে। তথ্যে আছে, ইতিমধ্যে কিছু পোষ্য প্রাণীর দেহে করোনা ভাইরাসের সন্ধান পাওয়া গেছে। তাই তাদের প্রতি রাখতে হবে বিশেষ খেয়াল। আপনার পোষা সব প্রাণীকেই কুসুম গরম পানি এবং সাবান দিয়ে ভালো মত গোসল করান। আরও ভালো হয় জীবাণুনাশক ব্যবহার করলে। এমন সময়ে এই পোষ্য প্রাণীগুলো নিয়ে বাসার বাইরে বের না হওয়াই শ্রেয়।</p><ul style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: none; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"box-sizing: border-box; margin: 0.5em 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; list-style: disc; border: 0px; vertical-align: baseline; font-family: inherit; text-align: justify;\"><li style=\"box-sizing: border-box; margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 16px; border: 0px; vertical-align: baseline; text-transform: uppercase;\">অতিথি আগমন কমিয়ে ফেলুন</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">ঘরের ভেতর বাইরের মানুষদের আনাগোনা যতটুকু সম্ভব কমিয়ে আনুন। এই ভাইরাসটির অণ্ডস্ফুটন সময়কাল হচ্ছে ২ থেকে ১৪ দিন সুতরাং এই সময়কালে ঘরের ভেতর বাইরের মানুষ না আনাই শ্রেয়। করোনা ভাইরাস থেকে ঘরের সুরক্ষা নিশ্চিত করতে আপনাকে এতটুকু করতেই হবে। কেননা নিজের ও ঘরের সকলের নিরাপত্তা সবকিছুর উর্ধ্বে।</p><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\">সাম্প্রতিক সময়ে করোনা ভাইরাসে আক্রান্ত দেশগুলো মধ্যে ইতিমধ্যেই বাংলাদেশ তার নাম লিখিয়েছে এবং দেশে এই ভাইরাসে আক্রান্ত রোগীর সংখ্যা ক্রমশ বাড়ছে। এবং এমন অবস্থায় শুধুমাত্র নিজস্ব সাবধানতা দ্বারা এই সমস্যা মোকাবেলা করা সম্ভব। সুতরাং, আজ থেকে বরং এখান থেকেই এই উল্লিখিত ব্যবস্থা গ্রহণ করুন এবং কোভিড -১৯ এর বিরুদ্ধে আপনার সুরক্ষা নিশ্চিত শুরু করুন। </span></p>', NULL, NULL);
INSERT INTO `posts` (`id`, `category_id`, `post_title_en`, `post_title_bn`, `post_image`, `details_en`, `details_bn`, `created_at`, `updated_at`) VALUES
(5, 1, 'INNOVATIVE DIY HOME OFFICE DESK DECOR IDEAS', 'হোম অফিস ডেস্ক ডেকোর -“ডি আই ওয়াই”- চমৎকার সব ডেকোর আইডিয়া!', 'public/media/post/1705003943736354.jpg', '<p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">During these days, most of the people are <a href=\"https://www.bproperty.com/blog/home-office-productivity-tips/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); display: inline; position: relative; border: 0px; transition-duration: 0.25s; transition-timing-function: ease; vertical-align: baseline; font-family: inherit; opacity: initial;\">working from home</a>. As a result, it’s really important to decorate the desk of your workstation in order to uplift your mood and organize your work. A clean, well furnished, and elegantly decorated working space can bring better concentration and inspiration to work. The arrangement of proper lighting is also an important function of the decor. Here are some best DIY home office desk decor ideas you can easily select and apply to your place.</p><h1 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 25px; border: 0px; vertical-align: baseline; text-transform: uppercase; -webkit-text-stroke-width: 0.2px; text-align: justify;\">KEEPING IT MINIMAL</h1><figure id=\"attachment_38538\" aria-describedby=\"caption-attachment-38538\" class=\"wp-caption aligncenter\" style=\"box-sizing: border-box; margin: 40px auto; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2.jpg\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; transition-duration: 0.25s; display: block;\"><img class=\"size-full wp-image-38538\" src=\"https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2.jpg\" alt=\"table and a chair\" width=\"1440\" height=\"959\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-1024x682.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-24x16@2x.jpg 48w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-300x200@2x.jpg 600w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-270x180@2x.jpg 540w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-36x24@2x.jpg 72w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-48x32@2x.jpg 96w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-272x182@2x.jpg 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; vertical-align: baseline; border: 0px; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38538\" class=\"wp-caption-text\" style=\"box-sizing: border-box; margin: 5px 0px 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">Keeping it minimal is the most gorgeous way</figcaption></figure><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><a href=\"https://www.bproperty.com/blog/minimalist-home-design/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); display: inline; position: relative; border: 0px; transition-duration: 0.25s; transition-timing-function: ease; vertical-align: baseline; font-family: inherit; opacity: initial;\">Keeping it minimal</a> and simplest is the most inexpensive idea, and you don’t need to explore a lot of options. Minimal desk decor ideas at your home can save up your space and you can easily fit in a corner. Use a small desk of your choice, along with a wall painting of a small-sized frame. Keep the frame on your table with some tiny showpieces. Two or three pieces are fine but don’t overdo by using much. Otherwise, it will hamper<a href=\"https://www.bproperty.com/blog/tips-achieve-minimal-lifestyle/\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); display: inline; position: relative; border: 0px; transition-duration: 0.25s; transition-timing-function: ease; vertical-align: baseline; font-family: inherit; opacity: initial;\"> the minimalism</a> of your table and will occupy your workspace.</p><h1 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 25px; border: 0px; vertical-align: baseline; text-transform: uppercase; -webkit-text-stroke-width: 0.2px; text-align: justify;\">MATCHING WITH A LIGHT ACCENT</h1><figure id=\"attachment_38539\" aria-describedby=\"caption-attachment-38539\" class=\"wp-caption aligncenter\" style=\"box-sizing: border-box; margin: 40px auto; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056.jpg\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; transition-duration: 0.25s; display: block;\"><img class=\"size-full wp-image-38539\" src=\"https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056.jpg\" alt=\"table with a pc, mobile, plant\" width=\"1440\" height=\"960\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-1024x683.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; vertical-align: baseline; border: 0px; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38539\" class=\"wp-caption-text\" style=\"box-sizing: border-box; margin: 5px 0px 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">Matching light accent with two bright colors can uplift your mood</figcaption></figure><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">Your desk decor with matching colors and styles can be a great way to present it. The light hue and contrast of the matching color (preferably yellow or white) must set a mixing tone with some bright reflections of green or brown. This makes your work table look vibrant and lively.</p><h1 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 25px; border: 0px; vertical-align: baseline; text-transform: uppercase; -webkit-text-stroke-width: 0.2px; text-align: justify;\">ALL ORGANIZED IN ONE</h1><figure id=\"attachment_38540\" aria-describedby=\"caption-attachment-38540\" class=\"wp-caption aligncenter\" style=\"box-sizing: border-box; margin: 40px auto; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash.jpg\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; transition-duration: 0.25s; display: block;\"><img class=\"size-full wp-image-38540\" src=\"https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash.jpg\" alt=\"A wooden desk with many objects\" width=\"1440\" height=\"960\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-1024x683.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; vertical-align: baseline; border: 0px; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38540\" class=\"wp-caption-text\" style=\"box-sizing: border-box; margin: 5px 0px 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">You can arrange all in one desk</figcaption></figure><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">If you like bursts of colors and want to integrate a good amount of things into your desk decor, but have a little space, you need to be very tactical. Firstly, choose spots on your desk. Then place things according to their shapes and the space they occupy. Set up some organizers and hang those on your wall, so that you can reach them easily. Holders, a small pot of plant, screen, the whiteboard can also be kept. Keep your laptop on the side of the table. To make it more interesting you can hang a bookshelf so that you can read something while you are having a small break. For diversification and to portray old times, your desk can be made of wood, infused with a rustic color. Keeping a lampshade with bright light will add the cherry on top.</p><h1 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 25px; border: 0px; vertical-align: baseline; text-transform: uppercase; -webkit-text-stroke-width: 0.2px; text-align: justify;\">PLANT TO BREATH FRESH</h1><figure id=\"attachment_38541\" aria-describedby=\"caption-attachment-38541\" class=\"wp-caption aligncenter\" style=\"box-sizing: border-box; margin: 40px auto; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293.jpg\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; transition-duration: 0.25s; display: block;\"><img class=\"size-full wp-image-38541\" src=\"https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293.jpg\" alt=\"Plant and pc\" width=\"1440\" height=\"960\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-1024x683.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; vertical-align: baseline; border: 0px; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38541\" class=\"wp-caption-text\" style=\"box-sizing: border-box; margin: 5px 0px 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">A pot of green can make your day</figcaption></figure><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">Greenery is always a thing of serenity, of beauty which is a joy forever. If your desk is not shaded and kept just beside the window, you can always have small pots of plants right beside you. Plants like cactus, aglaonema, peace lily, philodendron, dracaena, etc are the best options. They are easily available in several horticulture centers in Dhaka. But remember, your work desk must be placed at such an angle so that enough sunlight enters during the daytime. Plants are the best things for any kind of decors, and henceforth, works for desk decor as well.</p><h1 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 25px; border: 0px; vertical-align: baseline; text-transform: uppercase; -webkit-text-stroke-width: 0.2px; text-align: justify;\">NIGHT STYLE WITH MOOD LIGHT AND FAIRY LIGHTS</h1><figure id=\"attachment_38542\" aria-describedby=\"caption-attachment-38542\" class=\"wp-caption aligncenter\" style=\"box-sizing: border-box; margin: 40px auto; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash.jpg\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; transition-duration: 0.25s; display: block;\"><img class=\"size-full wp-image-38542\" src=\"https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash.jpg\" alt=\"table with lights\" width=\"1440\" height=\"959\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-1024x682.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; vertical-align: baseline; border: 0px; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38542\" class=\"wp-caption-text\" style=\"box-sizing: border-box; margin: 5px 0px 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">If you work in night shifts, make your table interesting with different lightings</figcaption></figure><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">Many people work at night and like to decorate their workstation with different arrangements of lights. If you love dimmed lights, you can come up with a beautiful desk decor. There are several LED lights with low powers, which you can fix at the bottom of your desk. Keep a counter beneath for storing valuable documents there. Put a low-power lampshade on the side. You can encircle your desk with fairy lights of multiple colors, to add to the beautification. All the different kinds of lights together finally will bring your utmost satisfaction.</p><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\">These are some of the most unique and replenishing desk decor ideas for you. <a href=\"https://www.bproperty.com/blog/organizing-home-office-productivity/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); display: inline; position: relative; border: 0px; transition-duration: 0.25s; transition-timing-function: ease; vertical-align: baseline; font-family: inherit; opacity: initial;\">Start organizing your home office for maximum productivity.</a> Daily office works take a heavy toll on your mind and physique. <a href=\"https://www.bproperty.com/blog/tips-work-from-home-ramadan/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); display: inline; position: relative; border: 0px; transition-duration: 0.25s; transition-timing-function: ease; vertical-align: baseline; font-family: inherit; opacity: initial;\">Work from home will be quite relieving</a> if your workstation cheers you up every day. A boring workplace with no decor can make your mood bland and you may lose the incentive to work properly. And that is why<a href=\"https://www.bproperty.com/blog/?s=home+decor\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); display: inline; position: relative; border: 0px; transition-duration: 0.25s; transition-timing-function: ease; vertical-align: baseline; font-family: inherit; opacity: initial;\"> decorating your home</a> office desk is a must with any of these spectacular ideas in order to stay positive, bring out innovative ideas, and concentrate at work.</p>', '<p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><a href=\"https://www.bproperty.com/blog/bn/%E0%A6%95%E0%A6%B0%E0%A7%8B%E0%A6%A8%E0%A6%BE-%E0%A6%AD%E0%A6%BE%E0%A6%87%E0%A6%B0%E0%A6%BE%E0%A6%B8-%E0%A6%A5%E0%A7%87%E0%A6%95%E0%A7%87-%E0%A6%98%E0%A6%B0%E0%A7%87%E0%A6%B0-%E0%A6%B8%E0%A7%81%E0%A6%B0%E0%A6%95%E0%A7%8D%E0%A6%B7%E0%A6%BE/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); display: inline; position: relative; border: 0px; transition-duration: 0.25s; transition-timing-function: ease; vertical-align: baseline; font-family: inherit; opacity: initial;\">কোভিড-১৯</a> এর সময়ে আমরা সবাই বাসায় থেকে কাজ করছি! সবারই একটা অফিস স্পেস নিশ্চয়ই আছে? যেখানে আর কিছু থাকুক না থাকুন একটা “অফিস ডেস্ক” অবশ্যই আছে। আর আমি একজন হোম ডেকোর রাইটার হিসেবে সবকিছুতে নান্দনিকতা দেখতে কিংবা খুঁজে পেতে পছন্দ করি। তাই হোম অফিস হোক কিংবা অফিস সবকিছু পরিমার্জিতভাবে সাজিয়ে কাজ করলে নিজের কাছেই ভালো লাগে এবং কাজের </span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\">গতি</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"> বাড়ে তাই, আজ চলুন জেনে নেই, হোম অফিস ডেস্ক ডেকোর -“ডি আই ওয়াই”- চমৎকার সব আইডিয়া সম্বন্ধে। </span></p><h1 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 25px; border: 0px; vertical-align: baseline; text-transform: uppercase; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">মিনিমাল লুক </span></h1><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2.jpg\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); display: inline; position: relative; border: 0px; transition-duration: 0.25s; transition-timing-function: ease; vertical-align: baseline; font-family: inherit; opacity: initial;\"><img class=\"alignnone wp-image-38538 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2.jpg\" alt=\"ডেস্ক \" width=\"1440\" height=\"959\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-1024x682.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-24x16@2x.jpg 48w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-300x200@2x.jpg 600w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-270x180@2x.jpg 540w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-36x24@2x.jpg 72w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-48x32@2x.jpg 96w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-272x182@2x.jpg 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"box-sizing: border-box; margin: 40px 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; vertical-align: baseline; border: 0px; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s; display: block;\"></a><a href=\"https://www.bproperty.com/blog/bn/%E0%A6%8F%E0%A6%87-%E0%A7%AB%E0%A6%9F%E0%A6%BF-%E0%A6%AC%E0%A6%BF%E0%A6%B7%E0%A7%9F-%E0%A6%9C%E0%A7%87%E0%A6%A8%E0%A7%87-%E0%A6%AC%E0%A6%BE%E0%A6%B8%E0%A6%BE-%E0%A6%A1%E0%A6%BF%E0%A6%9C%E0%A6%BE%E0%A6%87%E0%A6%A8-%E0%A6%95%E0%A6%B0%E0%A7%81%E0%A6%A8/\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); display: inline; position: relative; border: 0px; transition-duration: 0.25s; transition-timing-function: ease; vertical-align: baseline; font-family: inherit; opacity: initial;\">হোম ডিজাইন করতে গেলে মিনিমাল লুকের সুবিধা</a> হচ্ছে আপনি খুব কম খরচে যেকোন কিছুই ফুটিয়ে তুলতে পারবেন। মিনিমাল লুক ডেস্ক ডেকোর আপনার ঘরের জায়গা অনেকটা কমিয়ে আনবে এবং আপনি কম জায়গায় খুব সুন্দর করে সবকিছু গুছিয়ে রাখতে পারবেন। ছোট খাটো একটা টেবিল প্রথমেই বেছে নিন এবং টেবিলের সৌন্দর্য বাড়াতে রাখতে পারেন ছোট একটা ফ্রেম। ফ্রেমের আসে পাশে রেখে দিতে পারেন ছোট ছোট বেশ কয়েকটি শোপিস। তবে খেয়াল রাখবেন বেশি কিছু রাখবেন না এতে করে মিনিমাল লুক আর থাকবে না। </span></p><h1 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 25px; border: 0px; vertical-align: baseline; text-transform: uppercase; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">লাইট অ্যাকসেন্ট</span></h1><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056.jpg\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); display: inline; position: relative; border: 0px; transition-duration: 0.25s; transition-timing-function: ease; vertical-align: baseline; font-family: inherit; opacity: initial;\"><img class=\"alignnone wp-image-38539 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056.jpg\" alt=\"পিসি কিবোর্ড \" width=\"1440\" height=\"960\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-1024x683.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"box-sizing: border-box; margin: 40px 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; vertical-align: baseline; border: 0px; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s; display: block;\"></a>ডেস্ক ডেকোর রঙের সাথে মিলিয়ে করলে আরও বেশি সুন্দর দেখাবে! লাইট কনট্রাস্টের সাথে ডীপ কনট্রাস্ট মিলিয়ে নিয়ে বেশ সুন্দর করেই সাজানো সম্ভব। হলুদের সাথে সাদা মিলিয়ে চমৎকার একটা কনট্রাস্ট তৈরি হয় যেখানে হালকা ও </span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\">গাঢ় </span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\">দুটো রঙই এক সাথে থাকে। <a href=\"https://www.bproperty.com/blog/bn/%E0%A6%95%E0%A7%8B%E0%A6%A5%E0%A6%BE%E0%A7%9F-%E0%A6%AA%E0%A6%BE%E0%A6%AC%E0%A7%8B-%E0%A6%A8%E0%A6%BE%E0%A6%A8%E0%A6%BE%E0%A6%B0%E0%A6%95%E0%A6%AE-%E0%A6%AC%E0%A6%BE%E0%A6%B9%E0%A6%BE%E0%A6%B0/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); display: inline; position: relative; border: 0px; transition-duration: 0.25s; transition-timing-function: ease; vertical-align: baseline; font-family: inherit; opacity: initial;\">বাহারি বাতি</a> ব্যবহার করলে আপনার হোম অফিস ডেস্ক দেখতে বেশ সুন্দর দেখাবে! </span></p><h1 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 25px; border: 0px; vertical-align: baseline; text-transform: uppercase; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">সব একসাথে অর্গানাইজ রাখতে হবে</span></h1><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash.jpg\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); display: inline; position: relative; border: 0px; transition-duration: 0.25s; transition-timing-function: ease; vertical-align: baseline; font-family: inherit; opacity: initial;\"><img class=\"alignnone wp-image-38540 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash.jpg\" alt=\"কাঠের টেবিল এবং পিসি \" width=\"1440\" height=\"960\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-1024x683.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"box-sizing: border-box; margin: 40px 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; vertical-align: baseline; border: 0px; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s; display: block;\"></a>আপনি যদি অনেক রঙ এক সাথে পছন্দ করেন তাহলে, আপনাকে একটু সাবধানে এই রঙগুলো ব্যবহার করতে হবে। মনে রাখতে হবে আপনার হোম অফিস ডেস্কটা এতটাও বড় না যে সব রঙ এক সাথে ব্যবহার করা যাবে না। প্রথমে আপনাকে বেছে নিতে হবে কোথায় কোথায় রঙ ব্যবহার করবেন, এরপর সেখানে রঙ করুন। আপনি চাইলে ডেস্ক অর্গানাইজার ব্যবহার করতে পারেন। এতে করে ডেস্ক ডেকোর আরও সুন্দর হবে। পেন হোল্ডার বা কলমদানি রাখুন। ডেস্কের পাশা বুক সেলফ রাখুন যাতে করে আপনি সময় পেলে বই পড়তে পারেন। খুব সম্ভবত আপনার ডেস্কটি কাঠের যদি তাই হয়ে থাকে তাহলে আপনি এই কাঠের আসবাবে রাস্টিক লুক আনতে আপনি ল্যান্ড শেড ব্যবহার করতে পারেন। এটা সহজেই ডেস্ক ডেকোর বদলে ফেলবে। </span></p><h1 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 25px; border: 0px; vertical-align: baseline; text-transform: uppercase; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">এক টুকরো গাছ রাখুন </span></h1><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293.jpg\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); display: inline; position: relative; border: 0px; transition-duration: 0.25s; transition-timing-function: ease; vertical-align: baseline; font-family: inherit; opacity: initial;\"><img class=\"alignnone wp-image-38541 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293.jpg\" alt=\"গাছ এবং পিসি \" width=\"1440\" height=\"960\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-1024x683.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"box-sizing: border-box; margin: 40px 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; vertical-align: baseline; border: 0px; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s; display: block;\"></a>ডেস্কের উপর একটা ছোট</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"> টবে </span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\">পছন্দের যেকোন গাছ রাখুন। চেষ্টা করবেন আপনার টেবিলটা জানালার কাছে রাখতে, এতে করে আপনার ছোট্ট গাছে আলো ছায়া পর্যাপ্ত পরিমাণে আসবে। ক্যাকটাস, অ্যাগলেওনমা, পিস লিলি, ফিলোডেনড্রন, ড্র্যাকেনা ইত্যাদি গাছগুলো বেশ ভালো। আশাপাশের যেকোন নার্সারিতে আপনি সহজেই এই গাছগুলো খুঁজে পাবেন। মনে রাখতে হবে, আপনার ডেস্কটি ঘরের এমন কোণায় রাখবেন যেখানে আলো বাতাসের প্রবেশ থাকে পুরোদমে।</span></p><h1 style=\"box-sizing: border-box; margin: 1.2em 0px 1em; padding: 0px; -webkit-font-smoothing: initial; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; line-height: 1.5; color: rgb(22, 22, 22); font-size: 25px; border: 0px; vertical-align: baseline; text-transform: uppercase; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">আলোর ব্যবস্থা </span></h1><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash.jpg\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; color: rgb(5, 146, 233); display: inline; position: relative; border: 0px; transition-duration: 0.25s; transition-timing-function: ease; vertical-align: baseline; font-family: inherit; opacity: initial;\"><img class=\"alignnone wp-image-38542 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash.jpg\" alt=\"টেবিল এবং গাছ \" width=\"1440\" height=\"959\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-1024x682.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"box-sizing: border-box; margin: 40px 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; vertical-align: baseline; border: 0px; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s; display: block;\"></a>অনেকে আছি আমরা রাতের বেলায় কাজ করি তাদের জন্য অফিস ডেস্ক ডেকোর হওয়া উচিত সময় উপযোগী। আপনি যদি মৃদু আলো পছন্দ করে থাকেন তাহলে, আপনি এই মৃদু আলো ব্যবহার করেই অফিস ডেস্ক সাজাতে পারেন। এমন অনেক “এলইডি লাইট” আছে যা আপনি অফিস ডেস্কের উপরে লাগাতে পারেন, কাজেও সাহায্য হবে এবং দেখতেও সুন্দর দেখাবে! অফিস ডেস্ক সাজাতে আপনি “এঞ্জেল লাইট” ব্যবহার করতে পারেন। এটাও বেশ মানাবে! </span></p><p style=\"box-sizing: border-box; margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; font-family: "Open Sans", Arial, sans-serif; line-height: 1.7; color: rgb(96, 96, 96); border: 0px; vertical-align: baseline; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\">এগুলো ছিল চমৎকার সব অফিস ডেস্ক ডেকোর আইডিয়া। কেমন </span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\">হয়</span><span style=\"box-sizing: border-box; margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; text-shadow: rgba(0, 0, 0, 0.01) 0px 0px 1px; border: 0px; vertical-align: baseline; font-family: inherit;\"> বা কেমন কাজের জানাতে ভুলবেন না! </span></p>', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `post_category`
--
CREATE TABLE `post_category` (
`id` bigint(20) UNSIGNED NOT NULL,
`category_name_en` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`category_name_bn` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `post_category`
--
INSERT INTO `post_category` (`id`, `category_name_en`, `category_name_bn`, `created_at`, `updated_at`) VALUES
(1, 'Service', 'সার্ভিস', NULL, NULL),
(2, 'Event', 'ইভেন্ট', NULL, NULL),
(3, 'Coupon', 'কুপন', NULL, NULL),
(4, 'Discount Offer !!', 'মূল্য ছাড় !!', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `products`
--
CREATE TABLE `products` (
`id` bigint(20) UNSIGNED NOT NULL,
`category_id` int(11) NOT NULL,
`subcategory_id` int(11) DEFAULT NULL,
`brand_id` int(11) DEFAULT NULL,
`product_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`product_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`product_quantity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`product_details` text COLLATE utf8mb4_unicode_ci NOT NULL,
`product_color` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`product_size` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`selling_price` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`discount_price` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`video_link` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`main_slider` int(11) DEFAULT NULL,
`hot_deal` int(11) DEFAULT NULL,
`best_rated` int(11) DEFAULT NULL,
`mid_slider` int(11) DEFAULT NULL,
`hot_new` int(11) DEFAULT NULL,
`buyone_getone` int(11) DEFAULT NULL,
`trend` int(11) DEFAULT NULL,
`image_one` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image_two` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image_three` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` int(11) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `products`
--
INSERT INTO `products` (`id`, `category_id`, `subcategory_id`, `brand_id`, `product_name`, `product_code`, `product_quantity`, `product_details`, `product_color`, `product_size`, `selling_price`, `discount_price`, `video_link`, `main_slider`, `hot_deal`, `best_rated`, `mid_slider`, `hot_new`, `buyone_getone`, `trend`, `image_one`, `image_two`, `image_three`, `status`, `created_at`, `updated_at`) VALUES
(1, 1, 7, 9, 'Hand Watch', 'w-154', '29', 'GPS Over 30% larger display Electrical and optical heart sensors ECG app Digital Crown with haptic feedback 50% louder speaker S4 SiP with faster ...<br>Images may be subject to copyright.', 'black,blue', '40mm,35mm', '50', NULL, 'www.facebook.com', NULL, 1, 1, NULL, 1, 1, 1, 'public/media/product/1.6597895606799E+15.jpg', 'public/media/product/1.659711557189E+15.jpg', 'public/media/product/1.6597115576776E+15.jpg', 1, NULL, NULL),
(2, 2, 4, 15, 'Ladies Shoe', 'ws-43', '43', '<p>\r\n Show your flirty side with this pretty little ruffle ballet flat. The Charlene features a faux suede upper with layers of ruffles on the rounded toe, ...<br>* Check website for latest pricing and availability. Images may be subject to copyright. Learn More<br>Related images<br><br></p>', 'black,red', 'sm', '30', '25', 'www.youtube.com', NULL, 1, 1, NULL, NULL, 1, 1, 'public/media/product/1.6597773321166E+15.jpg', 'public/media/product/1.6597772370071E+15.jpg', 'public/media/product/1.6597773835914E+15.jpg', 1, NULL, NULL),
(3, 1, 3, 20, 'Men\'s Shoe', 'MS-78', '41', '<p>\r\n Show your flirty side with this pretty little ruffle ballet flat. The Charlene features a faux suede upper with layers of ruffles on the rounded toe</p><p>m34 - Medium</p><p>l-36 - Long<br></p>', 'white,blue-white', 'm34,l-36', '34', NULL, 'www.mensshow/youtube.com', NULL, 1, NULL, NULL, 1, NULL, 1, 'public/media/product/1.6597138179016E+15.jpg', 'public/media/product/1.6597138184252E+15.jpg', 'public/media/product/1570984353-structure22-1570984337.jpg1582826442.jpg', 1, NULL, NULL),
(4, 2, 1, 1, 'Ladies Bag', 'LB-12', '43', '<p>\r\n This Laundry Bag is made by the women in Bangladesh. These highly entrepreneurial women are trying to be economically empowered.</p><p>Check website for latest pricing and availability. Images may be subject to copyright. Learn More<br>Related images<br></p>', 'black,red,purple', 'm12,xl-11', '28', NULL, 'www.bagReview/video/youtube.com', NULL, 1, 1, NULL, NULL, NULL, 1, 'public/media/product/1.6597143356703E+15.jpeg', 'public/media/product/1.6597143359903E+15.jpg', 'public/media/product/1582826935.png', 1, NULL, NULL),
(5, 9, 12, 11, 'Men\'s stylish watch', 'w-932', '32', '<p>\r\n </p><ul><li>Round watch featuring unidirectional bezel and blue dial with date window at 4 o’clock and luminous hands/hour markers</li><li>Eco-Drive technology is fueled by light and never needs a battery</li><li>48 mm stainless steel case with mineral dial window</li><li>Japanese quartz movement with analog display</li><li>Molded polyurethane band with buckle closure</li><li>Water resistant: WR200/20Bar/666ft [Swimming, Showering & Snorkeling]</li><li>Blue Polyurethane Strap</li><li>Strap Buckle</li><li>Anti-Reflective Mineral Crystal</li><li>Japanese Quartz</li><li>Features: ISO Compliant Diver, Aluminum Ring on Bezel, One-Way \r\nRotating Elapsed-Time Bezel, Screw-Back Case and Screw Down Crown. \r\nAnti-Reflective Crystal</li><li>One-Way Rotating Bezel</li><li>Case Size: 48mm</li><li>Screw-Back Case & Screw-Down</li><li>Blue Dial</li><li>Water Resistant: 200M</li><li>Manufacturer’s Five Year Limited Warranty</li><li>Style #: BN0151-09L</li></ul><p><br></p>', 'Black, Brown', 'Medium,Big', '35', '30', 'https://www.bagdoom.com/men/watches/citizen-men-s-eco-drive-promaster-diver.html', NULL, 1, 1, 1, NULL, 1, NULL, 'public/media/product/1.6598962864853E+15.png', 'public/media/product/1.6598876769862E+15.png', 'public/media/product/1.6598876773618E+15.png', 1, NULL, NULL),
(6, 11, 15, 8, 'Samsung Galaxy S9', 'samsung-102', '19', '<p><br></p><ul><li>Round watch featuring unidirectional bezel and blue dial with date window at 4 o’clock and luminous hands/hour markers</li><li>Eco-Drive technology is fueled by light and never needs a battery</li><li>48 mm stainless steel case with mineral dial window</li><li>Japanese quartz movement with analog display</li><li>Molded polyurethane band with buckle closure</li><li>Water resistant: WR200/20Bar/666ft [Swimming, Showering & Snorkeling]</li><li>Blue Polyurethane Strap</li><li>Strap Buckle</li><li>Anti-Reflective Mineral Crystal</li><li>Japanese Quartz</li><li>Features: ISO Compliant Diver, Aluminum Ring on Bezel, One-Way \r\nRotating Elapsed-Time Bezel, Screw-Back Case and Screw Down Crown. \r\nAnti-Reflective Crystal</li><li>One-Way Rotating Bezel</li><li>Case Size: 48mm</li><li>Screw-Back Case & Screw-Down</li><li>Blue Dial</li><li>Water Resistant: 200M</li><li>Manufacturer’s Five Year Limited Warranty</li><li>Style #: BN0151-09L</li></ul><p>\r\n </p>', 'Navyblue,Black', '6 inch,6.3inch', '599', '400', 'www.youtube.com', NULL, NULL, 1, NULL, 1, NULL, NULL, 'public/media/product/1.6598995360244E+15.jpg', 'public/media/product/1.6598981210615E+15.png', 'public/media/product/1.6598981213151E+15.png', 1, NULL, NULL),
(7, 11, 15, 18, 'Xiaomi Redmi Note 7S', 'Xiaomi-111', '37', '<p>\r\n </p><ul><li>Water resistant: WR200/20Bar/666ft [Swimming, Showering & Snorkeling]</li><li>Blue Polyurethane Strap</li><li>Strap Buckle</li><li>Anti-Reflective Mineral Crystal</li><li>Japanese Quartz</li><li>Features: ISO Compliant Diver, Aluminum Ring on Bezel, One-Way \r\nRotating Elapsed-Time Bezel, Screw-Back Case and Screw Down Crown. \r\nAnti-Reflective Crystal</li><li>One-Way Rotating Bezel</li><li>Case Size: 48mm</li><li>Screw-Back Case & Screw-Down</li><li>Blue Dial</li><li>Water Resistant: 200M</li><li>Manufacturer’s Five Year Limited Warranty</li><li>Style #: BN0151-09L</li></ul><p><br></p>', 'Red,Blue', 'mediul,small', '555', NULL, 'www.xiaomiReview/video/youtube.com', NULL, 1, 1, 1, 1, 1, NULL, 'public/media/product/1.6598985152504E+15.jpg', 'public/media/product/1.659898515482E+15.jpg', 'public/media/product/1.659898515657E+15.jpg', 1, NULL, NULL),
(8, 11, 15, 10, 'Huawei Mate 20 Pro', 'Huawei-21x', '5', '<p>\r\n </p><ul><li>Round watch featuring unidirectional bezel and blue dial with date window at 4 o’clock and luminous hands/hour markers</li><li>One-Way Rotating Bezel</li><li>Case Size: 48mm</li><li>Screw-Back Case & Screw-Down</li><li>Blue Dial</li><li>Water Resistant: 200M</li><li>Manufacturer’s Five Year Limited Warranty</li><li>Style #: BN0151-09L</li></ul><p><br></p>', 'blue,black', 'long', '444', NULL, 'www.youtube.com', NULL, NULL, 1, NULL, NULL, NULL, 1, 'public/media/product/1.6598986487543E+15.jpg', 'public/media/product/1.6598986489413E+15.jpg', 'public/media/product/1.6598986490313E+15.jpg', 1, NULL, NULL),
(9, 11, 15, 23, 'iPhone Xr', 'iPhone-1xx', '20', '<p>\r\n </p><ul><li>Round watch featuring unidirectional bezel and blue dial with date window at 4 o’clock and luminous hands/hour markers</li><li>Eco-Drive technology is fueled by light and never needs a battery</li><li>48 mm stainless steel case with mineral dial window</li><li>Japanese quartz movement with analog display</li><li>Molded polyurethane band with buckle closure</li><li>Water resistant: WR200/20Bar/666ft [Swimming, Showering & Snorkeling]</li><li>Blue Polyurethane Strap</li><li>Strap Buckle</li><li>Anti-Reflective Mineral Crystal</li><li>Japanese Quartz</li><li>Features: ISO Compliant Diver, Aluminum Ring on Bezel, One-Way \r\nRotating Elapsed-Time Bezel, Screw-Back Case and Screw Down Crown. \r\nAnti-Reflective Crystal</li><li>One-Way Rotating Bezel</li><li>Case Size: 48mm</li></ul>', 'red,gray', '7.2inch', '599', '444', 'www.iphone/youtube.com', 1, NULL, NULL, NULL, NULL, 1, NULL, 'public/media/product/1.6598988130225E+15.png', 'public/media/product/1.6598988133411E+15.png', 'public/media/product/1.6598988135311E+15.png', 1, NULL, NULL),
(10, 1, 8, 15, 'T-Shirt', 'Ts-232', '79', '<p>\r\n </p><ul><li>Blue Polyurethane Strap</li><li>Strap Buckle</li><li>Anti-Reflective Mineral Crystal</li><li>Japanese Quartz</li><li>Features: ISO Compliant Diver, Aluminum Ring on Bezel, One-Way \r\nRotating Elapsed-Time Bezel, Screw-Back Case and Screw Down Crown. \r\nAnti-</li><li>Blue Dial</li><li>Water Resistant: 200M</li><li>Manufacturer’s Five Year Limited Warranty</li><li>Style #: BN0151-09L</li></ul><p><br></p>', 'black', 'xl,L', '45', '33', NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, 'public/media/product/1.6598989452824E+15.jpg', 'public/media/product/1.659898945486E+15.jpg', 'public/media/product/1.659898945631E+15.jpg', 1, NULL, NULL),
(11, 1, 8, 21, 'Men\'s Slive T-shirt', 'MS-46', '75', '<p>\r\n </p><ul><li>Japanese Quartz</li><li>Features: ISO Compliant Diver, Aluminum Ring on Bezel, One-Way \r\nRotating Elapsed-Time Bezel, Screw-Back Case and Screw Down Crown. \r\nAnti-Reflective Crystal</li><li>One-Way Rotating Bezel</li><li>Case Size: 48mm</li><li>Screw-Back Case & Screw-Down</li><li>Blue Dial</li><li>Water Resistant: 200M</li><li>Manufacturer’s Five Year Limited Warranty</li><li>Style #: BN0151-09L</li></ul><p><br></p>', 'gray', 'long,xxl', '39', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 'public/media/product/1.6598990707698E+15.jpg', 'public/media/product/1.6598990709198E+15.jpg', 'public/media/product/1.6598990710198E+15.jpg', 1, NULL, NULL),
(12, 9, 12, 11, 'Men\'s Black Watch', 'Mw-23', '41', '<p>\r\n </p><ul><li>Japanese quartz movement with analog display</li><li>Molded polyurethane band with buckle closure</li><li>Water resistant: WR200/20Bar/666ft [Swimming, Showering & Snorkeling]</li><li>Blue Polyurethane Strap</li><li>Strap Buckle</li><li>Anti-Reflective Mineral Crystal</li><li>Japanese Quartz</li><li>Features: ISO Compliant Diver, Aluminum Ring on Bezel, One-Way \r\nRotating Elapsed-Time Bezel, Screw-Back Case and Screw Down Crown. \r\nAnti-Reflective Crystal</li><li>One-Way Rotating Bezel</li><li>Case Size: 48mm</li><li>Screw-Back Case & Screw-Down</li><li>Blue Dial</li><li>Water Resistant: 200M</li><li>Manufacturer’s Five Year Limited Warranty</li><li>Style #: BN0151-09L</li></ul><p><br></p>', 'gray', 'medium', '22', NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 'public/media/product/1.6598991713802E+15.png', 'public/media/product/1.6598991716752E+15.png', 'public/media/product/1.6598991719388E+15.png', 1, NULL, NULL),
(13, 11, 16, 12, 'Lenovo Ideapad', 'L-432', '24', '<p>\r\n </p><ul><li>Round watch featuring unidirectional bezel and blue dial with date window at 4 o’clock and luminous hands/hour markers</li><li>Eco-Drive technology is fueled by light and never needs a battery</li><li>Water resistant: WR200/20Bar/666ft [Swimming, Showering & Snorkeling]</li><li>Blue Polyurethane Strap</li><li>Strap Buckle</li><li>Anti-Reflective Mineral Crystal</li><li>Japanese Quartz</li><li>Features: ISO Compliant Diver, Aluminum Ring on Bezel, One-Way \r\nRotating Elapsed-Time Bezel, Screw-Back Case and Screw Down Crown. \r\nAnti-Reflective Crystal</li><li>One-Way Rotating Bezel</li><li>Case Size: 48mm</li><li>Screw-Back Case & Screw-Down</li><li>Blue Dial</li><li>Water Resistant: 200M</li><li>Manufacturer’s Five Year Limited Warranty</li><li>Style #: BN0151-09L</li></ul><p><br></p>', 'white', '17inch,16inch', '555', '500', NULL, NULL, 1, 1, 1, NULL, 1, 1, 'public/media/product/1.6600861513599E+15.png', 'public/media/product/1.6598993014739E+15.png', 'public/media/product/1.6598993016839E+15.png', 1, NULL, NULL),
(14, 9, 12, 11, 'Rado Watch', 'w-4t543', '66', '<p> New Trending Mens Watch</p><p>Water Resistant</p><p>Smart Multiple Color</p><p>Leather Belt</p><p>Long lasting battery.</p><p><br></p><p>\r\n </p>', 'black,blue,navyblue,gray', 'Small,Medium,ex-small,long', '100', '50', 'www.mensWatch/youtube.com', NULL, NULL, NULL, NULL, 1, 1, 1, 'public/media/product/1660490409866451.png', 'public/media/product/1660490410596845.png', 'public/media/product/1660490410665121.png', 1, NULL, NULL),
(15, 11, 16, 16, 'Dell Laptop', 'd-344', '5', 'New Laptop with modern configuration', 'black,white', 'l,m-3', '600', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'public/media/product/1660491067015005.png', 'public/media/product/1660491067079207.png', 'public/media/product/1660491067100092.png', 1, NULL, NULL),
(16, 11, 18, 18, 'Headphone', 'H-221', '4', 'M-3 supuer sound headphone', 'gray', 'l,m', '27', NULL, 'www.headphone/youtube.com', NULL, NULL, 1, NULL, NULL, NULL, 1, 'public/media/product/1660494330568168.png', 'public/media/product/1660494330597116.png', 'public/media/product/1660494330628758.png', 1, NULL, NULL),
(17, 11, 15, 23, 'I Phone 11', 'h-211', '18', 'I phone 11, with suprerb resoulation', 'white', 'm', '300', NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, 1, 'public/media/product/1660494454264949.png', 'public/media/product/1660494454313493.png', 'public/media/product/1660494454334294.png', 1, NULL, NULL),
(18, 11, 16, 3, 'HP Notebook', 'HP-223', '4', 'Super HP Laptop', 'black', NULL, '220', '200', NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 'public/media/product/1660494571380616.png', 'public/media/product/1660494571411729.png', 'public/media/product/1660494571489900.png', 1, NULL, NULL),
(19, 11, 16, 23, 'Mac Book', 'MB-32', '23', '<p> New stylish Mac book,Heavy configuration with superb graphics, </p><p>Easy to carry,</p><p>Smart looking Metlic Body,</p><p>Long lasting power supply</p><p> </p>', 'White,Gray,Light-white', 'medium,large,small,ex-sm', '787', NULL, 'www.applePc/youtube.com', NULL, 1, 1, NULL, 1, NULL, 1, 'public/media/product/1660505788123947.jpg', 'public/media/product/1660635793618601.jpeg', 'public/media/product/1660505788379607.jpg', 1, NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `seo`
--
CREATE TABLE `seo` (
`id` bigint(20) UNSIGNED NOT NULL,
`meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_author` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_tag` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`google_analytics` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`bing_analytics` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `seo`
--
INSERT INTO `seo` (`id`, `meta_title`, `meta_author`, `meta_tag`, `meta_description`, `google_analytics`, `bing_analytics`, `created_at`, `updated_at`) VALUES
(1, 'Ecommerce with Laravel', 'Learn Hunter', 'Ecommerce,Online Store', 'Here it is the complete project of Ecommerce site,Which is build with Laravel framework.', 'gl6p5g434f73h6', '3yg568gvw36', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `settings`
--
CREATE TABLE `settings` (
`id` bigint(20) UNSIGNED NOT NULL,
`vat` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`shipping_charge` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`shopname` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`logo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `settings`
--
INSERT INTO `settings` (`id`, `vat`, `shipping_charge`, `shopname`, `email`, `phone`, `address`, `logo`, `created_at`, `updated_at`) VALUES
(1, '3', '7', 'Echovel', '[email protected]', '018xxxxxxxx', 'Kadalpur,Raozan,Chittagong.', NULL, NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `shipping`
--
CREATE TABLE `shipping` (
`id` bigint(20) UNSIGNED NOT NULL,
`order_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`ship_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`ship_phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`ship_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`ship_address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`ship_city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `shipping`
--
INSERT INTO `shipping` (`id`, `order_id`, `ship_name`, `ship_phone`, `ship_email`, `ship_address`, `ship_city`, `created_at`, `updated_at`) VALUES
(1, '1', 'shahed', '22333455325', '[email protected]', 'chittagong', 'Town', NULL, NULL),
(2, '2', 'shahed chy', '01826262626', '[email protected]', 'Chittagong,102.A.D', 'Chittagong', NULL, NULL),
(3, '3', 'Adam Gilchrist', '8975934254', '[email protected]', 'street 23,B.D, Australia', 'Cikago', NULL, NULL),
(4, '4', 'Eden Hazard', '438958934583', '[email protected]', 'Real Madrid,Span', 'Barnabu', NULL, NULL),
(5, '5', 'Ricardo Kaka', '4637272323', '[email protected]', 'Braselia, Brazil', 'Reo di zeniro', NULL, NULL),
(6, '6', 'Mesut Ozil', '45635768658', '[email protected]', 'Kairo,Egypt', 'Kairo', NULL, NULL),
(7, '7', 'Salah', '656587346', '[email protected]', 'Liverpool,England', 'Anfield', NULL, NULL),
(8, '8', 'Sadio Mane', '00345944366', '[email protected]', 'Liverpool,England', 'Anfield', NULL, NULL),
(9, '9', 'Kane Williamson', '7239853456', '[email protected]', 'Newzilland', 'Nw,45 N A', NULL, NULL),
(10, '10', 'Koutinho', '34563465435', '[email protected]', 'Bayarn Meunich,Germany', 'Meunich', NULL, NULL),
(11, '11', 'Nazim', '46346346', '[email protected]', 'raozan', 'Chittagong', NULL, NULL),
(12, '12', 'Arman', '34656363', '[email protected]', 'Muradpur', 'Chittagong', NULL, NULL),
(13, '13', 'Irfan Chowdhury', '7568567474', '[email protected]', 'Muradpur', 'Chattogram', NULL, NULL),
(14, '15', 'Hashim Amla', '645763446536', '[email protected]', 'South Africa', 'Zohans Barg', NULL, NULL),
(15, '16', 'Istiaque', '663636363', '[email protected]', 'Bahaddarhat', 'Chittagong', NULL, NULL),
(16, '17', 'Hasim Amla', '463665476574', '[email protected]', 'Johansberg', 'South Africa', NULL, NULL),
(17, '18', 'shahed', '22333455325', '[email protected]', 'Muradpur', 'Barnabu', NULL, NULL),
(18, '19', 'Sazzad Hossen', '01733455325', '[email protected]', 'Modina Tower, 8 no road, Prosanti Abasik', 'Chittagong', NULL, NULL),
(19, '20', 'Sakil Ahmed', '01874532626', '[email protected]', 'Modina Tower, 8 no road, Prosanti Abasik', 'Chittagong', NULL, NULL),
(20, '22', 'Shahed', '01833333333', '[email protected]', 'Raozan, Chittagong', 'Chittagong', NULL, NULL),
(21, '21', 'Shahed', '01833333333', '[email protected]', 'Raozan, Chittagong', 'Chittagong', NULL, NULL),
(22, '24', 'shahed sujan', '01037456325', '[email protected]', 'Raozan', 'Chattogram', NULL, NULL),
(23, '26', 'Sakil Ahmed', '01874532626', '[email protected]', 'Modina Tower, 8 no road, Prosanti Abasik', 'Chittagong', NULL, NULL),
(24, '27', 'Arman Shop', '0181111111', '[email protected]', 'Muradpur, Chattogram', 'Chittagong', NULL, NULL),
(25, '28', 'Irfan Karim', '01733499925', '[email protected]', 'Chawk Bazar, Chattogram', 'ctg', NULL, NULL),
(26, '29', 'Kamrul Hasan', '+8801833455325', '[email protected]', '8 no road, Onnanna Abasikh', 'ctg', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `sitesetting`
--
CREATE TABLE `sitesetting` (
`id` bigint(20) UNSIGNED NOT NULL,
`phone_one` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`phone_two` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`company_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`company_address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`facebook` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`youtube` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`instagram` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`twitter` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `sitesetting`
--
INSERT INTO `sitesetting` (`id`, `phone_one`, `phone_two`, `email`, `company_name`, `company_address`, `facebook`, `youtube`, `instagram`, `twitter`, `created_at`, `updated_at`) VALUES
(1, '01821212121', '01723232323', '[email protected]', 'OneTech', 'Raozan,Chittagong,Bangladesh', 'www.facebook.com/onetech', 'www.youtube.com/onetech', 'www.instagram.com/onetech', 'www.twitter.com/onetech', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `subcategories`
--
CREATE TABLE `subcategories` (
`id` bigint(20) UNSIGNED NOT NULL,
`category_id` int(11) NOT NULL,
`subcategory_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `subcategories`
--
INSERT INTO `subcategories` (`id`, `category_id`, `subcategory_name`, `created_at`, `updated_at`) VALUES
(1, 2, 'Hijab & Scraf', NULL, NULL),
(2, 1, 'Panjabi & Pajama', NULL, NULL),
(3, 1, 'Shoe', NULL, NULL),
(4, 2, 'Shoe', NULL, NULL),
(5, 8, 'Baby Shoe', NULL, NULL),
(7, 1, 'Pants', NULL, NULL),
(8, 1, 'Shirt', NULL, NULL),
(9, 11, 'Refregerator', NULL, NULL),
(10, 2, 'Three Piece', NULL, NULL),
(11, 2, 'Kurtis', NULL, NULL),
(12, 9, 'Men\'s Watch', NULL, NULL),
(13, 9, 'Women\'s Watch', NULL, NULL),
(14, 9, 'Child Watch', NULL, NULL),
(15, 11, 'Mobile & Tablet', NULL, NULL),
(16, 11, 'Laptop', NULL, NULL),
(17, 11, 'Desktop', NULL, NULL),
(18, 11, 'Camera', NULL, NULL),
(19, 11, 'Television', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `subscribers`
--
CREATE TABLE `subscribers` (
`id` bigint(20) UNSIGNED NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`avatar` varchar(240) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`provider` varchar(198) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`provider_id` varchar(189) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `avatar`, `provider`, `provider_id`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `phone`) VALUES
(1, 'user', '[email protected]', NULL, NULL, NULL, NULL, '$2y$10$6z7VivOYjAXZ5vRcdtKxEekycMe4LuXQKqIhOlqbr95iuP0Z2DIla', NULL, '2020-03-04 10:34:36', '2020-03-04 10:34:36', '0181111112'),
(2, 'shahed', '[email protected]', NULL, NULL, NULL, '2020-03-04 13:10:23', '$2y$10$2HleI46qnKS9Xje5XiHUq.zpsqqED8ZMoAxKl6nUnMuxLT/owc1z6', NULL, '2020-03-04 13:04:16', '2020-03-04 15:32:57', '22333455325'),
(5, 'Suzan', '[email protected]', NULL, NULL, NULL, '2020-04-03 13:35:10', '$2y$10$/LFHRS1WDQrR60s61HQo6upFQUeRL.Rf0Tfb7xdFpKreYAwC9GBLC', NULL, '2020-04-03 13:33:41', '2020-04-03 13:35:10', '018222222888'),
(9, 'Sakil Ahmed', '[email protected]', NULL, NULL, NULL, NULL, '$2y$10$xXKHiUvj1gXU52KvYPcRmedtNNLQ8NZwn0BPDnLxsOXwLb3JzzHVW', NULL, '2020-07-13 07:51:50', '2020-07-13 07:51:50', '01874532626');
-- --------------------------------------------------------
--
-- Table structure for table `wishlists`
--
CREATE TABLE `wishlists` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wishlists`
--
INSERT INTO `wishlists` (`id`, `user_id`, `product_id`, `created_at`, `updated_at`) VALUES
(1, 1, 13, NULL, NULL),
(2, 1, 6, NULL, NULL),
(5, 1, 1, NULL, NULL),
(23, 4, 15, NULL, NULL),
(24, 2, 19, NULL, NULL),
(25, 2, 17, NULL, NULL),
(26, 2, 15, NULL, NULL),
(29, 1, 5, NULL, NULL),
(31, 2, 7, NULL, NULL),
(34, 1, 14, NULL, NULL);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `admins`
--
ALTER TABLE `admins`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `admins_email_unique` (`email`);
--
-- Indexes for table `brands`
--
ALTER TABLE `brands`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `categories`
--
ALTER TABLE `categories`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `coupons`
--
ALTER TABLE `coupons`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `newsletters`
--
ALTER TABLE `newsletters`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `oauth_access_tokens`
--
ALTER TABLE `oauth_access_tokens`
ADD PRIMARY KEY (`id`),
ADD KEY `oauth_access_tokens_user_id_index` (`user_id`);
--
-- Indexes for table `oauth_auth_codes`
--
ALTER TABLE `oauth_auth_codes`
ADD PRIMARY KEY (`id`),
ADD KEY `oauth_auth_codes_user_id_index` (`user_id`);
--
-- Indexes for table `oauth_clients`
--
ALTER TABLE `oauth_clients`
ADD PRIMARY KEY (`id`),
ADD KEY `oauth_clients_user_id_index` (`user_id`);
--
-- Indexes for table `oauth_personal_access_clients`
--
ALTER TABLE `oauth_personal_access_clients`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `oauth_refresh_tokens`
--
ALTER TABLE `oauth_refresh_tokens`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `orders`
--
ALTER TABLE `orders`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `order_details`
--
ALTER TABLE `order_details`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indexes for table `posts`
--
ALTER TABLE `posts`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `post_category`
--
ALTER TABLE `post_category`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `products`
--
ALTER TABLE `products`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `seo`
--
ALTER TABLE `seo`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `settings`
--
ALTER TABLE `settings`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `shipping`
--
ALTER TABLE `shipping`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `sitesetting`
--
ALTER TABLE `sitesetting`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `subcategories`
--
ALTER TABLE `subcategories`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `subscribers`
--
ALTER TABLE `subscribers`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- Indexes for table `wishlists`
--
ALTER TABLE `wishlists`
ADD PRIMARY KEY (`id`);
--