-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (50 loc) · 2.05 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
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head lang="es">
<meta charset="utf-8">
<title>Twitter</title>
<link href="https://fonts.googleapis.com/css?family=Lato|Roboto|Source+Sans+Pro" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" />
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!--Encabezado de la página, separé los elementos en grupos para
manejarlos mucho mejor, y agregue los íconos-->
<header class="t-a-c">
<nav class="f-l">
<p><i class="fa fa-home" aria-hidden="true"></i>Inicio</p>
<p><i class="fa fa-bolt" aria-hidden="true"></i>Momentos</p>
<p><i class="fa fa-bell" aria-hidden="true"></i>Notificaciones</p>
<p><i class="fa fa-envelope" aria-hidden="true"></i>Mensajes</p>
</nav>
<i id="logo" class="fa fa-twitter fa-2x" aria-hidden="true"></i>
<nav class="f-r">
<input type="text" name="Busqueda" value="" placeholder="Buscar en Twitter">
<img src="assets/images/user-logo.jpg" alt="Photo">
<button type="button" name="button">Twittear</button>
</nav>
</header>
<section id="section_1" class="f-l" >
<div class="info-user">
<img class="f-l" src="assets/images/user-logo.jpg" alt="User">
<p class="name">CODEHOUND</p>
<p class="link">@CODEHOUND</p>
</div>
</section>
<section id="section_2" class="f-l">
<div class="message-container">
<textarea id="message" placeholder="¿Qué está pasando?"></textarea>
<input id="counter" type="button" value="140"></input>
<input class="f-r" id="twittear" type="submit" value="Twittear">
</div>
</section>
<section id="twitts_container" class="f-l">
<!--<div class="twitt">
<p class="name">CODEHOUND <span>@CODEHOUND</span><p>
<p>Este es un ejemplo del mensaje que enviaría un usuario</p>
<p></p>
</div>-->
</section>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>