-
Notifications
You must be signed in to change notification settings - Fork 4
/
help.html
61 lines (56 loc) · 2.04 KB
/
help.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>help</title>
<link rel="stylesheet" href="./style/help.css">
</head>
<body>
<div id="nav">
<div class="logo">
<div class="logoimg">
<a href="index.html"><img src="./images/mirror mate.png" alt=""></a>
</div>
</div>
<div class="navele">
<h5><a class="navtxt" href="./about.html"><b>ABOUT</b></a></h5>
<h5><a class="navtxt" href="./contact.html"><b>CONTACT US</b></a></h5>
<h5><a class="navtxt" href="./help.html"><b>HELP</b></a></h5>
</div>
<div class="bar">
<div id="butt">
<button class="login"><a href="./signup login Frontend/login.html"> <b>LOG IN </b> </a> </button>
<button class="signup"><a href="./signup login Frontend/signup.html"> <b> SIGN UP </b></a> </button>
</div>
</div>
</div>
<!-- nav complete here -->
<header>
<h1>Help Center</h1>
</header>
<nav>
<ul>
<li><a href="#">Getting Started</a></li>
<li><a href="#">Account Settings</a></li>
<li><a href="#">Privacy & Safety</a></li>
<li><a href="#">Troubleshooting</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
<main>
<h2>Getting Started</h2>
<p>Here is some helpful information about getting started with our platform.</p>
<h2>Account Settings</h2>
<p>Here is some helpful information about managing your account settings.</p>
<h2>Privacy & Safety</h2>
<p>Here is some helpful information about protecting your privacy and staying safe on our platform.</p>
<h2>Troubleshooting</h2>
<p>Here is some helpful information about troubleshooting common issues.</p>
</main>
<footer>
<p>Contact us: [email protected]</p>
</footer>
</body>
</html>