-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (36 loc) · 1.95 KB
/
index.html
File metadata and controls
42 lines (36 loc) · 1.95 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="https://cdn.discordapp.com/attachments/951417646191083551/1119215559343616061/speech-bubble.png" type="image/x-icon">
<meta name="description" content="JustChat - A live chat website with self-hosted rooms and no login required. Join the conversation and chat with others in real-time.">
<meta name="keywords" content="JustChat, live chat, chat website, self-hosted rooms, no login required">
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="JustChat">
<meta property="og:description" content="JustChat - A live chat website with self-hosted rooms and no login required. Join the conversation and chat with others in real-time.">
<meta property="og:image" content="https://cdn.discordapp.com/attachments/951417646191083551/1119215559343616061/speech-bubble.png">
<meta property="og:url" content="https://justct.github.io/">
<meta property="og:type" content="website">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:title" content="JustChat">
<meta name="twitter:description" content="JustChat - A live chat website with self-hosted rooms and no login required. Join the conversation and chat with others in real-time.">
<meta name="twitter:image" content="https://cdn.discordapp.com/attachments/951417646191083551/1119215559343616061/speech-bubble.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Chat Room Discovery</title>
</head>
<body>
<header>
<h1>Chat Room Discovery</h1>
<a href="creation.html" class="top-button">Create a Chat Room</a>
</header>
<main>
<div id="search-container">
<input type="text" id="search-input" placeholder="Search">
<button id="search-button">Search</button>
</div>
<div id="room-list"></div>
</main>
<script src="script.js"></script>
</body>
</html>