-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (52 loc) · 1.97 KB
/
index.html
File metadata and controls
60 lines (52 loc) · 1.97 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Poppins:400,500" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Fredoka+One" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
</head>
<body>
<header class='headerClass'>
<i class="fas fa-cat"></i> Something Like Twitter
</header>
<main class='main-column display-flex'>
<section class='profile-section'>
<div class='div-profile-pic profile-pic'></div>
<div>
<h1 class='profile-name'>Crazy Cat Lady</h1>
<h2 class='user'>@crazycatlady</h2>
<div class='bio'>
<p>Oi eu gosto de gatos e de cheetos sabor requeijão.</p>
</div>
</div>
</section>
<section>
<section class='main-sections pad1'>
<form method="get">
<textarea name="insert text" onkeyup="enableButton()" id='insert-text' cols='72' rows='0' placeholder='fale o que te aflige'></textarea>
<section id='buttonAndCounter' class='display-flex'>
<input disabled type='submit' value='Enviar' id='buttonId' class='button' />
<spam id='remainingChar'></spam>
</section>
</form>
</section>
<section class='main-sections pad2 hide'>
<div class='feed display-flex'>
<h1 class='titleFeed'>Feed <i class="fas fa-arrow-circle-down"></i></h1>
</div>
<div id='feedId' class='textFeed display-flex'>
</div>
</section>
</section>
</main>
<footer>
</footer>
<script src="main.js"></script>
</body>
</html>