-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfriends.html
More file actions
45 lines (40 loc) · 1.15 KB
/
Copy pathfriends.html
File metadata and controls
45 lines (40 loc) · 1.15 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
43
44
45
<!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'" disabled>
      
<input type=button value="Groups" onclick="location='groups.html'">
      
<input type=button value="Conversations" onclick="location='conversations.html'">
      
      
      
      
Naveen Jetty      
<input type=button value="logout" onclick="location='login.html'">
<br><br><br>
<h2>Friends List</h2><br><br>
<select name=friends size=3>
<option>Friend1</option>
<option>Friend2</option>
<option>Friend3</option>
</select>
<br><br>
<input type=text value="Enter mail id to invite new friends"><input type=button value=invite>
</form>
</div>
</center>
</body>
</html>