-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment1.html
More file actions
118 lines (97 loc) · 2.42 KB
/
Assignment1.html
File metadata and controls
118 lines (97 loc) · 2.42 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html>
<head>
<title>index2</title>
<!--div styling-->
<style type="text/css">
#vertical
{
width: 700px;
height: 130px;
border-right: 1px solid;
position:relative;
float:left;
}
#second
{
float:right;
width:640px;
height:126px;
padding:2px;
}
#news{
height:240px;
width:1348px;
position:relative;
float:left;
}
a:link{
text-decoration:none;
}
a:hover{
text-decoration:underline;
color:violet;
}
</style>
</head>
<div>
<body>
<h2 style="color:Blue;"><u><center>My WebSite</center></u></h2>
<p style ="margin-left:16px;">
<b>Name:</b> Daniel ®
<br/>
<b>Surname:</b> Okoro
<br/>
<b> Other Name:</b> Chinasa ™
</p>
<!--my first horizontal line-->
<hr></hr>
<div id="vertical">
<b style="color:Blue;"><u><center>My Likes</center></b></u>
<ul>
<li>Gaming</li>
<li>Playing Football</li>
<li>Coding</li>
</ul>
</div>
<!--like division-->
<div id="second">
<!--number list-->
<strong style="color:Blue;"><u><center>My dislikes</center></strong></u>
<ol>
<li>Hating</li>
</ol>
<!--circle list-->
<ul style="list-style-type:circle;">
<li>sleeping</li>
</ul>
<!--square list-->
<ul style="list-style-type:square;">
<li>Fear</li>
</ul>
</div>
<!--news division-->
<div id = "news">
<hr></hr>
<marquee><strong style="font-size:18px; color:Blue;">News</strong></marquee>
<p>
<a href ="">The University of Jos Innovation Hub </a> commenced its Industrial Training on the
26<sup>th</sup> of August, 2019.
All learnig processes such as lectures, assignments and presentations has hit the track.
<br/> The coordinator, Mr Ismailawa urges all students to be deligent in all their work, learning,timing, andmost importantly be consistent with reporting their works in their log book.
<p>
The Hub's <a href ="">I.T manual</a> for the whole period of six months is available with the management in case of interested perties. Extra corricular activities such as hiking, picnics and games is also vital to the process of learning says the Social staff so must be observed by all I.T students.
</p>
</p>
</div>
<!--footer division-->
<footer>
<center><emp>
CopyRight © <br/>
AllRights Reserved <br/>
2019
</emp></center>
</footer>
</div>
</body>
</html>