-
Notifications
You must be signed in to change notification settings - Fork 8
/
analytics.html
1103 lines (889 loc) · 49.3 KB
/
analytics.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- Use Graph.js for Dynamic Graphs -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TwitchIn | TwitchIn is a business and employment-focused social media platform that works through for purpose to connect similar kind of peers.</title>
<!-- IconScout CDN -->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v2.1.6/css/unicons.css">
<!-- External Stylesheet -->
<link rel="stylesheet" href="./style.css">
<!-- Remix Icon CDN -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"
rel="stylesheet"
/>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="./favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon/favicon-16x16.png">
<link rel="manifest" href="./favicon//site.webmanifest">
<link rel="mask-icon" href="./favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<nav>
<div class="container">
<a href="index.html"><h2 class="logo">
<img src="./images/twitchInfffweb.png" alt="">
</h2> </a>
<div class="search-bar">
<i class="uil uil-search"></i>
<input type="search" placeholder="Search for creators, inspirations, and projects">
</div>
<div class="create">
<a href="https://anotepad.com/">
<label class="btn btn-primary" >Create</label>
</a>
<a href="https://www.linkedin.com/in/kiran-kumar-sde/">
<div class="profile-photo">
<img src="./images/kiran_nobg.png" alt="">
</div>
</a>
</div>
</div>
</nav>
<!-------------------------------- MAIN ----------------------------------->
<main>
<div class="container">
<!----------------- LEFT -------------------->
<div class="left">
<a class="profile" href="https://www.linkedin.com/in/kiran-kumar-sde/">
<div class="profile-photo">
<img src="./images/kiran_nobg.png">
</div>
<div class="handle">
<h4>Kiran Kumar</h4>
<small><p class="text-muted">
Software Engineer
</p></small>
</div>
</a>
<div class="handle profile">
<small>
I'm a Software Engineer who is obsessed with the idea of using software to solve practical problems. <br>
<!-- <label class="btn" style="width: 100px; height: 40px; text-align: center; display: flex; justify-content: center; align-items: center; background-color: #F0F0F0;">Edit</label> -->
</small>
</div>
<!----------------- SIDEBAR -------------------->
<div class="sidebar">
<a class="menu-item " href="index.html">
<span><i class="uil uil-home"></i></span>
<h3>Home</h3>
</a>
<a class="menu-item" href="https://www.linkedin.com/">
<span><i class="uil uil-compass"></i></span>
<h3>Explore</h3>
</a>
<!--<a class="menu-item" id="notifications">
<span><i class="uil uil-bell"><small class="notification-count">9+</small></i></span>
<h3>Notification</h3> -->
<!--------------- NOTIFICATION POPUP --------------->
<!-- <div class="notifications-popup">
<div>
<div class="profile-photo">
<img src="./images/Ishalli.jpeg">
</div>
<div class="notification-body">
<b>Ishalli Garg</b> accepted your friend request
<small class="text-muted">2 Days Ago</small>
</div>
</div>
<div>
<div class="profile-photo">
<img src="./images/kamaldeep.jpeg">
</div>
<div class="notification-body">
<b>Kamaldeep Singh</b> commented on your post
<small class="text-muted">1 Hour Ago</small>
</div>
</div>
<div>
<div class="profile-photo">
<img src="./images/garvit.jpeg">
</div>
<div class="notification-body">
<b>Garvit Kumar</b> and <b>283 Others</b> liked your post
<small class="text-muted">4 Minutes Ago</small>
</div>
</div>
<div>
<div class="profile-photo">
<img src="./images/nidhi.jpeg">
</div>
<div class="notification-body">
<b>Nidhi Khatri</b> commented on a post you are tagged in
<small class="text-muted">2 Days Ago</small>
</div>
</div>
<div>
<div class="profile-photo">
<img src="./images/hritik.jpeg">
</div>
<div class="notification-body">
<b>Hritik Kumar</b> commented on a post you are tagged in
<small class="text-muted">1 Hour Ago</small>
</div>
</div>
<div>
<div class="profile-photo">
<img src="./images/mansi.jpeg">
</div>
<div class="notification-body">
<b>Mansi Ruhil</b> commented on your post
<small class="text-muted">1 Hour Ago</small>
</div>
</div>
</div> -->
<!--------------- END NOTIFICATION POPUP --------------->
<!-- </a>
<a class="menu-item" id="messages-notifications">
<span><i class="uil uil-envelope-alt"><small class="notification-count">6</small></i></span>
<h3>Messages</h3>
</a> -->
<a class="menu-item " href="bookmarks.html">
<span><i class="uil uil-bookmark"></i></span>
<h3>Bookmarks</h3>
</a>
<a class="menu-item active" href="analytics.html">
<span><i class="uil uil-chart-line"></i></span>
<h3>Analytics</h3>
</a>
<!-- <a class="menu-item" id="theme">
<span><i class="uil uil-palette"></i></span>
<h3>Theme </h3>
</a> -->
<!-- <a class="menu-item" href="https://www.linkedin.com/mypreferences/d/categories/account">
<span><i class="uil uil-setting"></i></span>
<h3>Setting</h3>
</a> -->
</div>
<!----------------- END OF SIDEBAR -------------------->
<a href="https://www.linkedin.com/in/kiran-kumar-sde/">
<div>
<label class="btn btn-primary">Create Post</label>
</div>
</a>
</div>
<!----------------- MIDDLE -------------------->
<div class="middle">
<!----------------- STORIES -------------------->
<!----------------- END OF STORIES -------------------->
<form action="" class="create-post">
<a href="https://www.linkedin.com/in/kiran-kumar-sde/"> <div class="profile-photo">
<img src="./images/kiran_nobg.png">
</div> </a>
<input type="text" placeholder="What's on your mind, Kiran ?" id="create-post" >
<!-- <form action="https://www.linkedin.com/in/kiran-kumar-sde/" method="post"> -->
<input type="submit" value="Post" class="btn btn-primary">
<!-- </form> -->
</form>
<!----------------- FEEDS -------------------->
<div class="feeds">
<!----------------- FEED 1 - Hritik Kumar-------------------->
<div class="feed">
<h1>Analytics </h1>
<img src="./images/analytics.png" alt=""> <br><br>
<p></p>
<p>Content Performance <i class="ri-question-fill"></i></p> <br>
<!DOCTYPE html>
<html>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.js"></script>
<body>
<canvas id="myChart" style="width:100%;max-width:600px"></canvas>
<script>
const xValues = [50,60,70,80,90,100,110,120,130,140,150];
const yValues = [7,8,8,9,9,9,10,11,14,14,15];
new Chart("myChart", {
type: "line",
data: {
labels: xValues,
datasets: [{
fill: false,
lineTension: 0,
backgroundColor: "rgba(0,0,255,1.0)",
borderColor: "rgba(0,0,255,0.1)",
data: yValues
}]
},
options: {
legend: {display: false},
scales: {
yAxes: [{ticks: {min: 6, max:16}}],
}
}
});
</script>
</body>
</html>
<br><br>
<p>New Followers <i class="ri-question-fill"></i></p> <br>
<!DOCTYPE html>
<html>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.js"></script>
<body>
<canvas id="myChart2" style="width:100%;max-width:600px"></canvas>
<script>
const x1Values = [50,60,70,80,90,100,110,120,130,140,150];
const y1Values = [7,8,8,9,14,9,11,5,14,14,15];
new Chart("myChart2", {
type: "line",
data: {
labels: x1Values,
datasets: [{
fill: false,
lineTension: 0,
backgroundColor: "rgba(0,0,255,1.0)",
borderColor: "rgba(0,0,255,0.1)",
data: y1Values
}]
},
options: {
legend: {display: false},
scales: {
yAxes: [{ticks: {min: 6, max:16}}],
}
}
});
</script>
</body>
</html>
<!-- <div class="head">
<a href="https://www.linkedin.com/in/hritikkumar0001/"> <div class="user">
<div class="profile-photo">
<img src="./images/hritik.jpeg">
</div>
<div class="info">
<h3>Hritik Kumar</h3>
<small>Embedded Engineer</small>
</div>
</div></a>
<span class="edit">
<i class="uil uil-ellipsis-h"></i>
</span>
</div> -->
<!-- <div class="caption"> <br>
<p>Grateful to have completed my first year at PlebC Innovations Private Limited . Thanks to my colleagues and mentors for the support and guidance along the way. 😄😄 <br> <br>
Looking back on this journey, it's clear to me that the field of embedded engineering and electronics is brimming with endless possibilities 🤗. From designing innovative solutions to tackling complex challenges, it's been a rewarding journey of exploration and discovery. <br> <br>
Embedded engineering 💻 isn't just about circuits and code – it's about pushing the boundaries of what's possible and shaping the future of technology. I'm excited to continue contributing to this dynamic field and inspiring the next generation of innovators. 💡 <br> <br>
<span class="harsh-tag">#WorkAnniversary #Gratitude #plebc #embedded #electronics #robotics</span></p> <br>
</div> -->
<!-- <div class="photo">
<img src="./images/hritikfeed.jpeg">
</div>
<div class="action-buttons">
<div class="interaction-buttons">
<span><i class="uil uil-heart heart-icon"></i></span>
<span><i class="uil uil-comment-dots"></i></span>
<span><i class="uil uil-share-alt share-button"></i></span>
</div>
<div class="bookmark">
<span><i class="uil uil-bookmark-full bookmark"></i></span>
</div>
</div>
<div class="liked-by">
<span><img src="./images/profile-10.jpg"></span>
<span><img src="./images/profile-4.jpg"></span>
<span><img src="./images/profile-15.jpg"></span>
<p>Liked by <b>Sundar Pichai</b> and <b>102 others</b></p>
</div> -->
<!-- <div class="comments text-muted">
View all 277 comments
</div>
</div> -->
<!----------------- END OF FEED 1 -------------------->
<!----------------- FEED 2 - Sundar Pichai-------------------->
<!-- <div class="feed"> -->
<!-- <div class="head">
<a href="https://www.linkedin.com/in/sundarpichai/"> <div class="user">
<div class="profile-photo">
<img src="./images/sundarpichai.jpeg">
</div>
<div class="info">
<h3>Sundar Pichai</h3>
<small>CEO at Google</small>
</div>
</div> </a>
<span class="edit">
<i class="uil uil-ellipsis-h"></i>
</span>
</div>
<div class="caption"> <br>
<p>What a fun way to close out #GoogleIO 2024!😄 <br><br> We brought thousands of Googlers to Shoreline Ampitheatre for a demo slam. We demo-ed, we cheered, we rocked. 🥳🙌<br> <br>
<span class="harsh-tag">#GoogleIO</span></p>
</div> -->
<!-- <div class="photo">
<img src="./images/sundarpichaifeed.jpeg">
</div>
<div class="action-buttons">
<div class="interaction-buttons">
<span><i class="uil uil-heart heart-icon" ></i></span>
<span><i class="uil uil-comment-dots"></i></span>
<span><i class="uil uil-share-alt share-button"></i></span>
</div>
<div class="bookmark">
<span><i class="uil uil-bookmark-full bookmark"></i></span>
</div>
</div>
<div class="liked-by">
<span><img src="./images/profile-11.jpg"></span>
<span><img src="./images/profile-5.jpg"></span>
<span><img src="./images/profile-16.jpg"></span>
<p>Liked by <b>Navaneeth Samala</b> and <b>6, 323 others</b></p>
</div>
<div class="comments text-muted">
View all 100 comments
</div> -->
<!-- </div> -->
<!----------------- END OF FEED 2 -------------------->
<!----------------- FEED 3 -------------------->
<!-- <div class="feed"> -->
<!-- <div class="head">
<div class="user">
<div class="profile-photo">
<img src="./images/billgates.jpeg">
</div>
<div class="info">
<a href="https://www.linkedin.com/in/williamhgates/"> <h3>Bill Gates</h3>
<small>Co-chair, Bill & Melinda Gates Foundation
</small>
</div> </a>
</div>
<span class="edit">
<i class="uil uil-ellipsis-h"></i>
</span>
</div>
<div class="caption"> <br>
<p> Here’s what I’m reading, watching, and listening to this summer. Hopefully, you’ll think it’s not too bad for a granddad. 😁😁 <br> <br>
<a href="https://www.linkedin.com/pulse/great-books-songs-shows-summer-bill-gates/?trackingId=sqHHMQdcQ22%2BDazrYJyE4Q%3D%3D"><small>Link - </small></a> -->
<!-- https://www.linkedin.com/pulse/great-books-songs-shows-summer-bill-gates/?trackingId=sqHHMQdcQ22%2BDazrYJyE4Q%3D%3D -->
<!-- <a href="https://shorturl.at/pdpC0" style="color: blue;">https://shorturl.at/pdpC0</a> <br> <br>
<span class="harsh-tag">#summer #inspiration</span></p>
</div>
<div class="photo">
<img src="./images/billgatesfeed.jpeg">
</div>
<div class="action-buttons">
<div class="interaction-buttons">
<span><i class="uil uil-heart heart-icon" ></i></span>
<span><i class="uil uil-comment-dots"></i></span>
<span><i class="uil uil-share-alt share-button"></i></span>
</div>
<div class="bookmark">
<span><i class="uil uil-bookmark-full bookmark"></i></span>
</div>
</div>
<div class="liked-by">
<span><img src="./images/profile-12.jpg"></span>
<span><img src="./images/profile-13.jpg"></span>
<span><img src="./images/profile-14.jpg"></span>
<p>Liked by <b>Mansi Ruhil</b> and <b>8, 003 others</b></p>
</div>
<div class="comments text-muted">
View all 50 comments
</div> -->
<!-- </div> -->
<!----------------- END OF FEED 3 -------------------->
<!----------------- FEED 4 -------------------->
<!-- <div class="feed"> -->
<!-- <div class="head">
<a href="https://www.linkedin.com/in/vineetasingh/"> <div class="user">
<div class="profile-photo">
<img src="./images/vineeta.jpeg">
</div>
<div class="info">
<h3>Vineeta Singh</h3>
<small>CEO at SUGAR Cosmetics</small>
</div>
</div> </a>
<span class="edit">
<i class="uil uil-ellipsis-h"></i>
</span>
</div>
<div class="caption"> <br>
<p> Belief > Confidence 💪 <br> <br>
Belief comes from a place of humility. 😁 I know I’m not there yet, but I have faith that showing up consistently will get me there! ✅ <br> <br>
Confidence can come from a lack of self awareness that blocks growth. <br>
The difference matters when taking bold bets. 🔥 <br> <br>
<span class="harsh-tag">#selfbelief</span></p>
</div>
<div class="photo">
<img src="./images/vineetafeed.jpeg" height="700px" width="400px">
</div>
<div class="action-buttons">
<div class="interaction-buttons">
<span><i class="uil uil-heart heart-icon"></i></span>
<span><i class="uil uil-comment-dots"></i></span> -->
<!-- <span><i class="uil uil-share-alt share-button"></i></span> -->
<!-- </div> -->
<!-- <div class="bookmark">
<span><i class="uil uil-bookmark-full bookmark"></i></span>
</div> -->
<!-- </div> -->
<!-- <div class="liked-by">
<span><img src="./images/profile-10.jpg"></span>
<span><img src="./images/profile-4.jpg"></span>
<span><img src="./images/profile-15.jpg"></span>
<p>Liked by <b>Hritik Kumar</b> and <b>1982 others</b></p>
</div> -->
<!--
<div class="comments text-muted">
View all 540 comments
</div> -->
</div>
<!----------------- END OF FEED 4 -------------------->
<!----------------- FEED 5 -------------------->
<!-- <div class="feed"> -->
<!-- <div class="head" > -->
<!-- <a href="https://www.linkedin.com/in/hiteshchoudhary/"><div class="user">
<div class="profile-photo">
<img src="./images/hitesh.jpeg">
</div>
<div class="info">
<h3>Hitesh Choudhary</h3>
<small>Full time YouTuber</small>
</div>
</div></a>
<span class="edit">
<i class="uil uil-ellipsis-h"></i>
</span>
</div>
<div class="caption"> -->
<!-- <p> <br>Will AI impact the job ? 🤖 <br> <br> AI will impact jobs by automating repetitive tasks, creating new roles in tech, and necessitating reskilling. It will transform industries, potentially displacing some jobs while generating others. <br> <br>
<span class="harsh-tag">#ai #ml #jobs</span></p>
</div>
<div class="photo"> -->
<!-- <img src="./videos/hiteshfeed.mp4"> -->
<!-- <video src="./videos/hiteshfeed.mp4" controls width="100%" height="500px" ></video>
</div>
<div class="action-buttons">
<div class="interaction-buttons">
<span><i class="uil uil-heart heart-icon"></i></span>
<span><i class="uil uil-comment-dots"></i></span>
<span><i class="uil uil-share-alt share-button"></i></span>
</div> -->
<!-- <div class="bookmark">
<span><i class="uil uil-bookmark-full bookmark"></i></span>
</div> -->
<!-- </div> -->
<!-- <div class="liked-by">
<span><img src="./images/profile-10.jpg"></span>
<span><img src="./images/profile-4.jpg"></span>
<span><img src="./images/profile-15.jpg"></span>
<p>Liked by <b>Harsh Sharma</b> and <b>1, 226 others</b></p>
</div>
<div class="comments text-muted">
View all 199 comments
</div> -->
<!-- </div> -->
<!----------------- END OF FEED 5 -------------------->
<!----------------- FEED 6 -------------------->
<!-- <div class="feed">
<div class="head">
<div class="user">
<div class="profile-photo">
<img src="./images/navneeth.jpeg">
</div>
<a href="https://www.linkedin.com/in/navaneeth-samala-858289227/"><div class="info">
<h3>Navaneeth Samala</h3>
<small>Student at SR Engineering College</small>
</div> </a>
</div>
<span class="edit">
<i class="uil uil-ellipsis-h"></i>
</span>
</div>
<div class="caption">
<p> <br>Excited 😁 to announce my completion of the "Hardware Security" course in the DICD (Digital IC Design) credit program on Coursera! Grateful to ECE SR University, SR University and Dr. Sandip Bhattacharya for an enriching learning experience that goes beyond the conventional academic curriculum. 🥳🎆 <br> <br>
<span class="harsh-tag">#Coursera #ECE #HardwareSecurity</span></p>
</div>
<div class="photo">
<img src="./images/navaneethfeed.jpeg"> -->
<!-- </div>
<div class="action-buttons">
<div class="interaction-buttons">
<span><i class="uil uil-heart heart-icon"></i></span>
<span><i class="uil uil-comment-dots"></i></span>
<span><i class="uil uil-share-alt share-button"></i></span>
</div>
<div class="bookmark">
<span><i class="uil uil-bookmark-full bookmark"></i></span>
</div>
</div>
<div class="liked-by">
<span><img src="./images/profile-10.jpg"></span>
<span><img src="./images/profile-4.jpg"></span>
<span><img src="./images/profile-15.jpg"></span>
<p>Liked by <b>Ernest Achiever</b> and <b>2, 999 others</b></p>
</div>
<div class="comments text-muted">
View all 277 comments
</div>
</div> -->
<!----------------- END OF FEED 6 -------------------->
<!----------------- FEED 7 -------------------->
<!-- <div class="feed"> -->
<!-- <div class="head"> -->
<!-- <a href="https://www.linkedin.com/in/mansi-ruhil-7a00a0228/">
<div class="user">
<div class="profile-photo">
<img src="./images/mansi2.jpeg">
</div>
<div class="info">
<h3>Mansi Ruhil</h3>
<small>BV'27 | Girl Google Hackathon</small>
</div>
</div></a> -->
<!-- <span class="edit">
<i class="uil uil-ellipsis-h"></i>
</span> -->
<!-- </div> -->
<!-- <div class="caption">
<p><br> I'm delighted to share my offer letter for "Artificial Intelligence" virtual internship from CodSoft . Duration will be of 4 weeks, from 20May2024 to 20June2024. Thankyou CodSoft for this Opportunity. <br> <br>
<span class="harsh-tag">#codsoft #internship</span></p> <br>
</div>
<div class="photo">
<img src="./images/mansifeed.jpeg" height="600px">
</div> -->
<!-- <div class="action-buttons">
<div class="interaction-buttons">
<span><i class="uil uil-heart heart-icon"></i></span>
<span><i class="uil uil-comment-dots"></i></span>
<span><i class="uil uil-share-alt share-button"></i></span>
</div>
<div class="bookmark">
<span><i class="uil uil-bookmark-full bookmark"></i></span>
</div>
</div> -->
<!--
<div class="liked-by">
<span><img src="./images/profile-10.jpg"></span>
<span><img src="./images/profile-4.jpg"></span>
<span><img src="./images/profile-15.jpg"></span>
<p>Liked by <b>Benjamin Dwayne</b> and <b>302 others</b></p>
</div>
<div class="comments text-muted">
View all 277 comments
</div> -->
<!--
<div class="stories">
<div class="story">
<div class="profile-photo">
<img src="./images/kiran_nobg.png">
</div>
<p class="name">Your Story</p>
</div>
<div class="story">
<div class="profile-photo">
<img src="./images/hritik.jpeg">
</div>
<p class="name">Hritik Kumar</p>
</div>
<div class="story">
<div class="profile-photo">
<img src="./images/sundarpichai.jpeg">
</div>
<p class="name">Sundar Pichai</p>
</div>
<div class="story">
<div class="profile-photo">
<img src="./images/billgates.jpeg">
</div>
<p class="name">Bill Gates</p>
</div>
<div class="story">
<div class="profile-photo">
<img src="./images/vineeta.jpeg">
</div>
<p class="name">Vinneta Singh</p>
</div>
<div class="story">
<div class="profile-photo">
<img src="./images/hitesh.jpeg">
</div>
<p class="name">Hitesh Choudhary</p>
</div>
</div> -->
<!-- </div> -->
<!-- Not done -->
<!----------------- END OF FEED 7 -------------------->
</div>
<!-- not done -->
<!----------------- END OF FEEDS -------------------->
</div>
<!----------------- END OF MIDDLE -------------------->
<!----------------- RIGHT -------------------->
<div class="right">
<!------- MESSAGES ------->
<div class="messages">
<div class="heading">
<h4>Messages</h4>
<i class="uil uil-edit"></i>
</div>
<!------- SEARCH BAR ------->
<div class="search-bar">
<i class="uil uil-search"></i>
<input type="search" placeholder="Search messages" id="message-search">
</div>
<!------- MESSAGES CATEGORY ------->
<div class="category">
<h6 class="active">Primary</h6>
<h6>General</h6>
<h6 class="message-requests">Requests (7)</h6>
</div>
<!------- MESSAGES(Message - 1) ------->
<div class="message">
<div class="profile-photo">
<img src="./images/sundarpichai.jpeg">
</div>
<div class="message-body">
<a href="https://www.linkedin.com/in/sundarpichai/"><h5>Sundar Pichai</h5>
<p class="text-muted">Let's catch up!</p> </a>
</div>
</div>
<!------- MESSAGES (Message - 2) ------->
<div class="message">
<div class="profile-photo">
<img src="./images/vineeta.jpeg">
</div>
<div class="message-body">
<a href="https://www.linkedin.com/in/vineetasingh/"><h5>Vinneta Singh</h5>
<p class="text-bold">2 new messages</p></a>
</div>
</div>
<!------- MESSAGES (Message - 3)------->
<div class="message">
<div class="profile-photo">
<img src="./images/hritik.jpeg">
<div class="active"></div>
</div>
<div class="message-body">
<a href="https://www.linkedin.com/in/hritikkumar0001/"> <h5>Hritik Kumar</h5>
<p class="text-muted">Sir, I want referral.</p> </a>
</div>
</div>
<!------- MESSAGES (Message - 4) ------->
<div class="message">
<div class="profile-photo">
<img src="./images/unnati.jpeg">
</div>
<div class="message-body">
<a href="https://www.linkedin.com/in/unnati-6038a9222/">
<h5>Unnati Gaur</h5>
<p class="text-muted">Deadline is tomorrow 😁.</p> </a>
</div>
</div>
<!------- MESSAGES (Message - 5)------->
<div class="message">
<div class="profile-photo">
<img src="./images/billgates.jpeg">
<div class="active"></div>
</div>
<div class="message-body">
<a href="https://www.linkedin.com/in/williamhgates/">
<h5>Bill Gates</h5>
<p class="text-bold">5 new messages</p> </a>
</div>
</div>
<!------- MESSAGES (Message - 6)------->
<div class="message">
<div class="profile-photo">
<img src="./images/mansi.jpeg">
</div>
<div class="message-body">
<a href="https://www.linkedin.com/in/mansi-ruhil-7a00a0228/">
<h5>Mansi Ruhil</h5>
<p class="text-muted">haha got that! 😂</p> </a>
</div>
</div>
</div>
<!------- END OF MESSAGES ------->
<!------- FRIEND REQUEST ------->
<div class="friend-requests">
<h4>Connections</h4>
<div class="request">
<div class="info">
<div class="profile-photo">
<img src="./images/rahult.jpeg">
</div>
<a href="https://www.linkedin.com/in/rahul-mishra-0aba1419b/">
<div>
<h5>Rahul Mishra</h5>
<small><p class="text-muted">Results-Driven Category Manager </p></small>
</div> </a>
</div>
<div class="action">
<a href="https://www.linkedin.com/in/rahul-mishra-0aba1419b/"><button class="btn btn-primary">
Accept
</button></a>
<a href="https://www.linkedin.com/in/rahul-mishra-0aba1419b/"><button class="btn ">
Decline
</button></a>
</div>
</div>
<div class="request">
<div class="info">
<div class="profile-photo">
<img src="./images/apoorva.jpeg">
</div>
<a href="https://www.linkedin.com/in/apoorvasingh26/">
<div>
<h5>Apoorva Mandela</h5>
<small><p class="text-muted">Software Engineer 2 at Microsoft </p></small>
</div> </a>
</div>
<div class="action">
<a href="https://www.linkedin.com/in/apoorvasingh26/"><button class="btn btn-primary">
Accept
</button></a>
<a href="https://www.linkedin.com/in/apoorvasingh26/"><button class="btn ">
Decline
</button></a>
</div>
</div>
<div class="request">
<div class="info">
<div class="profile-photo">
<img src="./images/deeksha.jpeg">
</div>
<a href="https://www.linkedin.com/in/deekshapandey16/">
<div>
<h5>Deeksha Pandey</h5>
<small><p class="text-muted">SWE at Google </p></small>
</div> </a>
</div>
<div class="action">
<a href="https://www.linkedin.com/in/deekshapandey16/"><button class="btn btn-primary">
Accept
</button></a>
<a href="https://www.linkedin.com/in/deekshapandey16/"><button class="btn ">
Decline
</button></a>
</div>
</div>
</div>
<div class="friend-requests">
<h4>Company Pages</h4>
<div class="request">
<div class="info">
<div class="profile-photo">
<img src="./images/google.jpeg">
</div>
<div>
<h5>Google</h5>
<small><p class="text-muted">Software Development</p></small>
</div>
</div>
<div class="action">
<a href="https://www.linkedin.com/company/google/"><button class="btn btn-primary">
Follow
</button></a>
<a href="https://www.linkedin.com/company/google/"><button class="btn">
View Page
</button></a>
</div>
</div>
<div class="request">
<div class="info">
<div class="profile-photo">
<img src="./images/microsoft.jpeg">
</div>
<div>
<h5>Microsoft</h5>
<small><p class="text-muted">Software Development</p></small>
</div>
</div>
<div class="action">
<a href="https://www.linkedin.com/company/microsoft/"><button class="btn btn-primary">
Follow
</button> </a>
<a href="https://www.linkedin.com/company/microsoft/"> <button class="btn">
View Page
</button></a>