-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHome.html
More file actions
42 lines (38 loc) · 1.09 KB
/
Copy pathHome.html
File metadata and controls
42 lines (38 loc) · 1.09 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
42
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body BGCOLOR="#000000" TEXT="#80c0c0" LINK="#ff8080">
<center>
<div id="wrap">
<div id="header">
<h1><a href="#">CHAT APPLICATION</a></h1>
</div>
<div id="top"> </div>
<form>
<input type=button value="Friends" onclick="location='friends.html'">
      
<input type=button value="Groups" onclick="location='groups.html'">
      
<input type=button value="Conversations" onclick="location='conversations.html'">
      
      
      
      
KaushikPidugu      
<input type=button value="logout" onclick="location='login.html'">
<br><br><br><br><br>
<h2>Recent Conversations</h2>
<select name="Recent Conversations" size="5">
<option>Friend1:ssd...</option>
<option>Group1:sdas...</option>
<option>Friend2:sdas....</option>
</select>
</form>
</div>
</center>
</body>
</html>