Create registration form in html using table

MakeEverything5Okay everyone Now we will try to make a registration form using a table with html and SQL let's just create a folder first in our document we create a registration folder then we open it in the side of the text open folder we open the registration form here we make it like before we give it the name register.com then we make the css directly first make the hTM ldr registration from then we make the table like yesterday the table if the row uses new in <tr> then for the column for example here I make some input here there is input follow with text input then the second row there is email for example the tab input is email then Mbak when we use a cellphone there is email for example there is a password then add again from enter password invited password here the tab is password using password this is also password okay let's see the results first this is the result until like this oh we should wrap it with TR also the second row the third row in the area again the fourth row like this so this is neat yes if this is why I try to give order your name email this is okay now like this I will wait for the process so that it is good from it but this for example the table yes we give border tests Our border is one Solid first I use it just multiply it here we go to the middle this is the text that we know then we place the database can't okay for example here we give a title so that it's good and other architects are like this for example below we give a button yes so that it's good here join or like this it's not good we make a join body then there is another button here my example is the limit here for the padding 5 pixels the order is one to solid the color code is orange background just try to say like this the result then for the next CSS you can improvise according to your wishes here we just look for an example of the product we can okay like this example that's all the tutorial this time Thank you and see you guys

Tutorial videos of Create registration form in html using table



Conclusion


In registrationform.html type:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Registration Form</title>
</head>
<link rel="stylesheet" type="text/css" href="styles.css">
<body>
<div class="reg-title">Registration Form</div>
<center>
<table>
<tr>
<td>Your Name</td>
<td><input type="text" name=""></td>
</tr>
<tr>

<td>Email</td>
<td><input type="email" name=""></td>

</tr>
<tr>

<td>Password</td>
<td><input type="password" name=""></td>

</tr>
<tr>

<td>Re-enter Password</td>
<td><input type="password" name=""></td>

</tr>
<tr>
<td><button>Join</button></td>
<td><button>Cancel</button></td>
</tr>
</table>
</center>
</body>
</html>
In styles.css type:
table{
text-align: left;
}
.reg-title{
font-weight: bold;
text-align: center;
}
button{
padding: 5px;
background-color: #3ac451;
}

0 Response to "Create registration form in html using table"

Posting Komentar