-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (33 loc) · 1.2 KB
/
Copy pathindex.html
File metadata and controls
36 lines (33 loc) · 1.2 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Facebook</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<div class="intro">
<img class="logo" src="logo.svg" alt="Facebook">
<h2>O Facebook ajuda você a se conectar e compartilhar com as pessoas que fazem parte da sua vida.</h2>
</div>
<div>
<form>
<input type="text" placeholder="E-mail ou telefone">
<input type="password" placeholder="Senha">
<button class="entrar">Entrar</button>
<a href="https://pt-br.facebook.com/login/identify/?ctx=recover&ars=facebook_login&from_login_screen=0">Esqueceu a senha?</a>
<button class="criar-conta">Criar nova conta</button>
</form>
<p><a href="https://pt-br.facebook.com/pages/create/?ref_type=registration_form">Criar uma Página</a>para uma celebridade, banda ou empresa.</p>
</div>
</div>
<footer>Facebook © <span id="year">2021</span></footer>
<script>
const year = document.queryselector("year");
const actualYear = new Date();
year.innerHTML = actualYear.getFullYear();
</script>
</body>
</html>