forked from Laboratoria/DEV007-card-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.06 KB
/
index.html
File metadata and controls
43 lines (39 loc) · 1.06 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
<!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">
<title>Continue</title>
<link href="src/style.css" rel="stylesheet">
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-image: url("src/fondo.png");
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
button {
padding: 10px 20px;
margin-left: 5px;
border-radius: 20px;
border-width: 0px;
background-color: rgb(162, 153, 153);
}
</style>
</head>
<body class="continue">
<main>
<div class="recuadro">
<p>Elegiste crédito como medio de pago</p>
<p>Ingresa los datos de tu tarjeta de crédito para continuar con la transacción </p>
<br>
<button class="siguiente" onclick="window.location.href='src/index.html'">Siguiente</button>
</div>
</main>
</body>
</html>