-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment1.html
More file actions
46 lines (43 loc) · 1.25 KB
/
Assignment1.html
File metadata and controls
46 lines (43 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Assignment 1</title>
</head>
<body>
<h2>Assignment 1</h2>
<nav>
<p>Navigation MENU</p>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#projects">Projects</a>
</nav>
<div>
<h3 id="home">Home</h3>
<p>This is a an introductional website for the power learn project. The module being learned is: Website Development</p>
</div>
<div>
<h3 id="projects">Projects</h3>
<ul style="list-style-type:circle">
<li>HTML Links & Images</li>
<li>HTML Forms</li>
<li>Intro to Css</li>
<li>Personal Portfolio Website</li>
<li>Reponsive To Do List App</li>
</ul>
</div>
<div>
<h3 id="about">About</h3>
<p>This is published by <strong>Prince Benedict Wachira</strong></p>
<p>
<ul>
<pre>You can find me on:
<li>X <a href="https://twitter.com/bx2lee">@bx2lee</a></li>
<li>Github <a href="https://github.com/ordo-chao">ordo-chao</a></li>
<li>LinkedIn <a href="www.linkedin.com/in/prince-benedict-491776299">Prince Benedict Wachira</a></li>
</ul>
</pre>
</p>
</div>
</body>
</html>