-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.26 KB
/
index.html
File metadata and controls
41 lines (41 loc) · 1.26 KB
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
<!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</title>
<link href="https://fonts.googleapis.com/css?family=Rokkitt:400,500,600,700" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<div class="textHeader">
<h1>Twitter</h1>
</div>
</header>
<section>
<div id="container">
<div class="box-info">
<h2>Reto de Código</h2>
<p>Hola, <br> soy front-end developer jr.</p>
<hr>
<p>CÓDIGO</p>
</div>
<div class="box-form">
<form>
<textarea type="text" id="catch-post" rows="3" placeholder="¿Qué estás pensando?"></textarea>
</form>
<div class="button-counter">
<button type="submit" id="save-post" class="btn">TWEET</button>
<p class="counter">140</p>
</div>
</div>
</div>
<div id="container-posts">
</div>
</section>
<script type="text/javascript" src="js/vendors/moment.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>