-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
42 lines (42 loc) · 2 KB
/
about.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
<!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 - About</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 class="accent" href="about.html">About</a></li>
<li class="links"><a href="support-portal.html">Support</a></li>
</ul>
</div>
<div class="header">
<h1 class="color support-header">About</h1>
</div>
<p class="about-text">
our mission at <span class="color">codebook.dev</span> is to make coding <span class="accent">online</span> easier.<br>
we do this by allowing users to code and execute the written code <br>all within their browser window. <br><br><span class="accent bigger">here is a look at how it works:</span>
</p>
<p class="about-text">
your code is sent to a secure server which processes your code. <br>that code is then executed on the secure server
and the output is sent back to your browser. <br><br><i class="fa-solid fa-lock"></i> your code or personal information is never stored on the server.
<i class="fa-solid fa-lock"></i>
</p>
<img src="images/movement.png">
<p class="about-text">
your personal information is never shared with any <br>third-party platforms while you use codebook. <br>
<span class="color">Your information, stays your information.</span>
</p>
</body>
<footer>
<p>© 2022-23 <span class="color">codebook.dev</span></p>
</footer>
</html>