-
Notifications
You must be signed in to change notification settings - Fork 4
/
about.php
46 lines (42 loc) · 1.4 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<?php
include("login.php");
include("includes/head.php");
?>
<body>
<div id="navb">
<?php
include("includes/topbar.php");
include("includes/navbar.php");
?>
</div>
<div id="all">
<div id="content">
<div id="hot">
<div class="box">
<div class="container">
<div class="col-md-11">
<h2>About Us</h2>
<div align="center">
<h3>Who are we?</h3>
<p>We are de Hakkenbar! </p>
<p>De Hakkenbar are three Computer Science students, striving to give you a great experience on this website.</p>
<p>Please explore as much as you want.</p>
<h3>What do we want?</h3>
<p>We want to teach you the importance of security in the digital world.</p>
<p>We try to achieve our goal by making this site and letting you play with it.</p>
<p>Experiment and find the flaws we left and try to fix them.</p>
</div>
</div>
</div>
</div>
</div>
<?php
include("includes/footer.php");
include("includes/copyright.php");
?>
</div>
<?php include("includes/scripts.php"); ?>
</body>
</html>