-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (50 loc) · 1.92 KB
/
index.html
File metadata and controls
66 lines (50 loc) · 1.92 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
65
66
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<title>Instagram</title>
</head>
<body>
<div class="container-img">
<img src="./img/celular.png" class="img-celular">
<img src="./img/insta1.png" class="img-alternativa">
<img src="./img/insta2.png" class="img-alternativa" id="troca-imagem">
</div>
<div class="container-itens-left">
<div class="container-forms">
<img src="./img/insta-logo.png" class="insta-logo">
<input placeholder="Telefone, nome de usuário ou email">
<input placeholder="Senha">
<button>Entrar</button>
<a href="https://josuedevgit.github.io/" style="text-decoration:none" class="login-facebook">Entrar com o
Facebook</a>
<a href="#" style="text-decoration:none" class="esqueceu-conta">Esqueceu a senha?</a>
</div>
<div class="container-conta">
<p class="paragrafo-conta">Não tem uma conta?</p><a href="https://www.instagram.com/josueluzsilva.01/"
style="text-decoration:none" class="link-cadastro">Cadastre-se</a>
</div>
<p class="paragrafo-app">Obtenha o aplicativo</p>
<div class="container-logo">
<img src="./img/ios.png" alt="logo do IOS" class="logo-app">
<img src="./img/google.png" alt="logo do Google Play" class="logo-app">
</div>
</div>
</body>
<script>
let imagem = document.getElementById("troca-imagem")
function trocaImagem() {
if (imagem.style.opacity == 0) {
imagem.style.opacity = 1
} else {
imagem.style.opacity = 0
}
}
setInterval(function () {
trocaImagem()
}, 4000);
</script>
</html>