-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
136 lines (123 loc) · 4.41 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!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" />
<title>My Portfolio</title>
</head>
<body>
<header id="header">
<div id="header__img">
<img src="./images/sign.png" id="logo__img" />
</div>
<nav id="navbar">
<a href="#welcome-section">Home</a>
<a href="#projects">Project</a>
<a href="#">About</a>
<a href="#Contact">Contact</a>
</nav>
</header>
<main>
<section id="welcome-section">
<img src="./images/dev.png" id="dev__img" />
<div class="section__content">
<h3>Hi there! i'm</h3>
<h1>Owoyemi Idris,a Senior Web Developer based in Ilorin, Nigeria</h1>
<p>
I bridge the gap between business goals and human needs, using my
curiosity to discover valuable insights while craeting extensively
thought-out website for user interface and experiences.
</p>
<button>LEARN MORE</button>
</div>
<img src="./images/means.png" id="dev__img2" />
</section>
<section id="projects">
<h2>Projects</h2>
<div class="project-tile">
<a
href="https://codepen.io/halfboyfriend/pen/JjLJaXm"
target="_blank"
>
<img src="./images/tribute.jpg" id="project__img" />
<figcaption>Tribute Page</figcaption>
</a>
<a
href="https://codepen.io/halfboyfriend/pen/poLwOrW"
target="_blank"
>
<img src="./images/wiki.png" id="project__img" />
<figcaption>Wiki Form</figcaption>
</a>
<a
href="https://codepen.io/halfboyfriend/pen/NWYgLxr"
target="_blank"
>
<img src="./images/random-quote-machine.png" id="project__img" />
<figcaption>Tribute Page</figcaption>
</a>
<a
href="https://codepen.io/halfboyfriend/pen/yLKXxNX"
target="_blank"
>
<img src="./images/calc.png" id="project__img" />
<figcaption>Calculator</figcaption>
</a>
<a
href="https://codepen.io/halfboyfriend/pen/eYMRLme"
target="_blank"
>
<img src="./images/tic-tac-toe.png" id="project__img" />
<figcaption>Tic-Tac-Toe</figcaption>
</a>
<a
href="https://codepen.io/halfboyfriend/details/OJvOpaL"
target="_blank"
>
<img src="./images/indo.png" id="project__img" />
<figcaption>Indo Blockchain</figcaption>
</a>
</div>
</section>
<section id="Contact">
<h1 id="cont_txt">Let's work together...</h1>
<h3 id="cont_txt2">You can join me on...</h3>
<div id="media">
<a href="https://www.facebook.com/owoyemiidris.olamilekan">
<img
src="./images/square-facebook-brands.svg"
id="media_icon"
/>Facebook</a
>
<a href="https://github.com/Halfboyfriend">
<img src="./images/github-brands.svg" id="media_icon" />Github</a
>
<a href="mailto:[email protected]">
<img src="./images/at-solid.svg" id="media_icon" />Mail</a
>
<a
href="https://twitter.com/Owoyemi34752109/status/1549395906218397698?t=NSTdQf0GvCC9TuJrPiKVYw&s=19"
>
<img src="./images/twitter-brands.svg" id="media_icon" />Twitter</a
>
<a href="tel:8170585143">
<img src="./images/phone-volume-solid.svg" id="media_icon" />Call</a
>
</div>
</section>
</main>
<hr />
<footer id="footer">
<div id="foot">© Created By Owoyemi. All rights reserved 2022.</div>
<div>
<p id="foot_txt">
DISCLAIMER: This project was created by me after successfully
completing my responsive website on FCC with the duration of 7 weeks
which serves as a means to obtain my certificate.
</p>
</div>
</footer>
</body>
</html>