-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpageEditor.html
44 lines (41 loc) · 1.12 KB
/
pageEditor.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
<!doctype html>
<html lang="en">
<head>
<title>Page Editor</title>
<link rel="stylesheet" href="css/navBar.css">
<style>
body {
background-image: url("images/back.jpg");
background-size: 100% 100%;
background-attachment: fixed;
font-family:Verdana,Arial,Sans-serif ;
font-size: 30px;}
#info{
margin:12px;
line-height:2;
border: 5px solid #2cd1ad;
padding:5px;
width:900px;
background-color:white;}
</style>
</head>
<body>
<div id="navBar">
<ul>
<li><a href="mainPage.html">Main Page</a></li>
<li><a href="QueryForm.html">Query Form</a></li>
<li><a href="productPayment.html">Buy Products</a></li>
<li><a href="quiz.html">Quiz</a></li>
<li><a href="studentDetails.html">Student Details</a></li>
<li id="imgLi"><a href="mainPage.html"><img src="images/logonew.png" alt="logo"></a></li>
</ul>
</div>
<div id="info">
Name: Geeth Muthunayaka<br>
IIT number: 20200508<br>
UOW ID: w1830175<br>
Role: Student 2<br>
Tasks: Navigation bar, Main Page, Query Form<br>
</div>
</body>
</html>