-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (50 loc) · 2.28 KB
/
index.html
File metadata and controls
52 lines (50 loc) · 2.28 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
<!DOCTYPE html>
<html lang="es">
<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">
<title>Biblioteca</title>
<link rel="icon" href="IMG/icono-libro.jpg">
<link rel="stylesheet" href="CSS/index.css">
</head>
<body background="IMG/books.jpg">
<header>
<div class="container justify-content-center">
<div class="container mt-5">
<div class="row">
<div class="col-md-6">
<div class="card">
<form>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div>
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Check me out</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
</header>
<main>
</main>
<footer class="footer">
<div class="copyrigth">
<p style="color: white">© 2022 | Proyecto de La Banda | V 1.0 - Proyecto de Administracion de Base de Datos -
<a href="https://www.ifts18.edu.ar/" target="_blank">IFTS18</a>
</p>
</div>
</footer>
</body>
</html>