-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (59 loc) · 2.63 KB
/
index.html
File metadata and controls
59 lines (59 loc) · 2.63 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
</head>
<body>
<!-- Header -->
<header>
<h1>My Altschool assignment</h1>
<nav>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./form.html">sign-up</a></li>
</ul>
</nav>
</header>
<main>
<!-- Alt school Details -->
<section>
<h3>Name: Ochulor Freedom</h3>
<h3>ID: ALT/SOE/023/2045</h3>
</section>
<article>
<!-- Personal background -->
<section>
<h2>A brief Background</h2>
<p>Hey, I'm Ochulor Freedom currently an undergradute of the University of Nigeria, Nsukka and also co-lead of altschool circle 12.I do love to play chess as it encourages me to think a lot though i'm also a practical person.Here is my favorite quote </p>
<blockquote>
...to learn and not to do is really not to learn. To know and not to do is really not to know.
<cite> -Stephen R. Covey</cite>
</blockquote>
</section>
<!-- Reasons -->
<section>
<h2>Reasons for Joining Altschool</h2>
<p>As many might know, the obvious reason why most people get into tech nowadays is to get a job and earn money but mine is more than that. Don't get me wrong, i'm also in for the money, i mean who isn't? but I have a thing for problem solving and that is mostly why i got into tech. I believe altschool is the perfect platform for me that will help me transition into this journey.</p>
</section>
<!-- Things i aim to achieve -->
<section>
<h2>What I plan to achieve with Altschool</h2>
<p>Below are the things i plan on achieving with altschool:</p>
<ul>
<li>Improve my social skills by interacting more with collegues</li>
<li>Break into the tech industry and start making money</li>
<li>Learn how it is to be in an actual working environment</li>
<li>Post my achievements above by actually graduating</li>
</ul>
</section>
</article>
<!-- Little paragraph in the end -->
<p>Want to know more? <a href="./form.html">Sign up</a></p>
</main>
<footer>
©Ochulor Freedom, 2020.
</footer>
</body>
</html>