-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudentDetails.html
123 lines (119 loc) · 4.27 KB
/
studentDetails.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
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/navBar.css">
<link rel="stylesheet" href="css/studentDetails.css">
<link rel="stylesheet" href="css/footer.css">
<title>Student Details</title>
</head>
<body>
<!-- Area to put menu links -->
<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>
<!-- Title of the page -->
<div>
<h1>
WHO MADE THIS WEBSITE A SUCCESS?
</h1>
</div>
<!-- Main content of images and information about members goes here -->
<div class="main">
<!-- Student 1 -->
<div class="member-card">
<div id="member-1-img" title="Image of the first student" class="img-features">
<div class="info" >
<h2>
Manthika Dissanayake
</h2>
<p>
University of Westminster<br>
Informatic Institue of Technology<br>
BEng in Software Engineering<br>
1st Year Student<br>
Role - Student 1
</p>
<p>
"Learn everything you can and it will definitely pay you off someday"
</p>
</div>
</div>
</div>
<!-- Student 2 -->
<div class="member-card">
<div id="member-2-img" title="Image of the second student" class="img-features">
<div class="info">
<h2>
Geeth Muthunayaka
</h2>
<p>
University of Westminster<br>
Informatic Institue of Technology<br>
BEng in Software Engineering<br>
1st Year Student<br>
Role - Student 2
</p>
<p>
"Always be ready to face any kind of challenge as it is the only make a strong human being"
</p>
</div>
</div>
</div>
<!-- Student 3 -->
<div class="member-card">
<div id="member-3-img" title="Image of the third student" class="img-features">
<div class="info">
<h2>
Purna Peramune
</h2>
<p>
University of Westminster<br>
Informatic Institue of Technology<br>
BEng in Software Engineering<br>
1st Year Student<br>
Role - Student 3
</p>
<p>
"What is life if you dont want any obstacles in it? Face them and go to your goals!"
</p>
</div>
</div>
</div>
</div>
<!-- Footer Area -->
<footer>
<span id="shop-name">IITIANS SPORTS SHOP</span>
<hr>
<div id="footer-links">
<p>
<a href="mainPage.html">Home </a>|
<a href="productPayment.html">Our Shop </a>|
<a href="#">Deals </a>|
<a href="#">Online </a>
<br>
<a href="#">Contact </a>|
<a href="#">Customer Service </a>|
<a href="#">IIT Sports </a>|
<a href="#">[email protected] </a>
<br>
Branches |
<a href="#">Colombo </a>|
<a href="#">Kandy </a>
</p>
</div>
<hr>
<!-- Link to the page editor page -->
<span id="final">
<a href="editorPurna.html">Page Developer Purna Peramune : More Info >></a>
</span>
</footer>
</body>
</html>