-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
834 lines (732 loc) · 42.6 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>LinkedInterest - Home</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<!--ekko-->
<link rel="stylesheet" href="css/tool-kit.css">
</head>
<body>
<!--nav-->
<nav class="navbar navbar-expand-lg navbar-light bg-light my-nav">
<!--escape hatch-->
<a href="home.html"><img src="icon/drawable-mdpi/icon.png" alt="" class="navbar-brand"></a>
<!--collapse navbar-->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link btn btn-light" href="home.html">Home</a>
</li>
<li class="nav-item active">
<a class="nav-link btn btn-light" href="friends.html">Friends</a>
</li>
<li class="nav-item active">
<a class="nav-link btn btn-light" href="gallary.html">Gallery</a>
</li>
<li class="nav-item active">
<a class="nav-link btn btn-light" href="events.html">Events</a>
</li>
<li class="nav-item active">
<a class="nav-link btn btn-light" href="shopping.html">Shopping</a>
</li>
<li class="nav-item active dropdown">
<a class="nav-link dropdown-toggle btn btn-light" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Settings
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="account/account.html">Account</a>
<a class="dropdown-item" href="#">Payments</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="about.html">About us</a>
<a class="dropdown-item" href="index.html">Log out</a>
</div>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="search" placeholder="People/Events..." aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form>
</div>
</nav>
<div class="container all-padding row">
<!--left col-->
<div class="col-md-3">
<!--profile card-->
<div class="card profile-card-3 card-style">
<div class="background-block">
<img src="img/home/iceland.jpg" alt="profile-bg-img" class="background">
</div>
<div class="profile-thumb-block">
<img src="img/home/profile-pic.jpg" alt="profile-img" class="profile">
</div>
<div class="card-content">
<h2>Leonardo DiCaprio</h2><small>American Actor</small>
</div>
</div>
<div class="card profile-card-4 card-style">
<div class="profile-card-4-container">
<div class="home-card-about"><strong>About </strong><small>· <a href="account/profile.html">edit</a></small></div>
<div class="home-card-about-item col">
<div>
<i class="fa fa-calendar"></i> <small>Went to <a href="#">Quebec, Canada</a></small>
</div>
<div>
<i class="fa fa-user"></i> <small>Friended with <a href="#">Gal Gadot</a></small>
</div>
<div>
<i class="fa fa-building"></i> <small>Working at <a href="#">Good Universe</a></small>
</div>
<div>
<i class="fa fa-home"></i> <small>Lives in <a href="#">Los Angelas, CA</a></small>
</div>
</div>
</div>
</div>
<div class="card profile-card-5 card-style">
<div class="profile-card-5-containter">
<div class="home-card-gallery">
<strong>Gallery </strong><small>· <a href="gallary.html">edit</a></small>
</div>
<div class="home-card-gallery-item">
<img data-width="640" data-height="640" data-action="zoom" src="img/gallery/falls2.jpg" class="enlarge" style="width: 100px; height: 100px;">
<img data-width="640" data-height="640" data-action="zoom" src="img/gallery/mountainskies.jpg" class="enlarge" style="width: 100px; height: 100px;">
<img data-width="640" data-height="640" data-action="zoom" src="img/gallery/nature.jpg" class="enlarge" style="width: 100px; height: 100px;">
<img data-width="640" data-height="640" data-action="zoom" src="img/gallery/ocean.jpg" class="enlarge" style="width: 100px; height: 100px;">
</div>
</div>
</div>
</div>
<!--mid col-->
<div class="col-md-6">
<ul class="ul-home-1">
<!--textarea-->
<li class="textarea-holder txt-hd">
<div class="card gedf-card">
<div class="card-header">
<ul class="nav nav-tabs card-header-tabs" id="myTab" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="posts-tab" data-toggle="tab" href="#posts" role="tab" aria-controls="posts" aria-selected="true">Post</a>
</li>
<li class="nav-item">
<a class="nav-link" id="images-tab" data-toggle="tab" role="tab" aria-controls="images" aria-selected="false" href="#images">Images</a>
</li>
<li class="nav-item">
<a class="nav-link" id="videos-tab" data-toggle="tab" role="tab" aria-controls="videos" aria-selected="false" href="#videos">Videos</a>
</li>
</ul>
</div>
<div class="card-body">
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade show active" id="posts" role="tabpanel" aria-labelledby="posts-tab">
<div class="form-group">
<label class="sr-only" for="message">post</label>
<textarea class="form-control" id="message" rows="3" placeholder="What are you thinking?"></textarea>
</div>
</div>
<div class="tab-pane fade" id="images" role="tabpanel" aria-labelledby="images-tab">
<div class="form-group">
<div class="custom-file">
<input type="file" class="custom-file-input" id="customFile">
<label class="custom-file-label" for="customFile">Upload image</label>
</div>
</div>
<div class="py-4"></div>
</div>
<div class="tab-pane fade" id="videos" role="tabpanel" aria-labelledby="videos-tab">
<div class="form-group">
<input type="text" class="form-control" placeholder="Video URL">
</div>
<div class="py-4"></div>
</div>
</div>
<div class="btn-toolbar justify-content-between">
<div class="btn-group">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
<div class="btn-group">
<button id="btnGroupDrop1" type="button" class="btn btn-secondary dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-globe"></i> Public
</button>
<div class="dropdown-menu" aria-labelledby="btnGroupDrop1">
<a class="dropdown-item" href="#"><i class="fa fa-globe"></i> Public</a>
<a class="dropdown-item" href="#"><i class="fa fa-users"></i> Friends</a>
<a class="dropdown-item" href="#"><i class="fa fa-user"></i> Just me</a>
</div>
</div>
</div>
</div>
</div>
</li>
<li class="home-post">
<div class="card gedf-card">
<div class="card-header">
<div class="d-flex justify-content-between align-items-center">
<div class="d-flex justify-content-between align-items-center">
<div class="mr-2">
<a href="#"><img class="rounded-circle" width="45" src="img/friends/jennifergarner.jpg" alt=""></a>
</div>
<div class="ml-2">
<div class="h5 m-0">Jennifer Garner</div>
<div class="h7 text-muted">@jennifer1973</div>
</div>
</div>
<div>
<div class="dropdown">
<button class="btn btn-link dropdown-toggle" type="button" id="gedf-drop1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-ellipsis-h"></i>
</button>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="gedf-drop1">
<a class="dropdown-item" href="#">Favorite</a>
<a class="dropdown-item" href="#">Hide</a>
<a class="dropdown-item" href="#">Report</a>
</div>
</div>
</div>
</div>
</div>
<div class="card-body">
<div class="text-muted h7 mb-2"> <i class="fa fa-clock-o"></i>10 min ago</div>
<p class="card-text">
🎉🎉Happy Hanukkah! Over these eight nights, we draw inspiration from light that can overpower any darkness, and recommit ourselves to building a brighter future for our families, our communities, and our world.
</p>
</div>
<div class="card-footer">
<a href="#" class="card-link"><i class="fa fa-thumbs-up"></i> Like</a>
<a href="#" class="card-link"><i class="fa fa-comment"></i> Comment</a>
<a href="#" class="card-link"><i class="fa fa-share"></i> Share</a>
</div>
</div>
</li>
<li class="home-post">
<div class="card gedf-card">
<div class="card-header">
<div class="d-flex justify-content-between align-items-center">
<div class="d-flex justify-content-between align-items-center">
<div class="mr-2">
<a href="#"><img class="rounded-circle" width="45" src="img/friends/galgadot.jpg" alt=""></a>
</div>
<div class="ml-2">
<div class="h5 m-0">Gal Gadot</div>
<div class="h7 text-muted">@galgadot23</div>
</div>
</div>
<div>
<div class="dropdown">
<button class="btn btn-link dropdown-toggle" type="button" id="gedf-drop1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-ellipsis-h"></i>
</button>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="gedf-drop1">
<a class="dropdown-item" href="#">Favorite</a>
<a class="dropdown-item" href="#">Hide</a>
<a class="dropdown-item" href="#">Report</a>
</div>
</div>
</div>
</div>
</div>
<div class="card-body">
<div class="text-muted h7 mb-2"> <i class="fa fa-clock-o"></i>45 min ago</div>
<p class="card-text">
UT Athletics is hosting a public inventory sale Dec. 12, on the Robert E. White Indoor Field inside the Neyland-Thompson Sports Center from 5-8 p.m. ET and will feature jerseys, cleats, shoes, helmets and other gear and apparel from various UT sport programs.
</p>
</div>
<div class="card-footer">
<a href="#" class="card-link"><i class="fa fa-thumbs-up"></i> Like</a>
<a href="#" class="card-link"><i class="fa fa-comment"></i> Comment</a>
<a href="#" class="card-link"><i class="fa fa-share"></i> Share</a>
</div>
</div>
</li>
<li class="home-post">
<div class="card gedf-card">
<div class="card-header">
<div class="d-flex justify-content-between align-items-center">
<div class="d-flex justify-content-between align-items-center">
<div class="mr-2">
<a href="#"><img class="rounded-circle" width="45" src="img/friends/chrispratt.jpg" alt=""></a>
</div>
<div class="ml-2">
<div class="h5 m-0">Chris Pratt</div>
<div class="h7 text-muted">@chrispt</div>
</div>
</div>
<div>
<div class="dropdown">
<button class="btn btn-link dropdown-toggle" type="button" id="gedf-drop1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-ellipsis-h"></i>
</button>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="gedf-drop1">
<a class="dropdown-item" href="#">Favorite</a>
<a class="dropdown-item" href="#">Hide</a>
<a class="dropdown-item" href="#">Report</a>
</div>
</div>
</div>
</div>
</div>
<div class="card-body">
<div class="text-muted h7 mb-2"> <i class="fa fa-clock-o"></i>3 hours ago</div>
<p class="card-text">
Whoever picked this song...please fire them😂
</p>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/WEDndTCyGgU" allowfullscreen="allowfullscreen" mozallowfullscreen="mozallowfullscreen" msallowfullscreen="msallowfullscreen" oallowfullscreen="oallowfullscreen" webkitallowfullscreen="webkitallowfullscreen"></iframe>
</div>
</div>
<div class="card-footer">
<a href="#" class="card-link"><i class="fa fa-thumbs-up"></i> Like</a>
<a href="#" class="card-link"><i class="fa fa-comment"></i> Comment</a>
<a href="#" class="card-link"><i class="fa fa-share"></i> Share</a>
</div>
</div>
</li>
<li class="home-post">
<div class="card gedf-card">
<div class="card-header">
<div class="d-flex justify-content-between align-items-center">
<div class="d-flex justify-content-between align-items-center">
<div class="mr-2">
<a href="#"><img class="rounded-circle" width="45" src="img/friends/jessicaalba.jpg" alt=""></a>
</div>
<div class="ml-2">
<div class="h5 m-0">Jessica Alba</div>
<div class="h7 text-muted">@jessieab</div>
</div>
</div>
<div>
<div class="dropdown">
<button class="btn btn-link dropdown-toggle" type="button" id="gedf-drop1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-ellipsis-h"></i>
</button>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="gedf-drop1">
<a class="dropdown-item" href="#">Favorite</a>
<a class="dropdown-item" href="#">Hide</a>
<a class="dropdown-item" href="#">Report</a>
</div>
</div>
</div>
</div>
</div>
<div class="card-body">
<div class="text-muted h7 mb-2"> <i class="fa fa-clock-o"></i>1 day ago</div>
<p class="card-text">
Burglars in medieval Cairo would sometimes send a turtle with a lit candle on its shell into the house they were planning to rob. If someone was home, they'd cry out in amazement when they saw the turtle, scaring off the burglars. Otherwise, the robbery could go ahead.
</p>
<img src="img/post-turtle.jpg" alt="post-turtle" class="post-img-l enlarge">
</div>
<div class="card-footer">
<a href="#" class="card-link"><i class="fa fa-thumbs-up"></i> Like</a>
<a href="#" class="card-link"><i class="fa fa-comment"></i> Comment</a>
<a href="#" class="card-link"><i class="fa fa-share"></i> Share</a>
</div>
</div>
</li>
<li class="home-post">
<div class="card gedf-card">
<div class="card-header">
<div class="d-flex justify-content-between align-items-center">
<div class="d-flex justify-content-between align-items-center">
<div class="mr-2">
<a href="#"><img class="rounded-circle" width="45" src="img/friends/margotrobbie.jpg" alt=""></a>
</div>
<div class="ml-2">
<div class="h5 m-0">Margot Robbie</div>
<div class="h7 text-muted">@mrabbit5</div>
</div>
</div>
<div>
<div class="dropdown">
<button class="btn btn-link dropdown-toggle" type="button" id="gedf-drop1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-ellipsis-h"></i>
</button>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="gedf-drop1">
<a class="dropdown-item" href="#">Favorite</a>
<a class="dropdown-item" href="#">Hide</a>
<a class="dropdown-item" href="#">Report</a>
</div>
</div>
</div>
</div>
</div>
<div class="card-body">
<div class="text-muted h7 mb-2"> <i class="fa fa-clock-o"></i>2 days ago</div>
<p class="card-text">
Reflection🌄<br>
📸December 2018!
</p>
<div class="post-pic-group">
<img data-width="640" data-height="640" data-action="zoom" src="img/nature1.jpg" class="enlarge" style="width: 140px; height: 140px;">
<img data-width="640" data-height="640" data-action="zoom" src="img/nature2.jpg" class="enlarge" style="width: 140px; height: 140px;">
<img data-width="640" data-height="640" data-action="zoom" src="img/nature3.jpg" class="enlarge" style="width: 140px; height: 140px;">
<img data-width="640" data-height="640" data-action="zoom" src="img/nature4.jpg" class="enlarge" style="width: 140px; height: 140px;">
<img data-width="640" data-height="640" data-action="zoom" src="img/nature5.jpg" class="enlarge" style="width: 140px; height: 140px;">
<img data-width="640" data-height="640" data-action="zoom" src="img/nature6.jpg" class="enlarge" style="width: 140px; height: 140px;">
</div>
</div>
<div class="card-footer">
<a href="#" class="card-link"><i class="fa fa-thumbs-up"></i> Like</a>
<a href="#" class="card-link"><i class="fa fa-comment"></i> Comment</a>
<a href="#" class="card-link"><i class="fa fa-share"></i> Share</a>
</div>
</div>
</li>
<li class="home-post">
<div class="card gedf-card">
<div class="card-header">
<div class="d-flex justify-content-between align-items-center">
<div class="d-flex justify-content-between align-items-center">
<div class="mr-2">
<a href="#"><img class="rounded-circle" width="45" src="img/friends/jennifergarner.jpg" alt=""></a>
</div>
<div class="ml-2">
<div class="h5 m-0">Jennifer Garner</div>
<div class="h7 text-muted">@jennifer1973</div>
</div>
</div>
<div>
<div class="dropdown">
<button class="btn btn-link dropdown-toggle" type="button" id="gedf-drop1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-ellipsis-h"></i>
</button>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="gedf-drop1">
<a class="dropdown-item" href="#">Favorite</a>
<a class="dropdown-item" href="#">Hide</a>
<a class="dropdown-item" href="#">Report</a>
</div>
</div>
</div>
</div>
</div>
<div class="card-body">
<div class="text-muted h7 mb-2"> <i class="fa fa-clock-o"></i>3 days ago</div>
<p class="card-text">
I can't wait for the new live action Little Mermaid movie with the new hit song "ask consent before you touch the hand"
</p>
<a href="https://www.insidehighered.com/news/2018/12/03/princeton-cappella-group-discontinues-singing-disney-song-over-complaints-misogyny" class="no-decoration" target="_blank">
<div class="card">
<img src="https://pbs.twimg.com/card_img/1069525197622059010/oh7GDtLU?format=jpg&name=600x314" class="card-img-top" alt="the-little-mermaid">
<div class="card-body">
<h5 class="card-title">A Cappella and Consent</h5>
<p class="card-text text-default">A Princeton a cappella group won't sing "Kiss the Girl" from The Little Mermaid after complaints that its performance made audience members uncomfortable.</p>
</div>
</div>
</a>
</div>
<div class="card-footer">
<a href="#" class="card-link"><i class="fa fa-thumbs-up"></i> Like</a>
<a href="#" class="card-link"><i class="fa fa-comment"></i> Comment</a>
<a href="#" class="card-link"><i class="fa fa-share"></i> Share</a>
</div>
</div>
</li>
</ul>
</div>
<!--right col-->
<div class="col-sm-3 offset-fixed f-right contact-sidebar">
<div class="side-right">
<div class="h7">Contacts</div>
<!-- ////// -->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/roberdowneyjr.jpg" width="30" alt="">
</div>
<div class="ml-2 h7">
Robert Downey Jr
</div>
</div>
<div class="state"></div>
</div>
<!-- /////////-->
<!-- ////// -->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/chrispratt.jpg" width="30" alt="">
</div>
<div class="ml-2 h7">
Chris Pratt
</div>
</div>
<div class="state"></div>
</div>
<!-- /////////-->
<!-- ////// -->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/galgadot.jpg" width="30" alt="">
</div>
<div class="ml-2 h7">
Gal Gadot
</div>
</div>
<div class="state"></div>
</div>
<!-- /////////-->
<!-- ////// -->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/jennifergarner.jpg" width="30" alt="">
</div>
<div class="ml-2 h7">
Jennifer Garner
</div>
</div>
<div class="h7 text-muted">10 h</div>
</div>
<!-- /////////-->
<!-- ////// -->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/jessicaalba.jpg" width="30" alt="">
</div>
<div class="ml-2 h7">
Jessica Alba
</div>
</div>
<div class="h7 text-muted">11 h</div>
</div>
<!-- /////////-->
<!-- ////// -->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/benedictcumberbatch.png" width="30" alt="">
</div>
<div class="ml-2 h7">
Benedict Cumber...
</div>
</div>
<div class="state"></div>
</div>
<!-- /////////-->
<!-- ////// -->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/margotrobbie.jpg" width="30" alt="">
</div>
<div class="ml-2 h7">
Margot Robbie
</div>
</div>
<div class="state"></div>
</div>
<!-- /////////-->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/roberdowneyjr.jpg" width="30" alt="">
</div>
<div class="ml-2 h7">
Robert Downey Jr
</div>
</div>
<div class="state"></div>
</div>
<!-- /////////-->
<!-- ////// -->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/chrispratt.jpg" width="30" alt="">
</div>
<div class="ml-2 h7">
Chris Pratt
</div>
</div>
<div class="state"></div>
</div>
<!-- /////////-->
<!-- ////// -->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/galgadot.jpg" width="30" alt="">
</div>
<div class="ml-2 h7">
Gal Gadot
</div>
</div>
<div class="state"></div>
</div>
<!-- /////////-->
<!-- ////// -->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/jennifergarner.jpg" width="30" alt="">
</div>
<div class="ml-2 h7">
Jennifer Garner
</div>
</div>
<div class="h7 text-muted">10 h</div>
</div>
<!-- /////////-->
<!-- ////// -->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/jessicaalba.jpg" width="30" alt="">
</div>
<div class="ml-2 h7">
Jessica Alba
</div>
</div>
<div class="h7 text-muted">11 h</div>
</div>
<!-- /////////-->
<!-- ////// -->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/benedictcumberbatch.png" width="30" alt="">
</div>
<div class="ml-2 h7">
Benedict Cumber...
</div>
</div>
<div class="state"></div>
</div>
<!-- /////////-->
<!-- ////// -->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/margotrobbie.jpg" width="30" alt="">
</div>
<div class="ml-2 h7">
Margot Robbie
</div>
</div>
<div class="state"></div>
</div>
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/roberdowneyjr.jpg" width="30" alt="">
</div>
<div class="ml-2 h7">
Robert Downey Jr
</div>
</div>
<div class="state"></div>
</div>
<!-- /////////-->
<!-- ////// -->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/chrispratt.jpg" width="30" alt="">
</div>
<div class="ml-2 h7">
Chris Pratt
</div>
</div>
<div class="state"></div>
</div>
<!-- /////////-->
<!-- ////// -->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/galgadot.jpg" width="30" alt="">
</div>
<div class="ml-2 h7">
Gal Gadot
</div>
</div>
<div class="state"></div>
</div>
<!-- /////////-->
<!-- ////// -->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/jennifergarner.jpg" width="30" alt="">
</div>
<div class="ml-2 h7">
Jennifer Garner
</div>
</div>
<div class="h7 text-muted">10 h</div>
</div>
<!-- /////////-->
<!-- ////// -->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/jessicaalba.jpg" width="30" alt="">
</div>
<div class="ml-2 h7">
Jessica Alba
</div>
</div>
<div class="h7 text-muted">11 h</div>
</div>
<!-- /////////-->
<!-- ////// -->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/benedictcumberbatch.png" width="30" alt="">
</div>
<div class="ml-2 h7">
Benedict Cumber...
</div>
</div>
<div class="state"></div>
</div>
<!-- /////////-->
<!-- ////// -->
<div class="d-flex justify-content-between align-items-center friend-state">
<div class="d-flex">
<div>
<img class="rounded-circle" src="img/friends/margotrobbie.jpg" width="30" alt="">
</div>
<div class="ml-2 h7">
Margot Robbie
</div>
</div>
<div class="state"></div>
</div>
</div>
<form action="#">
<div class="form-group mt-2">
<label class="sr-only" for="wzer"></label>
<input type="search" class="form-control" name="wzer" id="wzer" placeholder="Search">
</div>
</form>
</div>
</div>
<!--other functions-->
<!--modal-->
<div class="modal fade" id="enlargeImageModal" tabindex="-1" role="dialog" aria-labelledby="enlargeImageModal" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<img src="" class="enlargeImageModalSource" style="width: 100%;">
</div>
</div>
</div>
</div>
<!--bootstrap-->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<!--ekko-->
<!--other js-->
<script src="js/pic.js"></script>
</body>
</html>