forked from Jay-davisphem/Frontend-Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 1.2 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
<!doctype html>
<html>
<head>
<title>Oluwafemi's Porfolio</title>
<link rel='stylesheet' type='text/css' href='css/styles.css'
</head>
<body>
<header>
<img srcset="assets/images/myimg11.jpg 400w,
assets/images/myimg11.png 480w"
sizes="(max-width: 1200px) 400px, 480px"
src="assets/images/myimg11.jpg"
alt='author profile picture'>
<p>Hi, my name is David Oluwafemi. I am a Data Scientist and a passionate Web developer. I presently study Computer Engineering at Obafemi Awolowo University, Nigeria</p>
</header>
<main>
<section class='fin-projects'>
<h1>My finished Projects</h1>
<section>
<h3>Simple Mozzila Website</h3>
<p>I just made this during my early days with HTML, it quite <span>simple</span></p>
<button><a href="simple_moz_web/moz-web.html">Simple Mozzilla Website</a></button>
</section>
<section>
<h3>Guessing Game</h3>
<p>Guesses a number between 1-100 with some small functionalities</p>
<button><a href="guessing_game/guess.html">Guessing Game</a></button>
</section>
</section>
</main>
</body>
</html>