-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
144 lines (136 loc) · 4.15 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
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>SCA Portfolio</title>
</head>
<body>
<header id="top">
<div class="container">
<div class="header">
<div class="navbar">
<ul>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
<a href="#portfolio">Portfolio</a>
</div>
</ul>
<!-- Home -->
<div class="head-content" id="home" id="top">
<img src="/images/Me.jpg" height="300px" width="300px" alt="Busayo Ojo">
<p class="name">Busayo Ojo</p>
<p class="desc">Frontend Web Developer</p>
</header>
</div>
</div>
<!-- About Section -->
<br>
<div class="about-section" id="about">
<h2>About</h2>
<p><b>Hi,</b> <br>
i'm <b>Busayo Ojo</b> a frontend developer and a Computer Engineer based in <b>Lagos, Nigeria</b>.
<br>
When not in front of my laptop coding you can catch me with my headphones plugged in lost away in the music. I have beginners knowledge in the following languages:</p>
<img id="skills" src="/images/Html.png" alt="html image">
<img id="skills" src="/images/Css.png" alt="css image">
<div>
</div>
</div>
<br>
<!-- Contact section -->
<div class="contact-section" id="contact">
<div class="sm_icon">
<ul class="sm_icon">
<li>
<a
href="https://www.instagram.com/Jemimabus"
target="”_blank”"
>
<img
src="/images/Instagram.jpg"
alt="Instagram"
class="sm_icon"
/>
</a>
</li>
<li>
<a href="https://github.com/Busayo-ojo" target="”_blank”">
<img
src="/images/Github.png"
alt="github"
class="sm_icon"
/>
</a>
</li>
<li>
<a
href="https://twitter.com/oluwaboosayo"
target="”_blank”"
>
<img
src="/images/Twitter.png"
alt="twitter"
class="sm_icon"
/>
</a>
</li>
</ul>
<button class="btn"><a href="#top">Top</a></button>
</div>
<!-- Contact Form -->
<h2>Let's Talk Further</h2>
<ul class="form-style-1">
<li><label>Full Name <span class="required">*
</span></label><input type="text" name="field1" class="field-divided" placeholder="First" />
<input type="text" name="field2" class="field-divided" placeholder="Last" /></li>
<li>
<label>Email <span class="required">*</span></label>
<input type="email" name="field3" class="field-long" placeholder="@Email" />
</li>
<li>
<label>Subject</label>
<select name="field4" class="field-select">
<option value="Job Opportunity">Job Opportunity</option>
<option value="Questions">Questions</option>
</select>
</li>
<li>
<label>Your Message <span class="required">*</span></label>
<textarea name="field5" id="field5" class="field-long field-textarea"></textarea>
</li>
<li>
<input type="submit" value="Submit" />
</li>
</ul>
</form>
<!-- Projects -->
<br>
<div id="portfolio">
<h1 class="work-title">Projects</h1>
<div class="container">
<div class="works">
<div class="work">
<img
src="/images/macoms coffee.png"
alt="photography"
class="work-img"
/>
<h3>Macoms coffee</h3>
<p>This is a template portfolio for a coffee company that i made. It shows the different brands of coffe available in Macoms coffe shop </p>
<p><span>Languages Used</span>: HTML, CSS.</p>
<a href="https://Netlify.com//Busayo-ojo" target="”_blank”"
>Netlify</a
>
</div>
</div>
<footer class="footer">
<div>©Copyright Busayo Ojo
<br>
2020 | All rights Reserved</div>
</footer>
</div>
</body>
</html>