-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
979 lines (944 loc) · 67.5 KB
/
index.html
File metadata and controls
979 lines (944 loc) · 67.5 KB
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
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="Hillary, Kooba, Full, Stack, Web, Developer, Facebook, Uganda, Kampala, Mukono, Systems, Software, IBM Uganda, Ugandan">
<meta name="description" content="Hillary Kooba">
<meta name="author" content="Hillary Kooba">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Hillary Kooba | Home</title>
<!-- STYLES -->
<link href="https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/plugins.css" />
<link rel="stylesheet" type="text/css" href="css/dark.css" />
<link rel="stylesheet" type="text/css" href="css/colors.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!--[if lt IE 9]> <script type="text/javascript" src="js/modernizr.custom.js"></script> <![endif]-->
<!-- /STYLES -->
</head>
<body class="dark">
<!-- PRELOADER -->
<div id="preloader">
<div class="loader_line"></div>
</div>
<!-- /PRELOADER -->
<!-- WRAPPER ALL -->
<div class="tokyo_tm_all_wrap" data-magic-cursor="" data-color="white">
<!-- If you want disable magic cursor add value "hide" -->
<!-- MAGIC CURSOR VALUES: "", hide -->
<!-- COLOR VALUES: blue, green, brown, pink, orange, black, white, purple, sky, cadetBlue, crimson, olive, red -->
<!-- MODALBOX NEWS -->
<div class="tokyo_tm_modalbox">
<div class="box_inner">
<div class="close">
<a href="#"><img class="svg" src="img/svg/cancel.svg" alt="" /></a>
</div>
<div class="description_wrap"></div>
</div>
</div>
<!-- /MODALBOX NEWS -->
<!-- MODALBOX ABOUT -->
<div class="tokyo_tm_modalbox_about">
<div class="box_inner">
<div class="close">
<a href="#"><img class="svg" src="img/svg/cancel.svg" alt="" /></a>
</div>
<div class="description_wrap">
<div class="my_box">
<div class="left">
<div class="about_title">
<h3>Frontend Skills</h3>
</div>
<div class="tokyo_progress">
<div class="progress_inner" data-value="95">
<span><span class="label">HTML5</span><span class="number">95%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
<div class="progress_inner" data-value="80">
<span><span class="label">CSS3</span><span class="number">80%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
<div class="progress_inner" data-value="80">
<span><span class="label">Javascript</span><span class="number">80%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
<div class="progress_inner" data-value="95">
<span><span class="label">Bootstrap</span><span class="number">95%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
<div class="progress_inner" data-value="75">
<span><span class="label">ReactJS</span><span class="number">75%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
<div class="progress_inner" data-value="70">
<span><span class="label">Gatsby</span><span class="number">70%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
</div>
</div>
<div class="right">
<div class="about_title">
<h3>Backend Skills</h3>
</div>
<div class="tokyo_progress">
<div class="progress_inner" data-value="95">
<span><span class="label">Python</span><span class="number">95%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
<div class="progress_inner" data-value="90">
<span><span class="label">Django</span><span class="number">90%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
<div class="progress_inner" data-value="75">
<span><span class="label">RESTful APIs</span><span class="number">75%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
<div class="progress_inner" data-value="85">
<span><span class="label">MongoDB</span><span class="number">85%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
<div class="progress_inner" data-value="90">
<span><span class="label">SQLite</span><span class="number">90%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
<div class="progress_inner" data-value="85">
<span><span class="label">AWS</span><span class="number">85%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="counter">
<div class="about_title">
<h3>Fun Facts</h3>
</div>
<ul>
<li>
<div class="list_inner">
<h3><span class="tokyo_tm_counter" data-from="0" data-to="32" data-speed="1500">0</span></h3>
<span class="name">Projects Completed</span>
</div>
</li>
<li>
<div class="list_inner">
<h3><span class="tokyo_tm_counter" data-from="0" data-to="11" data-speed="1500">0</span>+</h3>
<span class="name">Happy Clients</span>
</div>
</li>
<li>
<div class="list_inner">
<h3><span class="tokyo_tm_counter" data-from="0" data-to="100" data-speed="1500">0</span>K+</h3>
<span class="name">Lines of Code</span>
</div>
</li>
</ul>
</div>
<div class="partners">
<div class="about_title">
<h3>Our Partners</h3>
</div>
<ul class="owl-carousel">
<li class="item">
<a href="#"><img src="img/partners/1.png" alt="" /></a>
</li>
<li class="item">
<a href="#"><img src="img/partners/2.png" alt="" /></a>
</li>
<li class="item">
<a href="#"><img src="img/partners/3.png" alt="" /></a>
</li>
<li class="item">
<a href="#"><img src="img/partners/4.png" alt="" /></a>
</li>
<li class="item">
<a href="#"><img src="img/partners/5.png" alt="" /></a>
</li>
<li class="item">
<a href="#"><img src="img/partners/6.png" alt="" /></a>
</li>
<li class="item">
<a href="#"><img src="img/partners/7.png" alt="" /></a>
</li>
<li class="item">
<a href="#"><img src="img/partners/8.png" alt="" /></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- /MODALBOX ABOUT -->
<!-- MOBILE MENU -->
<div class="tokyo_tm_mobile_menu">
<div class="menu_inner">
<div class="logo">
HK
<!-- <img src="img/logo/dark.png" alt="" /> -->
</div>
<div class="menu">
<ul>
<li>
<a href="#home"><img class="svg" src="img/svg/home-run.svg" alt="" /></a>
</li>
<li>
<a href="#about"><img class="svg" src="img/svg/avatar.svg" alt="" /></a>
</li>
<!-- <li>
<a href="#portfolio"><img class="svg" src="img/svg/briefcase.svg" alt="" /></a>
</li>
<li>
<a href="#news"><img class="svg" src="img/svg/paper.svg" alt="" /></a>
</li>
<li>
<a href="#contact"><img class="svg" src="img/svg/mail.svg" alt="" /></a>
</li> -->
</ul>
</div>
</div>
</div>
<!-- /MOBILE MENU -->
<!-- LEFTPART -->
<div class="leftpart">
<div class="leftpart_inner">
<div class="logo">
<!-- <a href="#"><img src="img/logo/logo.png" alt="" /></a> -->
</div>
<div class="menu">
<ul>
<li class="active"><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<!-- <li><a href="#portfolio">Portfolio</a></li>
<li><a href="#news">News</a></li>
<li><a href="#contact">Contact</a></li> -->
</ul>
</div>
<div class="copyright">
<p>© 2021<br>Hillary Kooba
</p>
</div>
</div>
</div>
<!-- /LEFTPART -->
<!-- RIGHTPART -->
<div class="rightpart">
<div class="rightpart_in">
<!-- HOME -->
<div id="home" class="tokyo_tm_section active">
<div class="container">
<div class="tokyo_tm_home">
<div class="home_content">
<div class="avatar">
<div class="image" data-img-url="img/slider/1.jpg"></div>
</div>
<div class="details">
<h3 class="name">Hillary <span>Kooba</span></h3>
<p class="job">Full Stack Web Developer based in Kampala, Uganda and happy to meet client requirements across the country.</p>
<div class="social">
<ul>
<li>
<a target="_blank" href="https://facebook.com/hillarykooba"><img class="svg" src="img/svg/social/facebook.svg" alt="" /></a>
</li>
<li>
<a target="_blank" href="https://twitter.com/hillarykooba"><img class="svg" src="img/svg/social/twitter.svg" alt="" /></a>
</li>
<li>
<a target="_blank" href="https://instagram.com/koobasam"><img class="svg" src="img/svg/social/instagram.svg" alt="" /></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /HOME -->
<!-- ABOUT -->
<div id="about" class="tokyo_tm_section">
<div class="container">
<div class="tokyo_tm_about">
<div class="about_image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main" data-img-url="img/slider/1.jpg"></div>
</div>
<div class="description">
<h3 class="name">Hillary Kooba & <span>Full Stack Developer</span></h3>
<div class="description_inner">
<div class="left">
<p>Hello, I am a Full Stack Web Developer based in Kampala, Uganda and happy to meet client requirements across the country. I will create a lasting memory of the people.</p>
<div class="tokyo_tm_button">
<a href="#">Learn More</a>
</div>
</div>
<div class="right">
<ul>
<li>
<p><span>Birthday:</span>15.05.1999</p>
</li>
<li>
<p><span>Age:</span>22</p>
</li>
<li>
<p><span>Address:</span>Kampala, Uganda</p>
</li>
<li>
<p><span>Email:</span>
<a href="mailto:koobasam@gmail.com">koobasam@gmail.com</a>
<!-- <a href="/cdn-cgi/l/email-protection#1d707c74715d7a707c7471337e7270"><span class="__cf_email__" data-cfemail="0b666a62674b6c666a626725686466">[email protected]</span></a> -->
</p>
</li>
<li>
<p><span>Phone:</span><a href="tel:+256750419166">+256 750 419 166</a></p>
</li>
<li>
<p><span>Study:</span>Makerere Univercity <i>Telecommunications Engineering</i></p>
</li>
<li>
<p><span>Freelance:</span>Available</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /ABOUT -->
<div class="tokyo_tm_portfolio_titles"></div>
<!-- PORTFOLIO -->
<div id="portfolio" class="tokyo_tm_section">
<div class="container">
<div class="tokyo_tm_portfolio">
<div class="tokyo_tm_title">
<div class="title_flex">
<div class="left">
<span>Portfolio</span>
<h3>Full Stack Developer</h3>
</div>
<div class="portfolio_filter">
<ul>
<li><a href="#" class="current" data-filter="*">All</a></li>
<li><a href="#" data-filter=".vimeo">Websites</a></li>
<li><a href="#" data-filter=".youtube">Applications</a></li>
<li><a href="#" data-filter=".soundcloud">Digital Marketing</a></li>
<li><a href="#" data-filter=".image">E-commerce</a></li>
<li><a href="#" data-filter=".detail">Detail</a></li>
</ul>
</div>
</div>
</div>
<div class="list_wrapper">
<ul class="portfolio_list gallery_zoom">
<li class="vimeo">
<div class="inner">
<div class="entry tokyo_tm_portfolio_animation_wrap" data-title="Teresa Butler" data-category="Vimeo">
<a class="popup-vimeo" href="https://vimeo.com/312334044">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main_image" data-img-url="img/portfolio/5.jpg"></div>
</a>
</div>
</div>
</li>
<li class="youtube">
<div class="inner">
<div class="entry tokyo_tm_portfolio_animation_wrap" data-title="Ashley Flores" data-category="Youtube">
<a class="popup-youtube" href="https://www.youtube.com/watch?v=Amq-qlqbjYA">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main_image" data-img-url="img/portfolio/6.jpg"></div>
</a>
</div>
</div>
</li>
<li class="soundcloud">
<div class="inner">
<div class="entry tokyo_tm_portfolio_animation_wrap" data-title="Derek Smith" data-category="Soundcloud">
<a class="soundcloude_link mfp-iframe audio" href="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/252739311&color=%23ff5500&auto_play=true&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main_image" data-img-url="img/portfolio/4.jpg"></div>
</a>
</div>
</div>
</li>
<li class="image">
<div class="inner">
<div class="entry tokyo_tm_portfolio_animation_wrap" data-title="Gloria Jenkins" data-category="Image">
<a class="zoom" href="img/portfolio/3.jpg">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main_image" data-img-url="img/portfolio/3.jpg"></div>
</a>
</div>
</div>
</li>
<li class="detail">
<div class="inner">
<div class="entry tokyo_tm_portfolio_animation_wrap" data-title="Selena Gomez" data-category="Detail">
<a class="popup_info" href="#">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main_image" data-img-url="img/portfolio/7.jpg"></div>
</a>
</div>
</div>
<div class="details_all_wrap">
<div class="popup_details">
<div class="top_image"></div>
<div class="portfolio_main_title"></div>
<div class="main_details">
<div class="textbox">
<p>We live in a world where we need to move quickly and iterate on our ideas as flexibly as possible. Building mockups strikes the ideal balance between true-life representation of the end product and
ease of modification.</p>
<p>Mockups are useful both for the creative phase of the project - for instance when you're trying to figure out your user flows or the proper visual hierarchy - and the production phase when they will
represent the target product. Making mockups a part of your creative and development process allows you to quickly and easily ideate.</p>
</div>
<div class="detailbox">
<ul>
<li>
<span class="first">Client</span>
<span>Alvaro Morata</span>
</li>
<li>
<span class="first">Category</span>
<span><a href="#">Detail</a></span>
</li>
<li>
<span class="first">Date</span>
<span>March 07, 2021</span>
</li>
<li>
<span class="first">Share</span>
<ul class="share">
<li>
<a href="#"><img class="svg" src="img/svg/social/facebook.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/twitter.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/instagram.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/dribbble.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/tik-tok.svg" alt="" /></a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="additional_images">
<ul>
<li>
<div class="list_inner">
<div class="my_image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/1.jpg"></div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="my_image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/2.jpg"></div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="my_image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/3.jpg"></div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</li>
<li class="detail">
<div class="inner">
<div class="entry tokyo_tm_portfolio_animation_wrap" data-title="Ave Simone" data-category="Detail">
<a class="popup_info" href="#">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main_image" data-img-url="img/portfolio/8.jpg"></div>
</a>
</div>
</div>
<div class="details_all_wrap">
<div class="popup_details">
<div class="top_image"></div>
<div class="portfolio_main_title"></div>
<div class="main_details">
<div class="textbox">
<p>We live in a world where we need to move quickly and iterate on our ideas as flexibly as possible. Building mockups strikes the ideal balance between true-life representation of the end product and
ease of modification.</p>
<p>Mockups are useful both for the creative phase of the project - for instance when you're trying to figure out your user flows or the proper visual hierarchy - and the production phase when they will
represent the target product. Making mockups a part of your creative and development process allows you to quickly and easily ideate.</p>
</div>
<div class="detailbox">
<ul>
<li>
<span class="first">Client</span>
<span>Alvaro Morata</span>
</li>
<li>
<span class="first">Category</span>
<span><a href="#">Detail</a></span>
</li>
<li>
<span class="first">Date</span>
<span>March 07, 2021</span>
</li>
<li>
<span class="first">Share</span>
<ul class="share">
<li>
<a href="#"><img class="svg" src="img/svg/social/facebook.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/twitter.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/instagram.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/dribbble.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/tik-tok.svg" alt="" /></a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="additional_images">
<ul>
<li>
<div class="list_inner">
<div class="my_image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/1.jpg"></div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="my_image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/2.jpg"></div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="my_image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/3.jpg"></div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- /PORTFOLIO -->
<!-- NEWS -->
<div id="news" class="tokyo_tm_section">
<div class="container">
<div class="tokyo_tm_news">
<div class="tokyo_tm_title">
<div class="title_flex">
<div class="left">
<span>News</span>
<h3>Latest News</h3>
</div>
</div>
</div>
<ul>
<li>
<div class="list_inner">
<div class="image">
<img src="img/thumbs/4-3.jpg" alt="" />
<div class="main" data-img-url="img/news/1.jpg"></div>
<a class="tokyo_tm_full_link" href="#"></a>
</div>
<div class="details">
<div class="extra">
<div class="short">
<p class="date">By <a href="#">Alex Watson</a> <span>05 April 2021</span></p>
</div>
<div class="my_like">
<a href="#"><img class="svg" src="img/svg/like.svg" alt="" /><span>35</span></a>
</div>
</div>
<h3 class="title"><a href="#">Format releases a new tool that enables direct video hosting</a></h3>
<div class="tokyo_tm_read_more">
<a href="#"><span>Read More</span></a>
</div>
</div>
<div class="main_content">
<div class="descriptions">
<p class="bigger">Just because we can't get out and about like we normally would, doesn’t mean we have to stop taking pictures. There’s still plenty you can do, provided you're prepared to use some imagination. Here are a
few ideas to keep you shooting until normal life resumes.</p>
<p>Most photographers love to shoot the unusual, and you don’t get much more unusual than These Unprecedented Times. Right now everything counts as out of the ordinary. There are a number of remarkable things
about these lockdown days that are worth photographing now so we can remember them when it is all over.</p>
<p>Streets empty that are usually busy are remarkable and can evoke the sense of historical pictures from before the invention of the motorcar. Other things that are different at the moment will be queues to
get into stores and the lines marked out on the floor to show how far apart we should be.</p>
<div class="quotebox">
<div class="icon">
<img class="svg" src="img/svg/quote.svg" alt="" />
</div>
<p>Most photographers find it hard to see interesting pictures in places in which they are most familiar. A trip somewhere new seems always exactly what our photography needed, as shooting away from home
consistently inspires us to new artistic heights.</p>
</div>
<p>Pretend everything is new and that you haven’t seen it before, and then you will be free to notice the leading lines, the places where one edge meets another in delightful geometric harmony, and how the
ordinary things in the kitchen are transformed when the light is on or off.</p>
<p>The trick here is to look slowly, and then look again. Take the time to look in detail and to look at the same thing from different angles, with different light, long lenses and wide lenses. Then move to
the left a bit. You may never feel the need to leave the house again.</p>
</div>
<div class="news_share">
<span>Share:</span>
<ul>
<li>
<a href="#"><img class="svg" src="img/svg/social/facebook.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/twitter.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/instagram.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/dribbble.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/tik-tok.svg" alt="" /></a>
</li>
</ul>
</div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="image">
<img src="img/thumbs/4-3.jpg" alt="" />
<div class="main" data-img-url="img/news/2.jpg"></div>
<a class="tokyo_tm_full_link" href="#"></a>
</div>
<div class="details">
<div class="extra">
<div class="short">
<p class="date">By <a href="#">Brook Kennedy</a> <span>22 March 2021</span></p>
</div>
<div class="my_like">
<a href="#"><img class="svg" src="img/svg/like.svg" alt="" /><span>47</span></a>
</div>
</div>
<h3 class="title"><a href="#">Sony announced two new full frame cameras with zero fanfare</a></h3>
<div class="tokyo_tm_read_more">
<a href="#"><span>Read More</span></a>
</div>
</div>
<div class="main_content">
<div class="descriptions">
<p class="bigger">Just because we can't get out and about like we normally would, doesn’t mean we have to stop taking pictures. There’s still plenty you can do, provided you're prepared to use some imagination. Here are a
few ideas to keep you shooting until normal life resumes.</p>
<p>Most photographers love to shoot the unusual, and you don’t get much more unusual than These Unprecedented Times. Right now everything counts as out of the ordinary. There are a number of remarkable things
about these lockdown days that are worth photographing now so we can remember them when it is all over.</p>
<p>Streets empty that are usually busy are remarkable and can evoke the sense of historical pictures from before the invention of the motorcar. Other things that are different at the moment will be queues to
get into stores and the lines marked out on the floor to show how far apart we should be.</p>
<div class="quotebox">
<div class="icon">
<img class="svg" src="img/svg/quote.svg" alt="" />
</div>
<p>Most photographers find it hard to see interesting pictures in places in which they are most familiar. A trip somewhere new seems always exactly what our photography needed, as shooting away from home
consistently inspires us to new artistic heights.</p>
</div>
<p>Pretend everything is new and that you haven’t seen it before, and then you will be free to notice the leading lines, the places where one edge meets another in delightful geometric harmony, and how the
ordinary things in the kitchen are transformed when the light is on or off.</p>
<p>The trick here is to look slowly, and then look again. Take the time to look in detail and to look at the same thing from different angles, with different light, long lenses and wide lenses. Then move to
the left a bit. You may never feel the need to leave the house again.</p>
</div>
<div class="news_share">
<span>Share:</span>
<ul>
<li>
<a href="#"><img class="svg" src="img/svg/social/facebook.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/twitter.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/instagram.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/dribbble.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/tik-tok.svg" alt="" /></a>
</li>
</ul>
</div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="image">
<img src="img/thumbs/4-3.jpg" alt="" />
<div class="main" data-img-url="img/news/3.jpg"></div>
<a class="tokyo_tm_full_link" href="#"></a>
</div>
<div class="details">
<div class="extra">
<div class="short">
<p class="date">By <a href="#">Paola Atkins</a> <span>15 Feb 2021</span></p>
</div>
<div class="my_like">
<a href="#"><img class="svg" src="img/svg/like.svg" alt="" /><span>22</span></a>
</div>
</div>
<h3 class="title"><a href="#">Why every photographer should shoot film, even in 2021</a></h3>
<div class="tokyo_tm_read_more">
<a href="#"><span>Read More</span></a>
</div>
</div>
<div class="main_content">
<div class="descriptions">
<p class="bigger">Just because we can't get out and about like we normally would, doesn’t mean we have to stop taking pictures. There’s still plenty you can do, provided you're prepared to use some imagination. Here are a
few ideas to keep you shooting until normal life resumes.</p>
<p>Most photographers love to shoot the unusual, and you don’t get much more unusual than These Unprecedented Times. Right now everything counts as out of the ordinary. There are a number of remarkable things
about these lockdown days that are worth photographing now so we can remember them when it is all over.</p>
<p>Streets empty that are usually busy are remarkable and can evoke the sense of historical pictures from before the invention of the motorcar. Other things that are different at the moment will be queues to
get into stores and the lines marked out on the floor to show how far apart we should be.</p>
<div class="quotebox">
<div class="icon">
<img class="svg" src="img/svg/quote.svg" alt="" />
</div>
<p>Most photographers find it hard to see interesting pictures in places in which they are most familiar. A trip somewhere new seems always exactly what our photography needed, as shooting away from home
consistently inspires us to new artistic heights.</p>
</div>
<p>Pretend everything is new and that you haven’t seen it before, and then you will be free to notice the leading lines, the places where one edge meets another in delightful geometric harmony, and how the
ordinary things in the kitchen are transformed when the light is on or off.</p>
<p>The trick here is to look slowly, and then look again. Take the time to look in detail and to look at the same thing from different angles, with different light, long lenses and wide lenses. Then move to
the left a bit. You may never feel the need to leave the house again.</p>
</div>
<div class="news_share">
<span>Share:</span>
<ul>
<li>
<a href="#"><img class="svg" src="img/svg/social/facebook.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/twitter.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/instagram.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/dribbble.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/tik-tok.svg" alt="" /></a>
</li>
</ul>
</div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="image">
<img src="img/thumbs/4-3.jpg" alt="" />
<div class="main" data-img-url="img/news/4.jpg"></div>
<a class="tokyo_tm_full_link" href="#"></a>
</div>
<div class="details">
<div class="extra">
<div class="short">
<p class="date">By <a href="#">Kevin Stone</a> <span>22 Jan 2021</span></p>
</div>
<div class="my_like">
<a href="#"><img class="svg" src="img/svg/like.svg" alt="" /><span>16</span></a>
</div>
</div>
<h3 class="title"><a href="#">Stay creative in lockdown with these fun photo projects</a></h3>
<div class="tokyo_tm_read_more">
<a href="#"><span>Read More</span></a>
</div>
</div>
<div class="main_content">
<div class="descriptions">
<p class="bigger">Just because we can't get out and about like we normally would, doesn’t mean we have to stop taking pictures. There’s still plenty you can do, provided you're prepared to use some imagination. Here are a
few ideas to keep you shooting until normal life resumes.</p>
<p>Most photographers love to shoot the unusual, and you don’t get much more unusual than These Unprecedented Times. Right now everything counts as out of the ordinary. There are a number of remarkable things
about these lockdown days that are worth photographing now so we can remember them when it is all over.</p>
<p>Streets empty that are usually busy are remarkable and can evoke the sense of historical pictures from before the invention of the motorcar. Other things that are different at the moment will be queues to
get into stores and the lines marked out on the floor to show how far apart we should be.</p>
<div class="quotebox">
<div class="icon">
<img class="svg" src="img/svg/quote.svg" alt="" />
</div>
<p>Most photographers find it hard to see interesting pictures in places in which they are most familiar. A trip somewhere new seems always exactly what our photography needed, as shooting away from home
consistently inspires us to new artistic heights.</p>
</div>
<p>Pretend everything is new and that you haven’t seen it before, and then you will be free to notice the leading lines, the places where one edge meets another in delightful geometric harmony, and how the
ordinary things in the kitchen are transformed when the light is on or off.</p>
<p>The trick here is to look slowly, and then look again. Take the time to look in detail and to look at the same thing from different angles, with different light, long lenses and wide lenses. Then move to
the left a bit. You may never feel the need to leave the house again.</p>
</div>
<div class="news_share">
<span>Share:</span>
<ul>
<li>
<a href="#"><img class="svg" src="img/svg/social/facebook.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/twitter.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/instagram.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/dribbble.svg" alt="" /></a>
</li>
<li>
<a href="#"><img class="svg" src="img/svg/social/tik-tok.svg" alt="" /></a>
</li>
</ul>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
<!-- /NEWS -->
<!-- CONTACT -->
<div id="contact" class="tokyo_tm_section">
<div class="container">
<div class="tokyo_tm_contact">
<div class="tokyo_tm_title">
<div class="title_flex">
<div class="left">
<span>Contact</span>
<h3>Get in Touch</h3>
</div>
</div>
</div>
<div class="map_wrap">
<div class="map" id="ieatmaps"></div>
</div>
<div class="fields">
<form action="/" method="post" class="contact_form" id="contact_form" autocomplete="off">
<div class="returnmessage" data-success="Your message has been received, We will contact you soon."></div>
<div class="empty_notice"><span>Please Fill Required Fields</span></div>
<div class="first">
<ul>
<li>
<input id="name" type="text" placeholder="Name">
</li>
<li>
<input id="email" type="text" placeholder="Email">
</li>
</ul>
</div>
<div class="last">
<textarea id="message" placeholder="Message"></textarea>
</div>
<div class="tokyo_tm_button" data-position="left">
<a id="send_message" href="#">
<span>Send Message</span>
</a>
</div>
<!-- If you want to change mail address to yours, please open modal.php and go to line 4 -->
</form>
</div>
</div>
</div>
</div>
<!-- /CONTACT -->
</div>
</div>
<!-- /RIGHTPART -->
<!-- CURSOR -->
<div class="mouse-cursor cursor-outer"></div>
<div class="mouse-cursor cursor-inner"></div>
<!-- /CURSOR -->
</div>
<!-- / WRAPPER ALL -->
<!-- SCRIPTS -->
<script data-cfasync="false" src="js/email-decode.min.js"></script>
<script src="js/jquery.js"></script>
<!--[if lt IE 10]> <script type="text/javascript" src="js/ie8.js"></script> <![endif]-->
<script src="js/plugins.js"></script>
<script src="js/init.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyA5bpEs3xlB8vhxNFErwoo3MXR64uavf6Y&callback=initMap"></script>
<!-- /SCRIPTS -->
</body>
</html>