elm/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Chat</title>
<link rel="icon" type="image/png" href="https://www.dwyl.com/img/favicon.ico">
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.7.0/css/tachyons.min.css">
</head>
<body id="container">
<div id="app"></div>
<style>
.h3_5 {
height: 5rem;
}
.pb5rem {
padding-bottom: 5rem
}
.animation {
animation-name: fade-out;
animation-duration: 2s;
animation-timing-function: ease-in;
}
@keyframes fade-out {
from {
background-color: #f4f4f4;
}
to {
background-color: white;
}
}
</style>
<script src="https://cdn.socket.io/socket.io-1.3.5.js"></script>
<script src="js/app.js"></script>
<script src="js/javascript.js"></script>
</body>
</html>