Wednesday, August 16, 2023

Creating a form for Beginners


<html>
<head><title>form</title>
</head>
<body>
<form method="post">
<table border="5" cellspacing="12" 

cellpaddind="12">
<caption> Manish kundu</caption>
<tr>
<td>Enter your Name</td>
<td><Input type="text"></td>
</tr>
<tr>
<td><lable>Enter Your 

Password</lable></td>
<td><input type="Password"></td>
<tr>
<td>Enter Date of Birth</td>
<td><input type="number"></td>
<tr>
<td>Phone no.</td>
<td><Input type="number"></td>
</tr>
<tr>
<td>Email id</td>
<td><Input type="text"></td>
</tr>
<tr><td><input type="submit" 

value="submit"><a 

href="https://google.com">submit<

/a></td>
<td><input type="Button" 

value="Back"></td>
<td><input type="Reset" 

value="Reset"></td>

</tr>

</body>
</html>

If we are creating a website like beginners than try this structured. Codes





 <html>

<head>

</title>website of gallery</title>

<style>

*{

   box-sizing:border-box;

}

box{

       margin:0;

       background:white;

}

nav{

      background:#594848;

      width:100%;

      overflow:auto;

}

ul{

    margin:0;

    padding:0;

    list-style:none;

}

li{

   float:right;

}

nav a{

        width:100px;

        display:block;

        text-decoration:none;

        text-align:center;

        background:#594848;

        color-size:16px;

        color:white;

         padding:20px 10px;

         font-family:arial;

}

nav a:hover{

                background:skyblue;

                color:black;

}

</style>


</head>

<body>

<nav>

        <ul>

        <li><a href="#">Home</a></li>

         <li><a href="#">About</a></li>

         <li><a href="#">Gallery</a></li>

         <li><a href="#">Contact</a></li>

        </ul>

</nav>

</body>

</html>


Creating a form for Beginners <html> <head><title>form</title> </head> <body> <form method="post...