-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (41 loc) · 1.36 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home - PyeChat</title>
<link rel="icon" type="image/png" href="elitechat.png">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="header">
<div class="logo-container">
<h1>PyeChat</h1>
</div>
<nav>
<ul>
<li><a href="index.html"><button>Install</button></a></li>
<li><a href="https://github.com/pyechat"><button>GitHub</button></a></li>
<li><a href="news.html"><button>News</button></a></li>
</ul>
</nav>
</header>
<main class="container">
<section class="main">
<h2>About the Client</h2>
<p>PyeChat is a modern, user-friendly IRC client built with PyQt. It's inspired by the design and functionality of HexChat.</p>
<!-- Add your screenshot here -->
<img class="screenshot" src="screenshot.png" alt="Screenshot of the app">
</section>
<aside class="sidebar">
<h3>Features</h3>
<ul>
<li>Feature 1</li>
<li>Feature 2</li>
<li>Feature 3</li>
</ul>
</aside>
</main>
<script src="script.js"></script>
</body>
</html>