-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (30 loc) · 1009 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
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Twitter</title>
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Istok+Web|Lora:700" rel="stylesheet">
</head>
<body>
<header>
<h1>Twitter</h1>
<img src="img/twitter.png">
</header>
<main>
<section class="twittar">
<h2>Compartilhe aqui seus sentimentos, pensamentos e ideias!</h2>
<textarea id="tweet" rows="1" cols="70" placeholder="Digite aqui sua mensagem..."></textarea>
<strong>140</strong> caracteres restantes.
<input type="submit" id="btnTwittar" value="Twittar" disabled>
</section>
<section>
<ul>
</ul>
</section>
</main>
<script src="js/twitter.js"></script>
</body>
</html>