Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 71 additions & 0 deletions hah.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
*{

font-family: 'Century Gothic';
}

h1{

text-align: center;
}

.form{

text-align: center;

}


.hi{

padding: 50px;
background color: #3E92CC;
padding: 14px 25px;


}

.body{
padding:px;

}

.heh{

padding: 15px;
margin-bottom: 15px;


}

a:link, a:visited {
background-color: #3E92CC;
color: white;
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
margin: 10px;
border-radius: 10px;
width: 10%;

}

h4{


text-align: center;
}

.btns input{

background-color: #1E1B18;
color: white;
padding: 18px;
width: 7%;
border-radius: 15%;

}




44 changes: 44 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html>
<head>
<title>Sign Up </title>
<link rel="stylesheet" type="text/css" href="hah.css">
</head>
<body>

<section class="form">

<h1>Login</h1>




<div>
<section class="hi">
<a href="https://www.facebook.com" class="hi">Login with Facebook</a>
<br>
<a href="https://www.twitter.com" class="hi">Login with Twitter</a>
</section>


</div>

<h4> Login with Email </h4>
<div class="body">
<input class="heh" type="text" name="txtName" placeholder="Email" required>
<br>
<input class="heh" type="password" name="txtPass" placeholder="Password" required>
</div>

<div class="btns">
<input type="submit" value="Login" name="btnSubmit">




</div>



</body>
</html>