-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (88 loc) · 3.6 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>About Me</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="mylogo.png" rel="icon" type="icon/img/png">
</head>
<body>
<header>
<nav>
<div class="brandSection">
<img src="mylogo.png" alt="logo" class="logo">
<h1 id="brandName">VERIKE</h1>
</div>
</nav>
<nav>
<ul>
<li class="navclass"><a href="#">About Me</a></li>
<li class="navclass"><a href="index(signup).html">Sign Up</a></li>
<li class="navclass"><a href="index(signin).html">Sign In</a></li>
<li class="navclass"><a href="index(contact).html">Contact Me</a></li>
</ul>
</nav>
</header>
<main id="aboutmain">
<div>
<figure class="img-section">
<img src="myPicture.jpg" class="image" type="img/jpg" alt="victorerike">
<figcaption class="img-caption">
<h2>Victor Erike</h2>
</figcaption>
</figure>
</div>
<div class="me">
<div class="aboutme">
<h2>About Me</h2>
<p>I'm a graduate in review from Nnamdi Azikiwe University, majored in Electrical and Electronics Technology, under the faulty of Education.<br>
I'm a growth-driven person, I believe there's an endless state of possibilities in this world of technology, <br>
I'm always inspired by the ideas I visualize and work towards achieving through my constant hunger for development in my tech career journey.</p>
</div>
<br><br>
<div class="hobbies">
<h2>My Hobbies</h2>
<p>Okay so, here's my very short list; </p>
<ul>
<li>I love playing basketball.</li>
<li>I love swimming, not perfect but, I could swim to save my life, Lol...</li>
<li>I love cycling.</li>
<li>Playing video games.</li>
<li>Recently added reading to the list.</li>
</ul>
</div>
<div class="priorities">
<h2>My Priorities</h2>
<ul>
<li>Developing a great mindset.</li>
<li>Building a system for passive income.</li>
<li>Impacting priceless value in people.</li>
<li>Transmute gaming experiences to reality.</li>
<li>Travel the world, explore other cultures, broaden my horizon.</li>
<li>Always give glory to God for my little winnings.</li>
</ul>
</div>
<div class="skills">
<h2>My Skills</h2>
<ul>
<li>Java.</li>
<li>HTML.</li>
<li>CSS.</li>
<li>Video Editing.</li>
<li>C programming.</li>
<li>Cctv Installation.</li>
<li>Solar System Installation and Maintenance.</li>
<li>CBE ISP Configuration and Installation.</li>
</ul>
</div>
</div>
<br><br>
<div class="contactbtn">
<button><a href="index(contact).html">Contact Me</a></button>
</div>
</main>
<footer>
<p class="markT"><small>©Regal Group 2022</small></p>
</footer>
</html>