-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (54 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>About Me</title>
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header>
<div class="wrapper">
<div class="largeName"> Simeon Utubor </div>
<div class="navButton">
<a href="contact.html"> Contact </a>
</div>
<div class="navButton">
<a href="portfolio.html"> Portfolio </a>
</div>
<div class="navButton">
<a href="index.html"> About </a>
</div>
</div>
</header>
<div class="mainWrapper">
<section>
<h2> About Me </h2>
<hr>
<img src="assets/images/simeon.jpg" class="profilePic">
<p>
Hello my name is Simeon Utubor, and I am a Network Security specialist, and an aspiring full stack web developer. I am interested in building professional and unique web content for all kinds of verticals. My core current core competency is in network engineering, but I'm actively working to build my web development skill sets.
When not building network security or websites, I enjoy playing sports (soccer, football), and experiencing the world with my family.
</p>
</section>
<aside>
<h3> Connect with Me </h3>
<hr>
<div>
<a href="https://github.com/simeon411">
<img src="assets/images/github.png" class=imgBox>
</a>
<a href="https://www.linkedin.com/in/simeon-utubor-43b870142/">
<img src="assets/images/linkedin.svg" class=imgBox>
</a>
<a href="https://stackoverflow.com/users/8087787/simeon-utubor">
<img src="assets/images/stackoverflow.svg" class=imgBox>
</a>
</div>
</aside>
</div>
<footer>
<h5> Copyright 2017 Simeon Utubor </h5>
</footer>
</body>
</html>