-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
43 lines (43 loc) · 1.35 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
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=PT+Mono" rel="stylesheet">
<title>Twitter</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
</head>
<body>
<header>
<img src="views/twitterbird.png" height="45px" width="45px" alt="logo">
<h2> Twitter</h2>
</header>
<div class="container">
<section class="left">
<h1>Reto de código</h1>
<p>Hola,</p>
<p>soy front-end developer jr.</p>
<hr>
<p class="green"><strong>CÓDIGO</strong></p>
</section>
<section class="right">
<p>¿Qué estás pasando?</p>
<form>
<textarea id="tweet" name="name" rows="4" cols="50" contenteditable="true"></textarea>
</form>
<hr>
<button disabled id="submit-tweet" type="button" name="TWEET"><p>TWEET</p></button>
<div class="textcounter">
<p id="available-characters">140</p>
</div>
</section>
</div>
<section id="tweets">
<article class="tweet">
<p class="tweet-content"></p>
</article>
</section>
<script src="js/moment.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>