HTML
xxxxxxxxxx
1
<!--Main Navigation-->
2
<header>
3
<style>
4
#intro {
5
background-image: url(https://pbs.twimg.com/media/FSzqqNEXwAUlUK5.jpg);
6
height: 100vh;
7
}
8
9
/* Height for devices larger than 576px */
10
@media (min-width: 992px) {
11
#intro {
12
margin-top: -58.59px;
13
}
14
}
15
16
.navbar .nav-link {
17
color: #fff !important;
18
}
19
</style>
20
21
<!-- Navbar -->
22
<nav class="navbar navbar-expand-lg navbar-dark d-none d-lg-block" style="z-index: 2000;">
23
<div class="container-fluid">
24
<!-- Navbar brand -->
25
<a class="navbar-brand nav-link" target="_blank" href="http://www.umhlathuze.gov.za/">
26
<strong>COU</strong>
27
</a>
28
<button class="navbar-toggler" type="button" data-mdb-toggle="collapse" data-mdb-target="#navbarExample01"
29
aria-controls="navbarExample01" aria-expanded="false" aria-label="Toggle navigation">
30
<i class="fas fa-bars"></i>
31
</button>
32
<div class="collapse navbar-collapse" id="navbarExample01">
33
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
34
<li class="nav-item active">
35
<a class="nav-link" aria-current="page" href="#intro">Home</a>
36
</li>
37
<li class="nav-item">
38
<a class="nav-link" href="https://www.umhlathuze.gov.za/index.php/tourism" rel="nofollow"
39
target="_blank">Tourism</a>
40
</li>
41
<li class="nav-item">
42
<a class="nav-link" href="https://www.umhlathuze.gov.za/index.php/about-us/overview" target="_blank">Municipality Overview</a>
43
</li>
44
</ul>
45
46
<ul class="navbar-nav d-flex flex-row">
47
<!-- Icons -->
48
<li class="nav-item me-3 me-lg-0">
49
<a class="nav-link" href="https://www.youtube.com/channel/UCX45Sjp3zIvIeubt6dL3k5g" rel="nofollow"
50
target="_blank">
51
<i class="fab fa-youtube"></i>
52
</a>
53
</li>
54
<li class="nav-item me-3 me-lg-0">
55
<a class="nav-link" href="https://www.facebook.com/officialCityofumhlathuze01/" rel="nofollow" target="_blank">
56
<i class="fab fa-facebook-f"></i>
57
</a>
58
</li>
59
</ul>
60
</div>
61
</div>
62
</nav>
63
<!-- Navbar -->
64
65
<!-- Background image -->
66
<div id="intro" class="bg-image shadow-2-strong">
67
<div class="mask d-flex align-items-center h-100" style="background-color: rgba(0, 0, 0, 0.8);">
68
<div class="container">
69
<div class="row justify-content-center">
70
<div class="col-xl-5 col-md-8">
71
<form class="bg-white rounded-5 shadow-5-strong p-5">
72
<!-- Email input -->
73
<div class="form-outline mb-4">
74
<input type="email" id="form1Example1" class="form-control" />
75
<label class="form-label" for="form1Example1">Email address</label>
76
</div>
77
78
<!-- Password input -->
79
<div class="form-outline mb-4">
80
<input type="password" id="form1Example2" class="form-control" />
81
<label class="form-label" for="form1Example2">Password</label>
82
</div>
83
84
<!-- 2 column grid layout for inline styling -->
85
<div class="row mb-4">
86
<div class="col d-flex justify-content-center">
87
<!-- Checkbox -->
88
<div class="form-check">
89
<input class="form-check-input" type="checkbox" value="" id="form1Example3" checked />
90
<label class="form-check-label" for="form1Example3">
91
Remember me
92
</label>
93
</div>
94
</div>
95
96
<div class="col text-center">
97
<!-- Simple link -->
98
<a href="#!">Forgot password?</a>
99
</div>
100
</div>
101
102
<!-- Submit button -->
103
<a href="Form.html">Sign in</a></a>
104
</form>
105
</div>
106
</div>
107
</div>
108
</div>
109
</div>
110
<!-- Background image -->
111
</header>
112
<!--Main Navigation-->
113
114
<!--Footer-->
115
<footer class="bg-light text-lg-start">
116
<div class="py-4 text-center">
117
<a role="button" class="btn btn-primary btn-lg m-2"
118
href="http://www.umhlathuze.gov.za" rel="nofollow" target="_blank">
119
Back to Home Page
120
</a>
121
<a role="button" class="btn btn-primary btn-lg m-2" href="https://www.umhlathuze.gov.za/index.php/load-shedding" target="_blank">
122
Loadshedding Daily Schedule
123
</a>
124
</div>
125
126
<hr class="m-0" />
127
128
<div class="text-center py-4 align-items-center">
129
<p>Follow COU on social media</p>
130
<a href="https://www.youtube.com/channel/UCX45Sjp3zIvIeubt6dL3k5g" class="btn btn-primary m-1" role="button"
131
rel="nofollow" target="_blank">
132
<i class="fab fa-youtube"></i>
133
</a>
134
<a href="https://www.facebook.com/officialCityofumhlathuze01/" class="btn btn-primary m-1" role="button" rel="nofollow"
135
target="_blank">
136
<i class="fab fa-facebook-f"></i>
137
</a>
138
<a href="https://twitter.com/umhlathuzem?lang=en" class="btn btn-primary m-1" role="button" rel="nofollow"
139
target="_blank">
140
<i class="fab fa-twitter"></i>
141
</a>
142
143
</div>
144
145
<!-- Copyright -->
146
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2);">
147
© 2022 Copyright:
148
<a class="text-dark" href="https://mdbootstrap.com/">umhlathuze.gov.za</a>
149
</div>
150
<!-- Copyright -->
151
</footer>
152
<!--Footer-->
CSS
1
1
JS
1
1
Console errors: 0