-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (41 loc) · 1.87 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
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
<!DOCTYPE html>
<html lang="en">
<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="./css/styles.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<title>APP CONCEPT</title>
</head>
<body>
<H1>BIENVENIDO</H1>
<div class="container">
<form class="form" action="">
<label for="mail">Ingresa tu correo</label>
<input type="email" name="mail" id="email" autocomplete="email" required>
<label for="password">Ingresa tu contraseña</label>
<input type="password" name="password" id="password" autocomplete="current-password" required>
<button type="submit">Iniciar Sesión</button>
</form>
</div>
<p class="texto1">
O Inicia Sesion Con
</p>
<div class="login-redes">
<button class="login-facebook">Facebook</button>
<button class="login-google">Google</button>
</div>
<!--Navigation Bar Footer-->
<div class="footer">
<div class="navigation-bar">
<a class="home" href="index.html"><i class="fas fa-home fa-2x"></i></a>
<a class="search" href="search.html"><i class="fas fa-search fa-2x"></i></a>
<a class="new" href="new.html"><i class="fas fa-plus fa-2x"></i></a>
<a class="navigate" href="navigate.html"><i class="fas fa-compass fa-2x"></i></a>
<a class="profile" href="profile.html"><i class="fas fa-user fa-2x"></i></a>
</div>
</div>
<script src="https://use.fontawesome.com/473b36b43a.js"></script>
</body>
</html>