-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhome.php
269 lines (262 loc) · 11.1 KB
/
home.php
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Emil John Q. Magcanta">
<title>Home | Dean's List Application System - CCS</title>
<link rel="icon" href="./img/ccslogo.png" type="image/icon type">
<!-- swiper css link -->
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css" />
<!-- font awesome cdn link -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="https://kit.fontawesome.com/529e4c40ff.css" crossorigin="anonymous">
<!-- custom css file link -->
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<!-- header section starts -->
<section class="header">
<a href="home.php" class="logo" img src="ccslogo.png" width ="50" height = "50">Dean's List Application System</a>
<nav class="navbar">
<a href="#home">Home</a>
<!-- <a href="#features">Features</a> -->
<a href="#about">About</a>
<!-- <a href="#programs">Programs</a> -->
<a href="#team">Team</a>
<a href="#contact">Contact us</a>
<a href="./login/login.php"><button class="btn btn-outline-success btn-login">Login</button></a>
</nav>
<div id="menu-btn" class="fas fa-bars"></div>
</section>
<!-- header section ends -->
<!-- home section starts -->
<section class="home" id="home">
<div class="swiper home-slider">
<div class="swiper-wrapper">
<div class="swiper-slide slide" style="background: linear-gradient(45deg,
rgba(98, 156, 148, 0.75),
rgba(19, 115, 104, 0.75)),
url('img/banner-1.jpg'); background-position: center;
background-size: cover;
background-repeat: no-repeat;">
<div class="content">
<h3 style="font-weight:500">Announcement </h3>
<span style="font-size: 2.5rem; font-weight:500">A student with excellent grades in all academic subjects shall receive recognition through inclusion in the Dean’s List at the end of every semester of each school year.</span>
<a href="./login/login.php" class="btn">Apply Now</a>
</div>
</div>
<div class="swiper-slide slide" style="background: linear-gradient(45deg,
rgba(98, 156, 148, 0.75),
rgba(19, 115, 104, 0.75)),
url('img/banner-2.jpg'); background-position: center;
background-size: cover;
background-repeat: no-repeat;">
<div class="content">
<h3 style="font-weight:500">Announcement</h3>
<span style="font-size: 2.5rem; font-weight:500">Submission of form is available during November 9 to December 29 at 8:30am and closes at 4:30pm.</span>
<a href="./login/login.php" class="btn">Apply Now</a>
</div>
</div>
<div class="swiper-slide slide" style="background: linear-gradient(45deg,
rgba(98, 156, 148, 0.75),
rgba(19, 115, 104, 0.75)),
url('img/banner-3.jpg'); background-position: center;
background-size: cover;
background-repeat: no-repeat;">
<div class="content">
<h3 style="font-weight:500">Announcement</h3>
<span style="font-size: 2.5rem; font-weight:500">Submit yours now and be part of Deans List CCS!</span>
<a href="./login/login.php" class="btn">Apply Now</a>
</div>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
</section>
<!-- home section ends -->
<!-- services section starts -->
<!-- <section class="services" id="features">
<h1 class="heading-title" style="font-weight:500"> Features</h1>
<div class="box-container">
<div class="box">
<i class="fas fa-box" style="font-size:60px;color: white;"></i>
<h3>Dashboard</h3>
</div>
<div class="box">
<i class="fas fa-edit" style="font-size:60px;color: white;"></i>
<h3>Application</h3>
</div>
<div class="box">
<i class="fas fa-user-check" style="font-size:60px;color: white;"></i>
<h3>Dean's Listers</h3>
</div>
<div class="box">
<i class="fas fa-users" style="font-size:60px;color: white;"></i>
<h3>Faculty</h3>
</div>
<div class="box">
<i class="fas fa-book-reader" style="font-size:60px;color: white;"></i>
<h3>Programs</h3>
</div>
<div class="box">
<i class="fas fa-cog" style="font-size:60px;color: white;"></i>
<h3>Settings</h3>
</div>
</div>
</section> -->
<!-- services section ends -->
<!-- home about section starts -->
<h1 class="heading-title" id ="about" style="font-weight:500">About the System</h1>
<section class="home-about" id="about">
<div class="content">
<p align="justify" style="font-size: 2.3rem; font-weight:200">Dean's list Application System is an online Web Application, where it brings the process of
dean's list transaction into online form. Managing dean's list forms could be a challenge
because of the paperworks and processes. As we propose a more convenient way of doing these tasks.</p>
<center><a href="about.php" class="btn">See more</a></center>
</div>
</section>
<!-- <h1 class="heading-title" id ="programs" style="font-weight:500">Programs</h1>
<section class="home-about" >
<div class="image">
<img src="images/cspic.jpg" alt="">
</div>
<br>
<br>
<br>
<div class="content">
<h2>BS in Computer Science</h2>
<p align="justify" style="font-size:1.8rem; font-weight:200">
Bachelor of Science in Computer Science (BSCS) is a four-year program that includes the study of
computing concepts and theories, algorithmic foundations, and new developments in computing.
The program includes the study of the standards and practices in Software Engineering. It prepares
students to acquire skills and disciplines required for designing, writing, and modifying software components,
modules, and applications that comprise software solutions.</p><br>
</div>
<br><div class="content">
<h2>BS in Information Technology</h2>
<p align="justify" style="font-size:1.8rem; font-weight:200">
Bachelor of Science in Information Technology (BSIT) is a four-year program that prepares students to be IT
professionals who are able to perform installation, operation, development, maintenance and administration of
computer applications. The goal of the program is to gear up students as "information technologists" who can
assist individuals and organizations in solving problems using information technology (IT) techniques.<br><br><br></p>
</div>
<br>
<br>
<br>
<div class="image">
<br><img src="images/itpic.jpg" alt="">
</div>
</section> -->
<!-- home about section ends -->
<!-- home packages section starts -->
<section class="home-packages" id="team">
<h1 class="heading-title" style="font-weight:500"> Our Team </h1>
<div class="box-container">
<div class="box">
<div class="image">
<br><center><img src="./img/josh.png" alt="" width="100" height="100"></center>
</div>
<div class="content">
<h3>Joshua A. Yasil</h3>
<p>Project Manager</p>
</div>
</div>
<div class="box">
<div class="image">
<br><center><img src="./img/bush.png" alt=""></center>
</div>
<div class="content">
<h3>Bushra Adjaluddin</h3>
<p>Quality Assurance</p>
</div>
</div>
<div class="box">
<div class="image">
<br><center><img src="./img/ejaypogi.png" alt="" height="10"></center>
</div>
<div class="content">
<h3>Emil John Magcanta</h3>
<p>Lead Developer</p>
</div>
</div>
<div class="box">
<div class="image">
<br><center><img src="./img/hamja.png" alt="" height="10"></center>
</div>
<div class="content">
<h3>Abdulasis Hamja</h3>
<p>Business Analyst</p>
</div>
</div>
<div class="box">
<div class="image">
<br><center><img src="./img/denise.png" alt="" height="10"></center>
</div>
<div class="content">
<h3>Denise Vonn Gerzon</h3>
<p>UX Designer</p>
</div>
</div>
<div class="box">
<div class="image">
<br><center><img src="./img/daph.png" alt="" height="10"></center>
</div>
<div class="content">
<h3>Abdar Talib</h3>
<p>UI Designer</p>
</div>
</div>
</div>
</section>
<!-- home packages section ends -->
<!-- home offer section starts -->
<section class="home-offer">
<div class="content">
</div>
</section>
<!-- home offer section ends -->
<!-- footer section starts -->
<section class="footer" id=contact>
<div class="box-container">
<div class="box">
<h3>quick links</h3>
<a href="#home"> <i class="fas fa-angle-right"></i> Home</a>
<a href="#about"> <i class="fas fa-angle-right"></i> About</a>
<a href="#team"> <i class="fas fa-angle-right"></i> Team</a>
<a href="#contact"> <i class="fas fa-angle-right"></i>Contact us</a>
</div>
<div class="box">
<h3>extra links</h3>
<a href="#"> <i class="fas fa-angle-right"></i> Ask questions</a>
<a href="#team"> <i class="fas fa-angle-right"></i> About us</a>
<a href="#"> <i class="fas fa-angle-right"></i> Privacy Policy</a>
<a href="#"> <i class="fas fa-angle-right"></i> Terms of use</a>
</div>
<div class="box">
<h3>contact info</h3>
<a href="#"> <i class="fas fa-phone"></i> 01-234 </a>
<a href="#"> <i class="fas fa-phone"></i> 56-789 </a>
<a href="#"> <i class="fas fa-envelope"></i> [email protected] </a>
<a href="#"> <i class="fas fa-map"></i> Zamboanga City, Ph 7000 </a>
</div>
<div class="box">
<h3>follow us</h3>
<a href="https://www.facebook.com/emiljohn.magcanta.5"> <i class="fab fa-facebook-f"></i> Facebook </a>
<a href="#"> <i class="fab fa-twitter"></i> Twitter </a>
<a href="#"> <i class="fab fa-instagram"></i> Instagram </a>
<a href="https://github.com/McSing29"> <i class="fab fa-github"></i> Github </a>
</div>
</div>
<div class="credit"> © Developed by <span>Group 6 XD</span> | All Rights Reserved! <p class="float-end"><br><a href="#" style="color: #107869">Back to top</a></p></div>
</section>
<!-- footer section ends -->
<!-- swiper js link -->
<script src="https://unpkg.com/swiper@7/swiper-bundle.min.js"></script>
<!-- custom js file link -->
<script src="js/scripts.js"></script>
</body>
</html>