-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudent.html
123 lines (113 loc) · 4.86 KB
/
student.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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Gallery | IT Computer City </title>
<!-- Add Fevicon -->
<link rel="shortcut icon" type="images/icon" href="images/icon/fevicon.png">
<!-- Add CSS File -->
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<!-- header area -->
<div id="header_area">
<div class="container">
<div id="header">
<div id="header_left_section">
<div id="logo">
<a href="index.html">
<img src="images/logo.png" alt="IT Computer City">
</a>
</div>
</div>
<div id="header_right_section">
<div id="menu_section">
<ul id="header_menu">
<li><a href="index.html">Home</a></li>
<li><a href="course.html">Courses</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="press.html">Press & Media </a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="tutorial.html">Tutorial</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
</div>
</div>
<!-- clear fix -->
<div class="clear_fix"></div>
</div>
</div>
<!-- Student Gallery area -->
<div id="student_area">
<div class="container">
<div id="student">
<div id="student_title">
<h2>Student Gallery</h2>
</div>
<!-- student gallery -->
<div class="student_content">
<img src="images/student/s1.jpg" alt="Student">
<img src="images/student/s2.jpg" alt="Student">
<img src="images/student/s3.jpg" alt="Student">
<img src="images/student/s4.jpg" alt="Student">
<img src="images/student/s5.jpg" alt="Student">
<img src="images/student/s6.jpg" alt="Student">
<img src="images/student/s7.jpg" alt="Student">
<img src="images/student/s8.jpg" alt="Student">
</div>
</div>
<!-- clear fix -->
<div class="clear_fix"></div>
</div>
</div>
<!-- footer top area -->
<div id="footer_top_area">
<div class="container">
<div id="footer_top">
<div id="course_item">
<h3>Courses</h3>
<ul id="left_course">
<li><a href="course/fundoffice.html">Fundamental Office</a></li>
<li><a href="course/aplusoffice.html">A+ Office Application</a></li>
<li><a href="course/advoffice.html">Advance Office Course</a></li>
<li><a href="course/graphics.html">Advance Graphics Design</a></li>
<li><a href="course/web_dev.html">Web Design & Development</a></li>
<li><a href="course/goutsourcing.html">outsourcing</a></li>
</ul>
</div>
<div id="footer_logo">
<img src="images/logo-f.png" alt="Footer Logo">
</div>
<div id="footer_support">
<h3>Support</h3>
<ul id="support">
<li><a href="index.html">Home</a></li>
<li> <a href="course.html">Courses</a> </li>
<li><a href="about.html">About Us</a></li>
<li><a href="course/advoffice.html">Application</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="gallery.html">Event Gallery</a></li>
</ul>
</div>
<div id="footer_address">
<h3>Address</h3>
<p>203/204, Foysal Shopping Complex (1st Floor) Bus Stand, Chandpur-3600, Bangladesh. Contact:01925-164052</p>
</div>
</div>
<!-- clear fix -->
<div class="clear_fix"></div>
</div>
</div>
<!-- footer bottom area -->
<div id="footer_bottom_area">
<div class="container">
<div id="fotter_bottom">
<h5>Copyright © 2021 • IT Computer City • All Rights Reserved Website</h5>
<h5> Design by <a href="http://www.facebook.com/mdabdulaziz.aak">Md. Abdul Aziz </a></h5>
</div>
</div>
</div>
</body>
</html>