-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (95 loc) · 3.33 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
<!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="css/style.css" />
<link rel="stylesheet" href="css/about.css" />
<script
src="https://kit.fontawesome.com/ea3c29a0fe.js"
crossorigin="anonymous"
></script>
<title>About</title>
</head>
<body>
<header class="header">
<a href="index.html" id="logo-id"><Grand/></a>
<input class="side-menu" type="checkbox" id="side-menu" />
<label class="hamb" for="side-menu"
><span class="hamb-line"></span
></label>
<nav class="nav">
<ul class="nav-links">
<li><a href="index.html">About Me</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="reg.html">Register</a></li>
<li id="box"><a href="login.html">Login</a></li>
</ul>
</nav>
</header>
<main>
<div class="hero">
<div class="info">
<h1>
Hi,<br />
I'm <span id="name">Avuwakeoghene</span> Okpaka.
</h1>
<p class="nick-name">You can call me <span class="avos">Avos</span>.</p>
<p class="desc">
I'm a creative frontend web developer.<br />
Skilled in crafting web pages for both desktop and mobile browsers.
</p>
</div>
<div class="pic">
<img id="photo" src="img/My project.jpg" alt="photo of Avos" />
</div>
</div>
<section>
<h2>My Notables</h2>
<hr />
<ol>
<li>
<h3><span>Priorities</span><span class="curly"> {</span></h3>
<ul>
<li>Family</li>
<li>Career</li>
<li>Friends</li>
</ul>
<h3 class="curly">}</h3>
</li>
<li>
<h3><span>Skillset</span><span class="curly"> {</span></h3>
<ul>
<li>Programming</li>
<li>UI Design</li>
<li>Research</li>
</ul>
<h3 class="curly">}</h3>
</li>
<li>
<h3><span>Hobbies</span><span class="curly"> {</span></h3>
<ul>
<li>Good Food</li>
<li>Football</li>
<li>Swimming</li>
</ul>
<h3 class="curly">}</h3>
</li>
</ol>
</section>
<div class="big-btn"><a href="contact.html">Contact Me</a></div>
</main>
<footer>
<div class="company">
<p>All Rights Reserved © Grand 2022</p>
</div>
<div class="socials">
<a class="icons" href="https://twitter.com/AvusKing" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-twitter-square"></i></a>
<i class="fa-brands fa-whatsapp-square"></i>
<a class="icons" href="https://dribbble.com/3_Trees" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-dribbble-square"></i></a>
<a class="icons" href="https://github.com/Avu0s" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-github-square"></i></a>
</div>
</footer>
</body>
</html>