-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (26 loc) · 921 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
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Twitter Project</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<h1>Twitter</h1>
</header>
<form>
<div>
<textarea id="input" name="data" rows="6" cols="50" onKeyDown="autoResize()" onKeyUp="count()"
placeholder="O que temos para contar hoje?"></textarea>
<input type="text" id="counting" name=characters size=4>
<input type="submit" class="button" id="tweet" value="Tweetar"></imput>
</div>
</form>
<div id="writtenTweet"></div>
<script type="text/javascript" src="app.js"></script>
<script type="text/javascript" src="moments.js"></script>
</body>
</html>