-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (43 loc) · 2.41 KB
/
Copy pathindex.html
File metadata and controls
64 lines (43 loc) · 2.41 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="pt">
<head>
<title>Criptweet</title>
<meta charset="utf-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> </head>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon_package_v0.16/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon_package_v0.16/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon_package_v0.16/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon_package_v0.16/favicon-16x16.png">
<link rel="manifest" href="images/favicon_package_v0.16/site.webmanifest">
<link rel="mask-icon" href="images/favicon_package_v0.16/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div class="container">
<h1 style="color: #1DA1F2;"> Criptweet </h1>
<div class="content">
<div class="row">
<div class="col-sm-12 col-lg-6">
<label>Seu tweet</label>
<br>
<textarea type = "text"
id = "tweetText"
placeholder= "Escreva seu tweet aqui"></textarea>
<div class="caracteres">Caracteres restantes: 280</div>
<button class="btn btn-primary" process id="codificador" style="margin-bottom: 20px;">Codificar</button>
<br>
</div>
<div class=" col-sm-12 col-lg-6">
<label>Seu tweet codificado</label>
<textarea type = "text"
id = "resultado"></textarea>
<button class="btn btn-info btn-sm" id="copiar">Copiar</div>
</div>
</div>
</div>
</div>
<script src = "index.js"></script>
</body>
</html>