0% found this document useful (0 votes)
5 views

Documento 3

The document contains HTML and CSS code for a PayPal registration page, including a form for user input such as email, phone number, names, surname, and password. It features a styled layout with links for login and navigation, and includes responsive design elements. Additionally, there is a second HTML document that indicates a continuation message.

Uploaded by

pjordy228.psac
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views

Documento 3

The document contains HTML and CSS code for a PayPal registration page, including a form for user input such as email, phone number, names, surname, and password. It features a styled layout with links for login and navigation, and includes responsive design elements. Additionally, there is a second HTML document that indicates a continuation message.

Uploaded by

pjordy228.psac
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

HTML.

<!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>PayPal</title>

<link rel="stylesheet" href="style.css">

<link rel="stylesheet" href="jhcruz.js">

</head>

<body>

<div class="b2"> <a href="conec.html"><b>Inicie sesión</b></a> </div>

<div class="jh10"> <img src="p..png"> </div> <br>

<div class="jh9"> <h2>Regístrese en PayPal</h2> </div> <br>

<div class="jh8"> <p>Una forma fácil de pagar y recibir pagos</p> </div>


<br> <br>

<form>

<div class="correo">

<label><b>Correo</b></label>

</div>
<div class="jh1"> <input type="email"
placeholder="Correo electrónico" size="50" maxlength="50">

</div> <br> <br>

<div class="numero">

<label><b>Número de</b></label>

</div>

<div class="jh2"> <input type="tel"


placeholder="Número de teléfono" size="50" maxlength="12"> </div> <br> <br>

<div class="nombre">

<label><b>Nombres</b></label>

</div>

<div class="jh3"> <input type="text"


placeholder="Nombres" size="22" maxlength="10"> <input type="text"
placeholder="Segundo nombre" size="22" maxlength="10"> </div> <br> <br>

<div class="apellido">

<label><b>Apellido</b></label>

</div>

<div class="jh4"> <input type="text"


placeholder="Apellido" size="50" maxlength="20"> </div> <br> <br>

<div class="contraseña">

<label><b>Contraseña</b></label>

</div>

<div class="jh5"> <input type="password"


placeholder="Cree su contraseña de PayPal" size="50" maxlength="15"> </div>
<br> <br>

<div class="contraseña2">

<label><b>Confirme Su</b></label>

</div>

<div class="jh6"> <input type="password"


placeholder="Confirme su contraseña de PayPal" size="50" maxlength="15">
</div> <br> <br>

<div class="b1"> <a href="conec.html"><b>Siguiente</b></a> </div>


<div class="z1"><img src="zzz.png" alt=""></div>

</form>

</body>

</html>

CSS.
.jh1

text-align: center;

height: 0px;

.jh2

height: 0px;

text-align: center;

.jh3

height: 0px;

text-align: center;

}
.jh4

height: 0px;

text-align: center;

.jh5

height: 0px;

text-align: center;

.jh6

height: 0px;

text-align: center;

.jh8

height: 0px;

text-align: center;

.jh9

height: 30px;

text-align: center;

}
.jh10

height: 40px;

text-align: center;

.correo

position: absolute;

left: 500px;

font-size: 20px;

.numero

position: absolute;

left: 470px;

font-size: 20px;

.nombre

position: absolute;

left: 480px;

font-size: 20px;
}

.apellido

position: absolute;

left: 480px;

font-size: 20px;

.contraseña

position: absolute;

left: 470px;

font-size: 20px;

.contraseña2

position: absolute;

left: 460px;

font-size: 20px;

@import url('https://fonts.googleapis.com/css2? family= Nunito:ital,wght@1,700


& display=swap');
*{

padding: 0;

margin: 0;

box-sizing: border-box;

body{

font-family: 'Nunito', sans-serif;

.b1{

position: absolute;

width: 150px;

left: 685px;

text-decoration: none;

padding: 10px 20px;

background: #039be5;

color: #ffffff;

border-radius: 50px;

transition: transform 0.3s ease;

.b1::after, .b1::before{

content: "";

position: absolute;

opacity: 0.3;
background: #039be5;

border-radius: inherit;

width: 100%;

height: 100%;

left: 0;

bottom: 0;

z-index: -1;

transition: transform 0.3s ease ;

.b1:hover{

transform: translate(-12px, -12px);

.b1:hover::after{

transform: translate(6px, 6px);

.b1:hover::before{

transform: translate(12px, 12px);

.z1{

padding: 60px 10px;

width: 0px;

height: 0px;

position: absolute;

left: 740px;

}
.b2{

position: absolute;

left: 900px;

padding: 10px 20px;

text-decoration: none;

HTML2.
<!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>PayPal</title>

</head>

<body>

<h1>Continuara...</h1>

</body>

</html>

You might also like