-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout_me.html
83 lines (68 loc) · 2.71 KB
/
about_me.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<title>Thomas Sarpong</title>
<link rel="stylesheet" type="text/css" href="../style/style4.css">
</head>
<body>
<div class="main-container"> <!--main container-->
<div class=head-Area>
<header id="header">
<div class="container"> <!--main header container -->
<h1>SarpTom's Web</h1>
</div>
</header>
<nav id="navbar">
<div class="container" >
<div class="nav-container">
<ul>
<li><a href="index.html" target="blank"> Home</a></li>
<li><a href="aim&project.html"target="blank"> Aim & Project</a></li>
<li><a href="contacts.html"target="blank"> Contact</a></li>
<li><a href="about_me.html"target="blank"> About me</a></li>
</ul>
</div>
</div>
</nav>
</div>
<section id="section">
<div class="container" >
<div>
<h1>Welcome to my Page</h1>
<p>
Navigate through and know much about me,know much about my <br> educational backgrounds, my inspirations and aspirations.
You will also know much about my competence and my specialties.
</p>
</div>
</div>
</section>
<aside id="aside-bar">
<div class="container" >
<h2>Upcoming Projects</h2>
</div>
<div class="container">
<div id="proj1">
<h3>Virtual hospital App</h3>
<p>
Virtual hospital is a mobile app that helps users to get medical advice and assistace
</p>
</div>
<div id="proj2">
<h3>My School Site</h3>
<p>
My School site is a mobile app integrated with a website for schools.
It helps school administrators to easily send informations to the Parents.
It also provides a paltform for students to send their assignments to their teachers.
It really does more ...
</p>
</div>
</div>
</aside>
<footer id=footer>
<div class="container">
<p>copyright ©: 2019</p>
</div>
</footer>
</div>
</body>
</html>