-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews-category.html
682 lines (676 loc) · 49.5 KB
/
news-category.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="text/html; charset=utf-8" http-equiv=Content-Type>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./css/style.css" />
<link rel="icon" type="image/x-icon" href="images/favicon.png">
<title>NewsLink | Best Urdu News Website</title>
</head>
<body class="border-t border-t-gray-400">
<header class="bg-[#352073] pl-4 pr-0 lg:px-8 xl:pr-[82px] xl:pl-[130px]">
<!--header Starts here-->
<div class="max-w-[1365px] mx-auto flex justify-between text-base text-white items-center">
<div class="dropdown inline-block">
<div class="lg:hidden" onclick="mobMenu()">☰</div>
<div id="mobMenu" class="dropdown-content absolute z-20 bg-[#352073] tracking-tighter leading-10 pl-4 py-2 mt-4 max-w-full w-full border-t-2 border-t-[#fbb900]">
<a href="./news-category.html" class="hover:text-gray-400">صفحۂ اول</a>
<a href="./news-category.html" class="hover:text-gray-400">تازہ ترین خبریں</a>
<a href="./news-category.html" class="hover:text-gray-400">پاکستان</a>
<a href="./news-category.html" class="hover:text-gray-400">بین الاقوامی</a>
<a href="./news-category.html" class="hover:text-gray-400">کھیل</a>
<a href="./news-category.html" class="hover:text-gray-400">تفریح</a>
<a href="./news-category.html" class="hover:text-gray-400">کاروبار</a>
<a href="./news-category.html" class="hover:text-gray-400">سائنس/صحت</a>
<a href="./news-category.html" class="hover:text-gray-400">جرائم</a>
<a href="./news-category.html" class="hover:text-gray-400">ویڈیوز</a>
<a href="./news-category.html" class="hover:text-gray-400">آرٹیکلز</a>
<a href="./news-category.html" class="hover:text-gray-400">کالمز</a>
<a href="./news-category.html" class="hover:text-gray-400">مزید</a>
</div>
</div>
<a href="./news-category.html" class="hidden lg:block hover:text-gray-400 tracking-tighter">مزید</a>
<a href="./news-category.html" class="hidden lg:block hover:text-gray-400 tracking-tighter">کالمز</a>
<a href="./news-category.html" class="hidden lg:block hover:text-gray-400 tracking-tighter">آرٹیکلز</a>
<a href="./news-category.html" class="hidden lg:block hover:text-gray-400 tracking-tighter">ویڈیوز</a>
<a href="./news-category.html" class="hidden lg:block hover:text-gray-400 tracking-tighter">جرائم</a>
<a href="./news-category.html" class="hidden lg:block hover:text-gray-400 tracking-tighter">سائنس/صحت</a>
<a href="./news-category.html" class="hidden lg:block hover:text-gray-400 tracking-tighter">کاروبار</a>
<a href="./news-category.html" class="hidden lg:block hover:text-gray-400 tracking-tighter">تفریح</a>
<a href="./news-category.html" class="hidden lg:block hover:text-gray-400 tracking-tighter">کھیل</a>
<a href="./news-category.html" class="hidden lg:block hover:text-gray-400 tracking-tighter">بین الاقوامی</a>
<a href="./news-category.html" class="hidden lg:block hover:text-gray-400 tracking-tighter">پاکستان</a>
<a href="./news-category.html" class="hidden lg:block hover:text-gray-400 tracking-tighter">تازہ ترین خبریں</a>
<a href="./news-category.html" class="hidden lg:block hover:text-gray-400 tracking-tighter">صفحۂ اول</a>
<div class="flex flex-row-reverse items-center">
<a href="./">
<img src="images/news_link_logo.png" alt="news_link_logo" class="w-[134px] h-[55px]" />
</a>
<form action="javascript:void(0)" class="mr-[33px] pb-2">
<input type="search" placeholder="" name="search" class="w-2 sm:w-20 bg-[#352073]" />
<button type="submit" class="text-[27px] hover:text-gray-400">
<i class="fa fa-search"></i>
</button>
</form>
</div>
</div>
<!--header ends here-->
</header>
<div class="md:flex flex-row-reverse max-w-[1365px] mx-auto justify-between">
<div class="text-right max-w-[1024px] w-full pt-8 md:pt-[40px] md:pb-5 px-4 bg-gray-50 border-l border-l-gray-300">
<!--right side starts here-->
<div class="border-b-[48px] border-b-[#fbb900] border-l-[40px] border-l-transparent w-24 h-0 relative ml-auto">
<div class="absolute text-xl top-[7px]">کاروبار</div>
</div>
<hr class="border border-[#fbb900] bg-[#fbb900] mb-4" />
<div class="md:grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-y-5 bg-lightgray">
<div class="lg:px-4">
<div class="border border-gray-300 bg-[#f9fafb]">
<img src="images/im3.jpg" alt="dollar" class="mt-1 h-[230px] w-full" />
<div class="flex flex-col justify-between h-48 lg:h-56 px-3 pt-4 pb-8">
<a href="./news-detail.html" class="text-lg hover:text-[#075985] tracking-tight">ای سی سی نے 2 ارب روپے کے رمضان ریلیف پیکج کی منظوری دے دی</a>
<a href="javascript:void(0)">
<div class="flex flex-row-reverse text-xs text-[#fbb900]">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">5</span>
</div>
<div> گھنٹے پہلے</div>
</div>
</a>
<p class="text-xs">
<a href="javascript:void(0)" class="hover:text-[#075985]">جن اشیائے خور و نوش پر سبسڈی دی گئی ہے ان میں آٹا، گھی، خوردنی تیل، دال چنا، سفید چنے، بیسن،
کھجور، چاول، چینی، چائے،
مصالحہ جات، دودھ اور مشروبات سمیت 19</a>
<a href="./news-detail.html" class="text-[#2196F4]">مزید پڑہیں</a>
</p>
</div>
</div>
</div>
<div class="lg:px-4">
<div class="border border-lightgray relative">
<span class="absolute z-10 right-0 py-[3px] px-[14px] bg-black text-white font-sans font-semibold">Jang</span>
<img src="images/im2.jpg" alt="dollar" class="mt-1 h-[230px] w-full"/>
<div class="flex flex-col justify-between h-48 lg:h-56 px-3 pt-4 pb-8">
<a href="./news-detail.html" class="text-lg hover:text-[#075985] tracking-tight">یواے ای سے 1 ارب ڈالرز کی دوسری قسط آگئی</a>
<a href="javascript:void(0)" class="">
<div class="flex flex-row-reverse text-xs text-[#fbb900]">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
6
</span>
</div>
<div> گھنٹے پہلے</div>
</div>
</a>
<p class="text-xs">
<a href="javascript:void(0)" class="hover:text-[#075985]">متحدہ عرب امارات (یو اے ای) سے ایک ارب ڈالرز قرض کی دوسری قسط موصول ہوگئی۔ ابوظہبی سے ایک ارب ڈالرز ملنے کے بعد پاکستان
کے زرمبادلہ کے ذخائر 15 ارب 96</a>
<a href="./news-detail.html" class="text-[#2196F4]">
مزید پڑہیں
</a>
</p>
</div>
</div>
</div>
<div class="lg:px-4">
<div class="border border-lightgray">
<img src="images/im1.jpg" alt="dollar" class="mt-1 h-[230px] w-full" />
<div class="flex flex-col justify-between h-48 lg:h-56 px-3 pt-4 pb-8">
<a href="./news-detail.html" class="text-lg hover:text-[#075985] tracking-tight">متحد عرب امارات سے پاکستان کو ایک ارب ڈالر کے ڈپازٹ موصول</a>
<a href="javascript:void(0)" class="">
<div class="flex flex-row-reverse text-xs text-[#fbb900]">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
6
</span>
</div>
<div> گھنٹے پہلے</div>
</div>
</a>
<p class="text-xs">
<a href="javascript:void(0)" class="hover:text-[#075985]">اسلام آباد: (دنیا نیوز) متحدہ عرب امارات کی طرف سے ایک ارب ڈالر کے ڈپازٹ موصول ہوئے ہیں جن
سے ادائیگیوں
کے
توازن میں
استحکام لانے میں مزید مدد ملے گی جبکہ
</a>
<a href="javascript:void(0)" class=" text-[#2196F4]">
مزید پڑہیں
</a>
</p>
</div>
</div>
</div>
<div class="lg:px-4">
<div class="border border-lightgray relative">
<span class="absolute z-10 right-0 py-[3px] px-[14px] bg-black text-white font-sans font-semibold">Jang</span>
<img src="images/im6.jpg" alt="dollar" class="mt-1 h-[230px] w-full" />
<div class="flex flex-col justify-between h-48 lg:h-56 px-3 pt-4 pb-8">
<a href="./news-detail.html" class="text-lg hover:text-[#075985] tracking-tight">پاکستان، ترکمانستان کا مشترکہ ورکنگ گروپ بنانے کا فیصلہ</a>
<a href="javascript:void(0)" class="">
<div class="flex flex-row-reverse text-xs text-[#fbb900]">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
7
</span>
</div>
<div> گھنٹے پہلے</div>
</div>
</a>
<p class="text-xs">
<a href="javascript:void(0)" class="hover:text-[#075985]">پاکستان اور ترکمانستان نے بجلی کے ترسیلی منصوبے پر مشترکہ ورکنگ گروپ بنانے کا فیصلہ کرلیا ہے۔
ترکمانستان،پاکستان کو
افغانستان کے راستے سستی بجلی فراہم</a>
<a href="./news-detail.html" class="text-[#2196F4]">
مزید پڑہیں
</a>
</p>
</div>
</div>
</div>
<div class="lg:px-4">
<div class="border border-lightgray">
<img src="images/im5.jpg" alt="dollar" class="mt-1 h-[230px] w-full" />
<div class="flex flex-col justify-between h-48 lg:h-56 px-3 pt-4 pb-8">
<a href="./news-detail.html" class="text-lg hover:text-[#075985] tracking-tight">یو اے ای سے پاکستان کو مزید ایک ارب ڈالر موصول ہوگئے</a>
<a href="javascript:void(0)" class="">
<div class="flex flex-row-reverse text-xs text-[#fbb900]">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
7
</span>
</div>
<div> گھنٹے پہلے</div>
</div>
</a>
<p class="text-xs">
<a href="javascript:void(0)" class="hover:text-[#075985]">متحدہ عرب امارات کی جانب سے پاکستان کو 3 ارب ڈالر فراہم کیے جانے ہیں جن میں سے دو ارب ڈالر موصول ہوچکے ہیں جبکہ مزید ایک
ارب ڈالر آئندہ ماہ ملنے کا امکان ہے—</a>
<a href="./news-detail.html" class="text-[#2196F4]">
مزید پڑہیں
</a>
</p>
</div>
</div>
</div>
<div class="lg:px-4">
<div class="border border-lightgray">
<img src="images/im4.jpg" alt="dollar" class="mt-1 h-[230px] w-full" />
<div class="flex flex-col justify-between h-48 lg:h-56 px-3 pt-4 pb-8">
<a href="./news-detail.html" class="text-lg hover:text-[#075985] tracking-tight">بریگزیٹ:لندن فنانشل مارکیٹ سے ایک ہزار ارب یورو نکل جائینگے</a>
<a href="javascript:void(0)" class="">
<div class="flex flex-row-reverse text-xs text-[#fbb900]">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
10
</span>
</div>
<div> گھنٹے پہلے</div>
</div>
</a>
<p class="text-xs">
<a href="javascript:void(0)" class="hover:text-[#075985]">بریگزیٹ کے نتیجے میں لندن کی فنانشل مارکیٹ سے ایک ہزار ارب یورو کا سرمایہ اور 269 کمپنیاں نکل
جائیں گی۔ یہ بات فائنانشل
تھنک ٹینک نیو فنانشل کی تازہ ترین</a>
<a href="./news-detail.html" class="text-[#2196F4]">
مزید پڑہیں
</a>
</p>
</div>
</div>
</div>
<div class="lg:px-4">
<div class="border border-lightgray">
<img src="images/im9.jpg" alt="dollar" class="mt-1 h-[230px] w-full" />
<div class="flex flex-col justify-between h-48 lg:h-56 px-3 pt-4 pb-8">
<a href="./news-detail.html" class="text-lg hover:text-[#075985] tracking-tight">انٹر بینک اور اوپن مارکیٹ میں ڈالر مستحکم</a>
<a href="javascript:void(0)" class="">
<div class="flex flex-row-reverse text-xs text-[#fbb900]">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
10
</span>
</div>
<div> گھنٹے پہلے</div>
</div>
</a>
<p class="text-xs">
<a href="javascript:void(0)" class="hover:text-[#075985]">کراچی: (دنیا نیوز) انٹربینک میں ڈالر 138 روپے 80 پیسے پر بند ہوا جبکہ اوپن مارکیٹ میں ڈالر
139 روپے میں فروخت ہوا۔ دوسری
جانب روپے کی قدر میں کمی، بجلی</a>
<a href="./news-detail.html" class="text-[#2196F4]">
مزید پڑہیں
</a>
</p>
</div>
</div>
</div>
<div class="lg:px-4">
<div class="border border-lightgray">
<img src="images/im8.jpg" alt="dollar" class="mt-1 h-[230px] w-full" />
<div class="flex flex-col justify-between h-48 lg:h-56 px-3 pt-4 pb-8">
<a href="./news-detail.html" class="text-lg hover:text-[#075985] tracking-tight">موٹر سائیکل کے پرکشش نمبروں کی نیلامی، 786 نمبر 19 ہزار میں فروخت ہوا</a>
<a href="javascript:void(0)" class=""><div class="flex flex-row-reverse text-xs text-[#fbb900]">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
14
</span>
</div>
<div> گھنٹے پہلے</div>
</div></a>
<p class="text-xs">
<a href="javascript:void(0)" class="hover:text-[#075985]">لاہور: (دنیا نیوز) موٹر سائیکل کے پرکشش نمبروں کی نئی سیریز ایل ای وائے 19کی نیلامی کی گئی ہے، نمبر ون 45 ہزار اور نمبر
ٹو گیارہ ہزار روپے میں فروخت ہوا۔</a>
<a href="./news-detail.html" class="text-[#2196F4]">
مزید پڑہیں
</a>
</p>
</div>
</div>
</div>
<div class="lg:px-4">
<div class="border border-lightgray">
<img src="images/im7.jpg" alt="dollar" class="mt-1 h-[230px] w-full" />
<div class="flex flex-col justify-between h-48 lg:h-56 px-3 pt-4 pb-8">
<a href="./news-detail.html" class="text-lg hover:text-[#075985] tracking-tight">رواں سال غریب عوام کی جیبوں پر بھاری پڑے گا، اکنامک انٹیلی جنس یونٹ</a>
<a href="javascript:void(0)" class="">
<div class="flex flex-row-reverse text-xs text-[#fbb900]">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
15
</span>
</div>
<div> گھنٹے پہلے</div>
</div>
</a>
<p class="text-xs">
<a href="javascript:void(0)" class="hover:text-[#075985]">کراچی: (دنیا نیوز) عوام کمرکس لیں، اکنامک انٹیلی جنس یونٹ کے مطابق مہنگائی کا طوفان ابھی مزید
طول پکڑے گا اور سال 2019
عوام کی جیبوں پر بھاری پڑے گا.</a>
<a href="./news-detail.html" class="text-[#2196F4]">
مزید پڑہیں
</a>
</p>
</div>
</div>
</div>
<div class="lg:px-4">
<div class="border border-lightgray relative">
<span class="absolute z-10 right-0 py-[3px] px-[14px] bg-black text-white font-sans font-semibold">Jang</span>
<img src="images/im12.jpg" alt="dollar" class="mt-1 h-[230px] w-full" />
<div class="flex flex-col justify-between h-48 lg:h-56 px-3 pt-4 pb-8">
<a href="./news-detail.html" class="text-lg hover:text-[#075985] tracking-tight">پنجاب میں مرغی پال اسکیم مؤخر</a>
<a href="javascript:void(0)" class="">
<div class="flex flex-row-reverse text-xs text-[#fbb900]">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
16
</span>
</div>
<div> گھنٹے پہلے</div>
</div>
</a>
<p class="text-xs">
<a href="javascript:void(0)" class="hover:text-[#075985]">وزیراعظم عمران خان کی ہدایت پر پنجاب میں محکمہ لائیو اسٹاک کی مرغی پال اسکیم آئندہ مالی سال
کے آغاز تک ملتوی کر دی گئی
ہے۔ محکمہ لائیو اسٹاک کے ذرائع کے</a>
<a href="./news-detail.html" class="text-[#2196F4]">
مزید پڑہیں
</a>
</p>
</div>
</div>
</div>
<div class="lg:px-4">
<div class="border border-lightgray">
<img src="images/im11.jpg" alt="dollar" class="mt-1 h-[230px] w-full" />
<div class="flex flex-col justify-between h-48 lg:h-56 px-3 pt-4 pb-8">
<a href="./news-detail.html" class="text-lg hover:text-[#075985] tracking-tight">وزیراعلیٰ پنجاب کا سرکاری ٹھیکوں کیلئے ’ای ٹینڈرنگ‘ سسٹم کا فیصلہ</a>
<a href="javascript:void(0)" class="">
<div class="flex flex-row-reverse text-xs text-[#fbb900]">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
16
</span>
</div>
<div> گھنٹے پہلے</div>
</div>
</a>
<p class="text-xs">
<a href="javascript:void(0)" class="hover:text-[#075985]">وزیر اعلی پنجاب عثمان بزدار—. فوٹو فائل لاہور: حکومت پنجاب نے سرکاری ٹھیکوں میں شفافیت اور بدعنوانی کے خاتمے کے لیے ’ای
ٹینڈرنگ‘ سسٹم متعارف کرنے کا فیصلہ</a>
<a href="./news-detail.html" class="text-[#2196F4]">
مزید پڑہیں
</a>
</p>
</div>
</div>
</div>
<div class="lg:px-4">
<div class="border border-lightgray">
<img src="images/im10.jpg" alt="dollar" class="mt-1 h-[230px] w-full" />
<div class="flex flex-col justify-between h-48 lg:h-56 px-3 pt-4 pb-8">
<a href="./news-detail.html" class="text-lg hover:text-[#075985] tracking-tight">موبائل فون کی درآمد پر ریگولیٹری ڈیوٹی کے 6 سلیب متعارف، اطلاق فوری ہوگا</a>
<a href="javascript:void(0)" class="">
<div class="flex flex-row-reverse text-xs text-[#fbb900]">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
17
</span>
</div>
<div> گھنٹے پہلے</div>
</div>
</a>
<p class="text-xs">
<a href="javascript:void(0)" class="hover:text-[#075985]">اسلام آباد: حکومت نے موبائل فون کی درآمدی مالیت پر 6 مختلف سلیبس میں فلیٹ ریٹس پر ریگولیٹری
ڈیوٹی متعارف کروادی، جس کا
مقصد زیادہ قیمت کے موبائل فون کے</a>
<a href="./news-detail.html" class="text-[#2196F4]">
مزید پڑہیں
</a>
</p>
</div>
</div>
</div>
<div class="lg:px-4">
<div class="border border-lightgray relative">
<span class="absolute z-10 right-0 py-[3px] px-[14px] bg-black text-white font-sans font-semibold">Jang</span>
<img src="images/im14.jpg" alt="dollar" class="mt-1 h-[230px] w-full" />
<div class="flex flex-col justify-between h-48 lg:h-56 px-3 pt-4 pb-8">
<a href="./news-detail.html" class="text-lg hover:text-[#075985] tracking-tight">پاکستان اور ایشیاء پیسفیک کے درمیان مذاکرات کا شیڈول طے</a>
<a href="javascript:void(0)" class="">
<div class="flex flex-row-reverse text-xs text-[#fbb900]">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
1
</span>
</div>
<div> دن پہلے</div>
</div>
</a>
<p class="text-xs">
<a href="javascript:void(0)" class="hover:text-[#075985]">پاکستان اور ایف اے ٹی ایف ایشیاء پیسفیک گروپ کے درمیان مذاکرات کا شیڈول طے پا گیا، مذاکرات 26
سے 28 مارچ کو اسلام آباد
میں ہوں گے۔ گروپ کو مطمئن کرنے کی</a>
<a href="./news-detail.html" class="text-[#2196F4]">
مزید پڑہیں
</a>
</p>
</div>
</div>
</div>
<div class="lg:px-4">
<div class="border border-lightgray relative">
<span class="absolute z-10 right-0 py-[3px] px-[14px] bg-black text-white font-sans font-semibold">Jang</span>
<img src="images/im13.jpg" alt="dollar" class="mt-1 h-[230px] w-full" />
<div class="flex flex-col justify-between h-48 lg:h-56 px-3 pt-4 pb-8">
<a href="./news-detail.html" class="text-lg hover:text-[#075985] tracking-tight">ترمیمی فنانس بل نافذ، صدر کی منظوری کے بعد نوٹیفکیشن جاری</a>
<a href="javascript:void(0)" class="">
<div class="flex flex-row-reverse text-xs text-[#fbb900]">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
1
</span>
</div>
<div> دن پہلے</div>
</div>
</a>
<p class="text-xs">
<a href="javascript:void(0)" class="hover:text-[#075985]">ترمیمی فنانس بل منظور نافذ ہو گیا،صدر مملکت عارف علوی کی منظوری کے بعد ایف بی آر نے نوٹیفکیشن جاری کر دیا، لگژری گاڑیوں
اور اسمارٹ موبائل فونز پر ڈیوٹی کی</a>
<a href="./news-detail.html" class="text-[#2196F4]">
مزید پڑہیں
</a>
</p>
</div>
</div>
</div>
</div>
<!--right side ends here-->
</div>
<div class="flex flex-col md:max-w-[300px] lg:max-w-[340px] w-full pt-24 md:pt-[40px] px-4 mb-4">
<!--left side starts here-->
<div class="mb-24 md:mb-80 lg:mb-[365px]">
<h2 class="text-xl bg-[#fbb900] w-32 text-center pb-4 pt-1 ml-auto">نمایاں خبریں</h2>
<hr class="border border-[#fbb900] bg-[#fbb900] mb-3" />
<div class="flex flex-col justify-end bg-cover bg-no-repeat bg-center h-60" style="background-image: url('images/prominentnews.jpg');">
<div class="bg-black mx-2 mb-3 px-3 py-1 opacity-50">
<h2 class="text-right text-white text-lg">
<a href="javascript:void(0)" class="">چار ٹیموں کی ٹائٹل پر نظریں ، آج زلمی اور گلیڈی ایٹرز مدمقابل</a>
</h2>
<a href="javascript:void(0)">
<div class="flex flex-row-reverse text-xs text-[#fbb900] mt-1">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
41
</span>
</div>
<div> گھنٹے پہلے</div>
</div>
</a>
</div>
</div>
</div>
<div class="mb-24 md:mb-80 lg:mb-[365px]">
<h2 class="text-xl bg-[#fbb900] w-32 text-center pb-4 pt-1 ml-auto">اہم خبریں</h2>
<hr class="border border-[#fbb900] bg-[#fbb900]" />
<div class="flex items-center justify-end mb-2 mt-4 gap-3">
<div>
<h2 class="text-right text-sm">
<a href="./news-detail.html">سرکاری اسکیم کے تحت حج درخواستوں کی قرعہ اندازی آج اسلام آباد میں ہوگی</a>
</h2>
<a href="javascript:void(0)">
<div class="flex flex-row-reverse text-xs text-[#fbb900] mt-1">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
18
</span>
</div>
<div> گھنٹے پہلے</div>
</div>
</a>
</div>
<img src="images/important1.jpg" alt="news1" class="w-20 h-20 rounded-full"/>
</div>
<div class="flex items-center justify-end my-2 gap-3">
<div class="">
<h2 class="text-right text-sm">
<a href="./news-detail.html">شاہ محمود نے یقین دلایا پاکستان تمام دہشتگردوں کیخلاف کارروائیاں کریگا</a>
</h2>
<a href="javascript:void(0)" class="">
<div class="flex flex-row-reverse text-xs text-[#fbb900] mt-1">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
17
</span>
</div>
<div> گھنٹے پہلے</div>
</div>
</a>
</div>
<img src="images/important2.jpg" alt="news1" class="w-20 h-20 rounded-full"/>
</div>
<div class="flex items-center justify-end my-2 gap-3">
<div class="">
<h2 class="text-right text-sm">
<a href="./news-detail.html">جنگی جنون: بھارت اسلحے کا دوسرا بڑا خریدار بن گیا</a>
</h2>
<a href="javascript:void(0)" class="pt-1">
<div class="flex flex-row-reverse text-xs text-[#fbb900] mt-1">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
17
</span>
</div>
<div> گھنٹے پہلے</div>
</div>
</a>
</div>
<img src="images/important3.jpg" alt="news1" class="w-20 h-20 rounded-full"/>
</div>
<div class="flex items-center justify-end my-2 gap-3">
<div class="">
<h2 class="text-right text-sm">
<a href="./news-detail.html">پنجاب میں مرغی پال اسکیم مؤخر</a>
</h2>
<a href="javascript:void(0)" class="pt-1">
<div class="flex flex-row-reverse text-xs text-[#fbb900] mt-1">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
16
</span>
</div>
<div> گھنٹے پہلے</div>
</div>
</a>
</div>
<img src="images/important4.jpg" alt="news1" class="w-20 h-20 rounded-full"/>
</div>
<div class="flex items-center justify-end my-2 gap-3">
<div class="">
<h2 class="text-right text-sm">
<a href="./news-detail.html">فرانسیسی فٹ بالر زیڈان ریال میڈرڈ کے کوچ بن گئے</a>
</h2>
<a href="javascript:void(0)" class="pt-1">
<div class="flex flex-row-reverse text-xs text-[#fbb900] mt-1">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
15
</span>
</div>
<div> گھنٹے پہلے</div>
</div>
</a>
</div>
<img src="images/important5.jpg" alt="news1" class="w-20 h-20 rounded-full"/>
</div>
<div class="flex items-center justify-end my-2 gap-3">
<div class="">
<h2 class="text-right text-sm">
<a href="./news-detail.html">انگلینڈ کے ایلیکس ہیلز اور کرس جارڈن کی پی ایس ایل میں شمولیت</a>
</h2>
<a href="javascript:void(0)" class="pt-1">
<div class="flex flex-row-reverse text-xs text-[#fbb900] mt-1">
<div class="flex flex-row-reverse items-center">
<img src="images/clock.webp" alt="clock" class="w-4 h-4 mt-1"/>
<span class="pl-1">
14
</span>
</div>
<div> گھنٹے پہلے</div>
</div>
</a>
</div>
<img src="images/important6.jpg" alt="news1" class="w-20 h-20 rounded-full"/>
</div>
</div>
<div class="mb-24 lg:mb-0">
<h2 class="text-xl bg-[#fbb900] w-32 text-center pb-4 pt-2 ml-auto md:mb-0">مقبول ٹیگ</h2>
<hr class="border border-[#fbb900] bg-[#fbb900]">
</div>
<!--left side ends here-->
</div>
</div>
<footer class="bg-[#273272]">
<!--footer starts here-->
<div class="max-w-[1365px] mx-auto lg:flex flex-row-reverse gap-12 px-7">
<div class="flex flex-col lg:max-w-[315px] w-full items-end">
<a href="./" class="bg-[#ffb900] text-center px-6 py-5 font-bold text-3xl text-black w-[40]">نیوزلنک</a>
<p class="text-white text-right text-sm sm:text-xl lg:text-sm lg:leading-7 tracking-tight mt-8 lg:mt-12">
نیوز لنک | تازہ ترین، بریکنگ نیوز، ویڈیوز، سیاست اور سیاست
کے بارے میں دنیا بھر میں سب سے اوپر معلومات، سائنس اور
ٹیکنالوجی، کھیل، تفریح اور دیگر موضوعات سے متعلق خبریں پڑھیں۔</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-4 text-white text-right items-between gap-4 pb-8 pt-8 lg:pt-12">
<div class="flex flex-col items-end">
<h2 class="text-xl text-[#ffb900] mb-10">رابطہ کیجیے</h2>
<form action="" class="flex mb-4">
<input type="search" placeholder="ٹیگ تلاش کریں۔۔۔" name="search" class="max-w-[434px] w-full h-8 rounded-2xl text-xs text-gray-bold pr-7 text-right" />
<div class="relative">
<button type="submit" class="text-xl text-gray-600 absolute right-[10px] bottom-[5px]">
<i class="fa fa-search"></i>
</button>
</div>
</form>
<p class="hover:text-gray-400 flex items-center mb-1">
<img src="images/phone_icon.png" alt="phone icon" class="w-3 h-3 mr-1" />
<span class="text-xs sm:text-[15px] font-sans tracking-tight">04238910573</span>
</p>
<p class="hover:text-gray-400 flex items-center">
<img src="images/msg_icon.png" alt="msg icon" class="w-3 h-3 mr-1" />
<a href="mailto:[email protected]" class="text-xs sm:text-[15px] font-sans tracking-tight">[email protected]</a>
</p>
</div>
<div>
<h2 class="text-xl text-[#ffb900] mb-10">سوشل میڈیا</h2>
<div class="text-sm">
<a href="./news-category.html" class="block mb-2 hover:text-gray-400">فیس بک</a>
<a href="./news-category.html" class="block mb-2 hover:text-gray-400">ٹوئیٹر</a>
<a href="./news-category.html" class="block mb-2 hover:text-gray-400">یوٹیوب</a>
<a href="./news-category.html" class="block mb-2 hover:text-gray-400">گوگل پلس</a>
</div>
</div>
<div>
<h2 class="text-xl text-[#ffb900] mb-10">انٹرایکٹو</h2>
<div class="text-sm">
<a href="./news-category.html" class="block mb-2 hover:text-gray-400">پاکستان</a>
<a href="./news-category.html" class="block mb-2 hover:text-gray-400">براہ راست نشریات</a>
<a href="./news-category.html" class="block mb-2 hover:text-gray-400">لائیو آڈیو</a>
<a href="./news-category.html" class="block mb-2 hover:text-gray-400">ویڈیوز</a>
<a href="./news-category.html" class="block mb-2 hover:text-gray-400">بلاگز</a>
</div>
</div>
<div>
<h2 class="text-xl text-[#ffb900] mb-10">کوئک لنکز</h2>
<div class="inline-block text-sm">
<a href="./news-category.html" class="block mb-2 hover:text-gray-400">کھیل</a>
<a href="./news-category.html" class="block mb-2 hover:text-gray-400">انٹرٹینمنٹ</a>
<a href="./news-category.html" class="block mb-2 hover:text-gray-400">تفریح</a>
<a href="./news-category.html" class="block mb-2 hover:text-gray-400">سائنس/صحت</a>
</div>
<div class="inline-block text-sm ml-10">
<a href="./news-category.html" class="block mb-2 hover:text-gray-400">صفحہ اول</a>
<a href="./news-category.html" class="block mb-2 hover:text-gray-400">تازہ ترین</a>
<a href="./news-category.html" class="block mb-2 hover:text-gray-400">پاکستان</a>
<a href="./news-category.html" class="block mb-2 hover:text-gray-400">کاروبار</a>
</div>
</div>
</div>
</div>
<div class="bg-[#20295f]">
<p class="text-white text-center py-4"> تمام مواد کے جملہ حقوق محفوظ ہیں © 2018 نیوز لنک</p>
</div>
<!--footeer ends here-->
</footer>
<script>
function mobMenu() {
var element = document.getElementById("mobMenu");
element.classList.toggle("mystyle");
}
</script>
</body>
</html>