-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
35 lines (35 loc) · 1.04 KB
/
index.php
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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chat Interface</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="welcome-container">
<h1 class="welcome-text">Welcome Advisor</h1>
</div>
<div class="navbar">
<a href="#Home">Chat</a>
<a href="#profile">Profile</a>
</div>
<div class="card">
<h2 class="card-title">Contacts</h2>
<ul class="contact-list">
<li>Contact 1</li>
<li>Contact 2</li>
<li>Contact 3</li>
<!-- Add more contacts as needed -->
</ul>
</div>
<div class="new-card">
<h2 class="new-card-title">Additional Info</h2>
<p>This is some additional information.</p>
</div>
</div>
<div class="textbox-container">
<textarea class="textbox" placeholder="Enter your text here"></textarea>
</div>
</body>
</html>