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
38 changes: 38 additions & 0 deletions New folder/hakdog.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
<head>
<title>A Form</title>
</head>
<body>
<link rel="stylesheet" href="temp.css">
<section class="form">
<div class="form-title">
<button><a class="Home" href="profile.html">Home</a></button>
<center><h1>Login</h1></center>
</div>

<div>
<center><a class="FB" href="facebook.com">Facebook</a></center>
</div>
<div>
<center><a class="GM" href="gmail.com">Gmail</a></center>
</div>


<center><div class="form-body">
<form name="contactform" action="#" method="">
<div>
<input type="text" name="TxTNameNEmail" placeholder="Your Username/Email" required>
<br>
<input type="password" name="TxTPass" placeholder="Your Password" required>


</div>

<div class="btns">
<input type="Submit" value="Submit" name="btnSubmit">
<input type="reset" value="Clear" name="btnClear">
</div></section></center>

</body>
</html>
69 changes: 69 additions & 0 deletions New folder/temp.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
h1{
color: white;
}

div {
margin: 25px;
}

.FB{
padding-top: 10px;
padding-right: 40px;
padding-left: 40px;
padding-bottom: 10px;
text-decoration: none;
background-color: #19323C;
text-align: center;
color: white;
border-radius: 5%;

}

.Home {

color: hotpink;
text-decoration: underline;
text-decoration: none;
border-radius: 12px;
background-color: #19323C;
color: white;
padding: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;

}

.GM{
padding-top: 10px;
padding-right: 51px;
padding-left: 51px;
padding-bottom: 10px;
text-decoration: none;
background-color: #19323C;
text-align: center;
color: white;
border-radius: 5%;

}

.form{
border: #19323C 5px solid;
background-color: #4E6151;
}

input[type=text], input[type=password]{
color: black;
background-color: white;
width: 20%;
border: #b6f0ff;
border-bottom: 2px;
margin-top: 20px;
margin-bottom: 20px;
padding:5px;


}