-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathviewprofile.html
114 lines (95 loc) · 3.12 KB
/
viewprofile.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
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>NACOSS HOME</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="styles.css" rel="stylesheet" type="text/css" />
<script src="lib/jquery-1.4.2.js" type="text/javascript"></script>
<script src="lib/js-func.js" type="text/javascript"></script>
<script src="lib/jquery.jcarousel.js" type="text/javascript"></script>
<style>
input[type=button], input[type=reset], input[type=submit] {
background-color: red;
border: none;
color: white;
padding: 18px 36px;
text-decoration: none;
margin: 5px 4px;
cursor: pointer;
}
</style>
</head>
<body>
<div id="bg">
<div id="logo">
<img src="images/nacoss_logo.png" height="70%" width="5%" style="border-radius:50%;"/>
<a href="#">NACOSS IBBUL</a>
<h2><a href="#">Networking The World</a></h2></div>
<div id="main">
<!-- header begins -->
<div id="header">
<!-- Navigation -->
<div id="navigation">
<ul>
<li><a href="makepayment.html">Make Payments</a></li>
<li><a href="pastquestion.html">Check Past Questions</a></li>
<li><a href="viewprofile.html">View Profile</a></li>
<li><a href="contact.html">Contact</a></li>
<li class="first"><a href="index.html">Logout</a></li>
</ul>
</div>
<!-- End Navigation -->
<!-- Slider -->
<center>
<h1 style="color:blue;"><b>MY PROFILE</b></h1>
</center>
<!-- End Slider -->
</div>
<!-- header ends -->
<!-- content begins -->
<div id="content_bg">
<!-- The grid: four columns -->
<center>
<img src="images/user.png" height="10%" width="10%" style="border-radius:50%; margin-top:-50%;"/><br><br>
<h2><b>FULL NAME: IBRAHIM HADI</b></h2><br>
<h2><b>MATIRC NUMBER: U15/FNS/CSC/080</b></h2><br>
<h2><b>LEVEL: 400</b></h2><br>
<h2><b>SEX: MALE</b></h2><br>
<input type="submit" onclick="myFunction()" value="Edit Profile"/>
</center>
<!-- content ends -->
<!-- footer begins -->
<div id="footer">
<div id="footer_top">
<div id="footer_column1">
<div class="footer_text">
</div>
</div>
<div id="footer_column3">
<h3>OUR TEAM</h3>
<div class="footer_text">
<div class="foot_pad">
<ul class="ls">
<li><a href="#">MUHAMMAD ABDULLAHI</a></li>
<li><a href="#">USMAN HALIRU</a></li>
<li><a href="#">GARBA UMAR</a></li>
<li><a href="#">YAKUBU EZRA</a></li>
<li><a href="#">ABDULLAHI ABUBAKAR SADIQ</a></li>
<li><a href="#">HADI IBRAHIM</a></li>
<li><a href="#">YAKUBU MUAZU ALLAWA</a></li>
<li><a href="#">ABDULLAHI MAIMUNAT</a></li>
</ul>
</div>
</div>
</div>
<div class="clear"></div>
</div>
<div id="footer_bot">
<p>Copyright 2019. Group 8<!-- end --></p>
</div></div>
<!-- footer ends -->
</div>
</body>
</html>