-
Notifications
You must be signed in to change notification settings - Fork 1
/
support-portal.html
53 lines (50 loc) · 2.02 KB
/
support-portal.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
<!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>codebook.dev - Support</title>
<link href='https://fonts.googleapis.com/css?family=JetBrains Mono' rel='stylesheet'>
<script src="https://kit.fontawesome.com/f7c8be4779.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="src/css/main.css">
<script src="src/js/main.js"></script>
</head>
<body class="support-container">
<div class="nav">
<ul>
<li class="links"><a href="index.html">Home</a></li>
<li class="links"><a href="about.html">About</a></li>
<li class="links"><a class="accent" href="support-portal.html">Support</a></li>
</ul>
</div>
<div class="header">
<h1 class="color support-header">Support Portal</h1>
</div>
<div class="cards">
<div class="card-container">
<a href="docs.html">
<h3 class="card-text">docs</h3>
<i class="card-icons fa-solid fa-circle-info"></i>
<p class="card-p">learn more about <span class="color">codebook.dev</span> and encountered issues by
clicking here.
</p>
<p class="footer-card">help time: <span class="color">instant</span></p>
</a>
</div>
<div class="card-container">
<a href="contact.html">
<h3 class="card-text">contact us</h3>
<i class="card-icons fa-solid fa-envelope"></i>
<p class="card-p">we're here to help. get in contact with a <span class="color">codebook.dev</span>
agent by
clicking here. </p>
<p class="footer-card">help time: <span class="color">24-48 hours</span></p>
</a>
</div>
</div>
<footer>
<p>© 2022-23 <span class="color">codebook.dev</span></p>
</footer>
</body>
</html>