Signup.html same as login.html

<html>

<head>

 </head> 

<body>

<style> @font-face {

font-family: 'Bubbler One', sans-serif;

src:
@import url('https://fonts.googleapis.com/css2?family=Bubbler+One&display=swap');

}

div {
font-family: 'Bubbler One', sans-serif;

}
</style>
<div class="parent">

<img class = "back" src="https://blogger.googleusercontent.com/img/a/AVvXsEh85ox8jBbCr2lUT-wVmJ5jwmJfBS-CLygYZGHn B-Aq5eyXiXMNUbl6wI641_G4ss5eDNC8e3R5NoyQ3YWbwaXj9mQFU7AYvuxHLf-gJm2VJ4RHTyb0Tme TiSiJU5e6U2U5mCUICfsh-UExbYLmkxkSz8HPbfHNpULQmxTmSBiuB2uXT0p1gxLQxbZ2=w662-h399" alt="Italian Trulli" width = "100%" height = "100%"/>

<a href="./start.html"> <img class = "logo"

src="https://blogger.googleusercontent.com/img/a/AVvXsEj0AZIQymK13uWtKXYSvOcMk7gl8wgqEOAR_l 5jcxBw1SAS2ksZ6PS269ppdRPqcjn1sXGq9E4pzLTnvXWFGZIT1pITlPR4jiu6CDlmu1EKem3ovZ9LWxQC jrfAdV4LsG61vIGTjUYlU4zFGvSZherjyc_3tw2ZczvKWj2ki2mEQWymU60eHXyCJKnv=s320" width = "20%" height = "20%"/>

</a>

<div class="about"><a style="color:gray; text-decoration:none" href="./about.html">about us</a></div> <div class="help"><a href="./help.html" style="color:gray; text-decoration:none">help</a></div>
<div class="signup"><a href="./signup.html" style="color:gray; text-decoration:none">Sign Up</a></div> <div class="login"><a href="./login.html" style="color:black; text-decoration:none">login</a></div> </div>

<style>
/* Container holding the image and the text */ .parent {

position: relative; top: 0;
left: 0;

}

.back {
position: relative; top: 0;

left: 0; }

.logo{
position: absolute;
top: 7%;
left: 16%;
width: 230px;
height: 47px;
overflow: hidden;
transform: translate(-50%, 50%);

}

/* Bottom left text */ .about {

position: absolute;
top: 13.5%;
left: 30%;
transform: translate(-50%, -50%); font-size: 20px;

}

/* Top left text */ .help {

position: absolute;
top: 13.5%;
left: 41%;
transform: translate(-50%,-50%); font-size: 20px;

}

/* Top right text */ .signup {

position: absolute;
top: 13.5%;
right: 22%;
transform: translate(-50%, -50%); font-size: 20px;

}

/* Bottom right text */ .login {

position: absolute;
top: 14%;
right: 12%;
transform: translate(-50%, -50%);

font-size: 25px; }

</style>

 </body>

</html> 

Comments