-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
26 lines (25 loc) · 942 Bytes
/
index.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
<html>
<head>
<title>eTalk2Me</title>
<link rel="stylesheet" type="text/css" href="/css/2me.css">
</head>
<body id="body-etalk2me">
<div class="editor">
<img src="/images/logo-into.png" class="logo">
<input class="mensagem" maxlength="250" placeholder="Conectando..." type="text" onfocus="onfocus" id="saidaChat" readonly="readonly">
<div class="option">
<input type="checkbox" checked="checked" id="autoscroll" value="autoscroll"> AutoScroll
</div>
<div class="cont">
250
</div>
</div>
<div class="container">
<div class="mensagens-enviadas"><ul id="entradaChat"></ul></div>
</div>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,800' rel='stylesheet' type='text/css'>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script src="/js/2me.js"></script>
</body>
</html>