-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (55 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="styles.css">
<!-- style
<style>
p {
color: green;
font-size: 18px;
}
</style>
-->
</head>
<body>
<header>
<h1>Welcome to My portfolio Page</h1>
<p>A showcase of my skills and projects</p>
</header>
<nav>
<ul>
<li><a href="index.html">Home Page</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<section>
<h2>About Me</h2>
<p>Hi! My name is Chidera Ojimba, I am a student of altschool Africa, passionate about web development, software programming and cloud engineering.</p>
</section>
<section>
<h2>WHY I JOINED THE PROGRAM</h2>
<p style="color: blue; font-size: 16px;">This is an inline-styled paragraph.</p>
<P>The reason why I joined the program is to be a software programmer using these programming concepts:</P>
<ol>
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
<li>Python</li>
<li>Git and Linux</li>
</ol>
<h2>MY GOALS </h2>
<ul>
<li>To become a certified cloud engineering and devops engineer</li>
<li>To start a career in tech world</li>
</ul>
</section>
<p><a href="#Top">Back to top</a></p>
</main>
<p><strong>Alt school ID:</strong>ALT/SOE/024/4897</p>
</body>
</html>