-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenglish.html
169 lines (160 loc) · 6.79 KB
/
english.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>English stories</title>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<link rel="stylesheet" type="text/css" href="css/responsive.css"/>
<link rel="stylesheet" type="text/css" href="css/login.css"/>
<script src="js/nav.js"></script>
<script src="js/login.js"></script>
<script src="https://kit.fontawesome.com/aa490ce6da.js" crossorigin="anonymous"></script>
<style>
@media(max-width: 1000px){
.mpopup-content {
width: 90%;
}
}
</style>
</head>
<body>
<div class="container">
<div class="head-row">
<div class="branding">
Ni Gute
</div>
<img src="images/menu-4-xxl.png" id="menu-button" onclick="openNav()" />
<p id="close" style="color: rgb(255, 255, 255);" onclick="closeMenu()">X</p>
<div class="navbar" id="nav">
<ul id="nav-list">
<li><a href="./index.html">Home</a></li>
<li class="active"><a href="./english.html">English</a></li>
<li><a href="./sobanukirwa.html">Did you know?</a></li>
<li><a href="./ni-gute.html">How to</a></li>
<li><a href="./amakuru.html">News</a></li>
<li><a href="./twandikire.html">Contact us</a></li>
<li><a href="./abo-turibo.html">About us</a></li>
<li class="login"><a href="javascript:void(0);" id="mpopupLink">LOGIN</a></li>
</ul>
</div>
</div>
<div id="mpopupBox" class="mpopup">
<!-- mPopup content -->
<div class="mpopup-content">
<div class="mpopup-head">
<span class="close">×</span>
<h2>Admin login</h2>
</div>
<div class="mpopup-main">
<form>
<!--Add username-->
<label for="useremail">Username</label>
<input type="email" id="username" style="margin-bottom: 20px;" required>
<!--Add email-->
<label for="password">Password</label>
<input type="password" id="useremail" style="margin-bottom: 20px;" required>
<!--Enter to login-->
<input type="submit" value="Injira" id="loginbutton">
</form>
</div>
<div class="mpopup-foot">
<p>Want to work with us?<a href="./twandikire.html"> Click here</a></p>
</div>
</div>
</div>
<div class="subscribe-row">
<div class="small-about">
<h1>How in technology</h1>
</div>
</div>
<div class="container-2">
<div class="posts">
<h1>English stories</h1>
<p><i>All articles written in english are here</i></p>
<hr>
<div class="en-post-wrapper">
<p class="noPost"></p>
</div>
</div>
<div class="sidebar">
<div class="subscribe">
<form action="" class="subform">
<h2>Subscribe to our newsletter</h2>
<input type="email" placeholder="Enter your email address..." required>
<button>Subscribe</button>
</form>
</div>
</div>
</div>
<div class="footer-row">
<div class="col-13">
<div class="small-about about-footer">
<h2>Ni gute in technology</h2>
<p>Ni Gute ni urubuga rugamije gutuma buri muntu wese agira ubumenyi buhagije mu ikoranabuhanga, akaba ashobora kuba yakwikorera byinshi kandi agafasha n'abandi.
</p>
<div class="social">
<a href="#"><button class="fab fa-instagram ig"></button></a>
<a href="#"><button class="fab fa-twitter tw"></button></a>
<a href="#" ><button class="fab fa-facebook-f fb"></button></a>
<a href="#" ><button class="fab fa-youtube yt"></button></a>
</div>
</div>
</div>
<div class="col-13">
<div class="contact">
<form>
<h2>Contact us</h2>
<input type="text" placeholder="Enter your name">
<input type="email" placeholder="Enter your email">
<textarea placeholder="Enter your message"></textarea>
<input type="button" value="Send" class="btn-ohereza" style="background-color: royalblue;color: #fff;border: 1px solid royalblue;">
</form>
</div>
</div>
<div class="col-13">
<div class="latest">
<h2>Images</h2>
<div class="imglat">
<img src="./images/ifoto.jpg" alt="">
</div>
</div>
</div>
</div>
<div class="copyright">
<p>© Ni Gute 2020</p>
<p class="clock"></p>
<p>Made with love by <a href="#">Achille Songa</a></p>
</div>
</div>
<!--Login popup script-->
<script>
// get the mPopup
var mpopup = document.getElementById('mpopupBox');
// get the link that opens the mPopup
var mpLink = document.getElementById('mpopupLink');
// get the close action element
var close = document.getElementsByClassName("close")[0];
// open the mPopup once the link is clicked
mpLink.onclick = function(){
mpopup.style.display = "block";
}
// close the mPopup once close element is clicked
close.onclick = function(){
mpopup.style.display = "none";
}
// close the mPopup when user clicks outside of the box
window.onclick = function(event) {
if (event.target == mpopup) {
mpopup.style.display = "none";
}
}
</script>
<script src="https://www.gstatic.com/firebasejs/8.1.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.1.2/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.1.2/firebase-storage.js"></script>
<script src="../config/db.js"></script>
<script src="./english.js"></script>
<script src="./js/clock.js"></script>
</body>
</html>