-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
172 lines (163 loc) · 5.21 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HGBaquiran Unofficial Page</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</head>
<body style="background-image: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('background.png'); background-size: cover; background-attachment: fixed;">
<style>
.container{
margin-top: 20px;
}
.navigation {
color: white;
padding: 10px 20px;
position: fixed;
top: 0;
right: 0;
width: auto;
z-index: 1000;
}
header nav {
display: flex;
justify-content: flex-start; /* header navi sa left */
align-items: center;
}
header .logo h1 {
font-size: 24px;
margin: 0;
}
header .nav-links {
list-style: none;
padding: 0;
margin: 0;
}
header .nav-links li {
display: inline;
margin-left: 20px;
}
header .nav-links a {
color: white;
text-decoration: none;
font-size: 18px;
transition: color 0.3s;
}
header .nav-links a:hover {
color: #22cffa;
}
.hgbHeader{
font-size: 20px;
}
span img{
height: 30px;
margin-right: 10px;
border-radius: 5px;
}
</style>
<!-- NavBarMenu-->
<nav class="navbar navbar-expand-lg bg-none">
<div class="container">
<a class="navbar-brand text-white" href="#">
<img src="hgb logo.png" alt="Logo" style="height: 30px; margin-right: 10px;">
HGBaquiran College
</a>
<button class="navbar-toggler text-white bg-white" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle Navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link active text-white" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active text-white" aria-current="page" href="aboutUs.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link active text-white" aria-current="page" href="course.html">Courses</a>
</li>
<li class="nav-item">
<a class="nav-link active text-white" aria-current="page" href="contactUs.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Main section -->
<header class="hero-section text-white text-center py-5">
<div class="container">
<h1 class="display-4">
Welcome to
<span style="font-weight: bold; color: rgb(57, 130, 220);">
HGBaquiran College
</span></h1>
<p class="lead text-white" style="font-weight: bold; font-style: italic;">
"The road to success is paved with goood intentions, your success, then, begins with HGBaquiran College."
</p>
<a href="enrol.html" class="btn btn-lg btn-primary mt-3">
Enroll Now!
</a>
</div>
</header>
<!-- ContentSection-->
<div class="container">
<section class="py-4">
<div class="row">
<div class="col-lg-4 mb-4">
<div class="card h-100 shadow-lg" style="background-color: rgba(255, 255, 255, 0.8);">
<div class="card-body">
<h5 class="card-title fw-bold">
Courses
</h5>
<p class="card-text">
Information Technology
</p>
<a href="course.html" class="btn btn-primary" id="btnCourse">
Learn More
</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card h-100 shadow-lg" style="background-color: rgba(255,255,255,0.8);">
<div class="card-body">
<h5 class="card-title fw-bold">
About Us
</h5>
<p class="cart-text">
Develop competitive Individuals
</p>
<a href="aboutUs.html" class="btn btn-primary" id="btnAbout">
Learn More
</a>
</div>
</div>
</div>
<div class="col-lg mb-4">
<div class="card h-100 shadow-lg" style="background-color: rgba(255,255,255,0.8);">
<div class="card-body">
<h5 class="card-title fw-bold">
Contact Us
</h5>
<p class="cart-text">
Just Call me baby
</p>
<a href="contactUs.html" class="btn btn-primary" id="btnAbout">
Learn More
</a>
</div>
</div>
</div>
</div>
</section>
</div>
</body>
<script>
//Pag napindot log out magpapakita to
function logoutAlert() {
alert('You have logged out successfully!');
}
</script>
</html>