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
Binary file added HTMLFORM/Images/bg1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 13 additions & 2 deletions HTMLFORM/src/Formdesign.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,18 @@ table {
font-size: 100%;
font-weight: bold;
}
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background: url(../Images/bg1.jpg);
}

h1 {
color: #ea503f;
font-family: Arial;
color: #000000;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.bg {
background-image: url("bg1.jpg");
height: auto;
}
60 changes: 52 additions & 8 deletions HTMLFORM/src/index.html
Original file line number Diff line number Diff line change
@@ -1,35 +1,79 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="Formdesign.css" />
<link rel="stylesheet" href="Formdesign.css"/>
<h1>Company Registration Form</h1>
<p>Please fill in this form to create an account.</p>

</head>
<body>

<form>
<table>
<tr>
<hr>
<td>Name:</td>

<td>
<input type="”name”" placeholder=" " name="””" />
</td>
</tr>
<tr>

<td>Email Address:</td>

<td>
<input type="”mail”" placeholder="”Email”" name="””" />
<input type="”mail”" placeholder=" " name="””" />
</td>
</tr>
<tr>
<td>Password:</td>

<td>
<input type="”Password”" placeholder="”Password”" name="””" />
<input type="”Password”" placeholder=" " name="””" />
</td>
</tr>

<td>Phone Number:</td>

<tr>
<td>Gender:</td>
<td><input type="checkbox" name="Male" value="Male" /> Male<br /></td>
<td>
<input type="checkbox" name="Female" value="Female" /> Female<br />
<input type="”Phone number”" placeholder=" " name="””" />
</td>
</tr>
</tr>

<tr>
<td>Gender:</td>
<td><input type="checkbox" name="Male" value="Male" /> Male<br /></td>
<td>
<input type="checkbox" name="Female" value="Female" /> Female<br />
</td>
</tr>

<td>Location:</td>

<td>
<input type="”location”" placeholder=" " name="””" />
</td>
</tr>

<td>Postal Code:</td>

<td>
<input type="”postal code”" placeholder=" " name="””" />
</td>
</tr>


</table>

<p>By creating an account you agree to our <a href="#" style="color:dodgerblue">Terms & Privacy</a>.</p>

<button type="submit" class="registerbtn">Register</button>
</div>

<div class="container signin">
<p>Already have an account? <a href="#">Sign in</a>.</p>
</form>
</body>
</html>