-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelppagina.php
More file actions
57 lines (55 loc) · 1.56 KB
/
Copy pathhelppagina.php
File metadata and controls
57 lines (55 loc) · 1.56 KB
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
<?php
include('header.php');
?>
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<!-- Somehow I got an error, so I comment the title, just uncomment to show -->
<!-- <title>Responsive Sidebar Menu</title> -->
<link rel="stylesheet" href="css/sidebarmenu.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<input type="checkbox" id="check">
<label for="check">
<i class="fas fa-times" id="btn"></i>
<i class="fas fa-bars" id="cancel"></i>
</label>
<div class="sidebar">
<header>Menu</header>
<a href="#" class="active">
<i class="fas fa-leaf"></i>
<span>Ruilen?</span>
</a>
<a href="#">
<i class="fas fa-link"></i>
<span>Advertentie</span>
</a>
<a href="#">
<i class="fas fa-stream"></i>
<span>Overview</span>
</a>
<a href="#">
<i class="material-icons">chat</i>
<span>Forum</span>
</a>
<a href="faqpagina.php">
<i class="far fa-question-circle"></i>
<span>FAQ</span>
</a>
<a href="#">
<i class="fas fa-sliders-h"></i>
<span>Services</span>
</a>
<a href="#">
<i class="far fa-envelope"></i>
<span>Contact</span>
</a>
</div>
<h1 style="text-align:center;">Hoe werkt het?</h1>
</div>
</body>
</html>