-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathportfolio.html
63 lines (63 loc) · 2.52 KB
/
portfolio.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
<!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">
<title>Personal Portfolio</title>
<link rel="stylesheet" href="styles.css" type="text/css">
<link rel="icon" href="/images/eugene-golovesov-1u8ff0i21ao-unsplash.jpg" type="x/icon">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#about me">About Me</a></li>
<li><a href="#work experience">Work Experiences</a></li>
<li><a href="#contact me">Contact Me</a></li>
</ul>
</nav>
</header>
<main>
<hr>
<article>
<h1>MBUME CHINUAOGU WILFRED</h1>
<P>Aspiring Front End Web Developer</P>
<!--semantic elements give more meaning to your documents but are not displayed on the webpage text-->
<img src="IMG-20220123-WA0237.jpg" alt="a photo of Mbume Wilfred">
<section>
<h2 id="about me">About Me</h2>
<p>I am Currently A student of Medical Physiology at the University of Nigeria Nsukka. I started my coding journey at the end of asuu strike and its been a wonderful experience.</p>
<h3>Likes</h3>
<ul>
<li>Problem Solving</li>
<li>Traveling</li>
<li>Deep Analytics</li>
<li>Surfing the net</li>
<li>Nature and outdoors</li>
</ul>
<h3>Dislikes</h3>
<ol>
<li>Hostility</li>
<li>Horror</li>
<li>Boredom</li>
</ol>
</section>
<hr>
<section>
<h2 id="work experience"> Work Experience</h2>
<p>Lorem ipsum dolor sit amet , pariatur, atque incidunt soluta libero, amet doloribus ipsam labore quas beatae quod delectus fuga dolorum optio corrupti dolor sapiente deserunt!</p>
</section>
<hr>
<section>
<h2 id="contact me">Contact Me</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Asperiores voluptas provident quisquam. Accusantium tenetur molestiae rem, vero dolorum tempore nesciunt in ratione, corrupti aut architecto dicta quis perspiciatis hic eius.</p>
</section>
</article>
</main>
<hr>
<footer>
<p>Copyright © Mbume Wilfred</p>
</footer>
</body>
</html>