-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (110 loc) · 4.13 KB
/
index.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
<!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">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="../../../fontawesome/css/all.min.css">
<title>Portfolio Website</title>
</head>
<body>
<!-- Styling the header, navbar and menu -->
<header>
<div class="logo">
<div>♣</div>
<div>Juskins.</div>
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#about-me">About</a></li>
<li><a href="contact.html" target="_blank">Contact</a></li>
<li><a href="#services">Services</a></li>
</ul>
</nav>
<div class="right-icons">
<div>⛅</div>
<div><a href="projects.html" target="_blank">Project</a></div>
</div>
</header>
<!-- Styling the hero section -->
<main>
<div class="left-main-content">
<small>-- MY NAME IS</small>
<h2>Omojuwa <span>Juskins.</span></h2>
<p>Creative front-end developer with more than +5 years of experience in
enterprise compsnies and startups.
Proficient in Javascript, Angular and React. Pasionate about UI/UX</p>
<div class="social-icons">
<i class="fab fa-instagram"></i>
<i class="fab fa-facebook"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-linkedin-in"></i>
</div>
</div>
<div class="right-main-content">
<div class="back-card"></div>
<div class="front-card"><img src="Images/1633305064752.jpg" width="100%" alt=""></div>
</div>
</main>
<!-- Styling my services section -->
<section class="first-section" id="services">
<small>SERVICES</small>
<h2>Specialized in</h2>
<div class="services-card">
<div class="first-card">
<i class="fas fa-palette"></i>
<h3>UI/UX Design</h3>
<p>Turns what you have in mind of a digital product into reality.
For any platform you consider </p>
</div>
<div class="first-card">
<i class="fas fa-layer-group"></i>
<h3>Application Development</h3>
<p>Standard designing, building
and implementing your applications with documentation </p>
</div>
<div class="first-card">
<i class="fas fa-globe"></i>
<h3>Web Development</h3>
<p>Create and maintain your websites and also
take care of its performance
and traffic capacity
</p>
</div>
</div>
</section>
<h1 class="h1">ABOUT ME</h1>
<!-- Styling my about page -->
<section class="about-me" id="about-me">
<div class="img">
</div>
<div class="about-me-content">
<h1>Who am I?</h1>
<p>I am Omojuwa Babatunde Omojuwa a front-end developer currently
studying Computer Engineering in the Federal University Of Akure.</h2>
<p>Omojuwa Babatunde is a design-oriented
front-end developer. He strives to build immersive and beautiful web applications
through carefully crafted code and user-centric design
</p><br>
<h2>My Hobbies are:</h2>
<ul>
<li>Reading Books</li>
<li>Coding</li>
<li>Listening to Music</li>
<li>Playing and watching Football</li>
</ul>
</div>
</section>
<footer>
<div class="footer">
<i class="fab fa-instagram"></i>
<i class="fab fa-facebook"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-linkedin-in"></i>
</div>
</footer>
<div class="small">© 2022 Copyright: Omojuwa Babatunde</div>
</body>
</html>