-
Notifications
You must be signed in to change notification settings - Fork 3
/
about.html
35 lines (35 loc) · 1.3 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
<!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" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Anta&display=swap" rel="stylesheet">
<!-- Define your CSS file here so you can style your HTML -->
<link rel="stylesheet" href="index.css" />
<title>What is NeonChat?</title>
</head>
<body>
<div class="container">
<ul class="nav">
<li>
<a href="index.html" class="button --glow">Home</a>
</li>
<li>
<a href="demo.html" class="button --glow">Demonstration</a>
</li>
<li>
<a href="https://github.com/JOwen-ster/FULLYHACKS_NEONTOOTH" class="button --glow" target="_blank">Download</a>
</li>
</ul>
<h1 class="title">What is NeonChat?</h1>
</div>
<div class = "about">
<p class="About"> NeonChat is a program created for CSUF's FullyHacks 2024.
Made using Python, it allows users to communicate with one another via Bluetooth without the need of an internet connection.
</p>
</div>
</body>
</html>