-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat.html
86 lines (82 loc) · 1.72 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<html>
<head>
<title>
Chat
</title>
<link rel="stylesheet" href="chat.css">
<!--script src="chat.js"></script-->
</head>
<body>
<div id="first">
<div id="minombre">
<img id="avatar" src="husky.jpg">
<h2>Mi nombre</h2>
</div>
<div id="chat1">
<img id="avatar" src="manati.jpg">
<h3>Manan</h3>
<p>Soy un manati</p>
</div>
<div id="chat1">
<img id="avatar" src="bear.jpg">
<h3>Fefi</h3>
<p>Soy un oso</p>
</div>
<div id="chat1">
<img id="avatar" src="lion.jpg">
<h3>Leo</h3>
<p>Soy un leon</p>
</div>
</div>
<div id="second">
<div id="chat">
<img id="avatar" src="manati.jpg">
<h2>Manan</h2>
</div>
<div id="habla">
<div id="p1">
Hola
</div>
<div id="p2">
Hola
</div>
<div id="p1">
Chau
</div>
<div id="p2">
Soy un manati
</div>
<div id="p1">
Hola
</div>
<div id="p2">
Hola<br>
Hois<br>
Holiwis
</div>
<div id="p1">
Chau
</div>
<div id="p2">
Soy un manati
</div>
<div id="p1">
Hola
</div>
<div id="p2">
Hola
</div>
<div id="p1">
Chau
</div>
<div id="p2">
Soy un manati
</div>
</div>
<div id="textbox">
<textarea placeholder="Type here to chat..." cols="85" rows="5"></textarea>
<button type="button"><img src="Telegram_Messenger.png" height=55 width=55></button>
</div>
</div>
</body>
</html>