Posts

Showing posts from August, 2022

forms in html source code

hi I am sharing you the source code of forms in html. here we go! <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta http-equiv="X-UA-Compatible" content="IE=edge">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>description of form in html</title> </head> <body>     <form action="sql.php">         <fieldset> <legend>personal info </legend>             <label for="fname">enter your first name</label> <br>             <input type="text" name="fname" id="fname" required>             <br>             <label for="lname">enter your last name  </label>             <br>   ...

html tables source code

hi I am sharing you the source code of html tables so, here we go! <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta http-equiv="X-UA-Compatible" content="IE=edge">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>tables in html</title> </head> <body>     <table border="2px">         <caption>company name and their products</caption>         <thead>             <tr> <th>microsoft </th> <th>alphabets</th> <th>meta</th></tr>         </thead>         <tbody>             <tr><td>windows</td> <td>google </td> <td>facebook</td></tr>       ...