-
Notifications
You must be signed in to change notification settings - Fork 0
/
chat.html
25 lines (25 loc) · 862 Bytes
/
chat.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Email List</title>
<link href="https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="chats.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
</head>
<body>
<div class="email-container">
<h2>Matches</h2>
<ul class="email-list">
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
<!-- Add more email list items here -->
</ul>
</div>
<a href="mainPage.html" class="redirect-button">
<i class="fa-solid fa-heart"></i>
</a>
</body>
</html>