-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (28 loc) · 1.02 KB
/
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
27
28
29
30
<html lang="es">
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="icon" href="icon.png"/>
<!--<script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"></script>-->
<script type="text/javascript" src="jquery.min.js"></script>
<!--<script src="https://cdn.socket.io/socket.io-1.2.0.js"></script>-->
<script type="text/javascript" src="socketIo/socket.io.js"></script>
<script type="text/javascript" src="script.js"></script>
<!--Creación absoluta de Carlos Chavez Laguna-->
<title>FREECHAT</title>
</head>
<body>
<form id="frm">
<fieldset>
<legend>FreeChat</legend>
<div class="chat"></div>
<center>
<input id="emisor" placeholder="Nickname" value="" required/>
<textarea id="msj" placeholder="Cuéntanos algo :)" rows="6" cols="50"></textarea>
<input id="enviar" type="submit" value="Enviar"/>
</center>
</fieldset>
<div style="float:right;font-size:0.5em">By Carlos Chavez Laguna</div>
</form>
</body>
</html>