-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (115 loc) · 4.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- scripts -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.8/css/all.css" integrity="sha384-3AB7yXWz4OeoZcPbieVW64vVXEwADiYyAEhwilzWsLw+9FgqpyjjStpPnpBO8o8S" crossorigin="anonymous">
<!-- stylesheets -->
<link rel="stylesheet" href="fontawesome-all.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Israel Michal Akpan</title>
</head>
<body>
<div id="app">
<!-- Navigation -->
<div id="nav">
<ul>
<li><a href="#about_me">about me</a></li>
<li><a href="#skills">skills</a></li>
<li><a href="#my_works">my works</a></li>
<li><a href="#contact_me">contact me</a></li>
</ul>
</div>
<!-- Background -->
<div id="bg_">
<div class="bg_content">
<h6>you're welcome</h6>
<h3>i'm israel michael akpan</h3>
<p>frontend developer</p>
</div>
</div>
<!-- About me -->
<div id="about_me">
<div class="content">
<p>Hi, I'm Israel Michael Akpan, Web developer and FrontEnd Designer from Nigeria</p>
<p>
I enjoy creating beautiful & functional websites. I am passoniate about Frontend development.
Have always been drawn to the overlap between design and development.
</p>
<p>
Frontend Development empowers me to visualize and deduce solutions in solving problems.
</p>
</div>
<div class="image"></div>
</div>
<!-- My skills -->
<div id="skills">
<p>Worked with the following web technologies</p>
<div class="tech">
<div class="image html"></div>
<p>HTML</p>
</div>
<div class="tech">
<div class="image css"></div>
<p>CSS</p>
</div>
<div class="tech">
<div class="image js"></div>
<p>Javascript</p>
</div>
<div class="tech">
<div class="image jquery"></div>
<p>Jquery</p>
</div>
<div class="tech">
<div class="image php"></div>
<p>PHP</p>
</div>
<div class="tech">
<div class="image bs"></div>
<p>Bootstrap</p>
</div>
<div class="tech">
<div class="image git"></div>
<p>Git</p>
</div>
</div>
<!-- my works -->
<div id="my_works">
<p>my work</p>
<div class="firstWk">
<div class="imageWk"></div>
<div class="about">
<p><a href="http://www.spleet.ng">Spleet.ng</a></p>
<p>
SPLEET is a service concept solution that provides Furnished Living Spaces, Flexible lease options and Caters to a wide range of customers.
</p>
</div>
</div>
</div>
<!-- contact me -->
<div id="contact_me">
<p>contact me</p>
<div class="links">
<ul>
<li><p>Facebook</p><a href="https://www/facebook.com/Tagximum">Facebook connect</a></li>
<li><p>Email</p><a href="mailto:[email protected]">Write to me.</a></li>
<li><p>Github</p><a href="http://github.com/koofng">Koofng</a></li>
</ul>
</div>
</div>
</div>
<script>
$(document).on('click', 'a[href^="#"]', function (event) {
event.preventDefault();
$('html, body').animate({
scrollTop: $($.attr(this, 'href')).offset().top
}, 1000);
});
</script>
</body>
</html>