Skip to main content

Command Palette

Search for a command to run...

table task 3

Published
1 min readView as Markdown
table task 3
A

Hello, everyone! My name is Aditya Gupta, and I'm thrilled to welcome you to my programming language blog and project. As a passionate web developer, I've dedicated myself to exploring the vast world of programming languages and sharing my knowledge with fellow enthusiasts like you. Through my blog, I aim to provide informative and engaging content that will help you navigate the intricacies of various programming languages, including Python, JavaScript, Java, and more. Additionally, I'm actively working on an exciting project that combines my expertise in web development and programming languages. Join me on this thrilling journey as we delve into the fascinating realm of code and unleash our creativity together. Let's write beautiful and functional programs that empower us to shape the digital landscape.

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <link rel="stylesheet" href="">
  </head>
  <body>
    <fieldset>
      <legend>Name</legend>
      <label for="name"> First Name</label>
      <input type="text" name="" id="name" />

      <label for="lname">Last Name</label>
      <input type="text" name="" id="lname" />
    </fieldset>
    <fieldset>
      <legend>Gender</legend>
      <input type="radio" name="my_gender" id="Male" value="Male" />
      <label for="Male">Male</label>

      <input type="radio" name="my_gender" id="Female"  value="Female"/>
      <label for="Female">Female</label>
    </fieldset>

    <fieldset>
      <legend>Course</legend>
      <input type="checkbox" name="" id="html" />
      <label for="html">HTML</label>

      <input type="checkbox" name="" id="css" />
      <label for="css">CSS</label>

      <input type="checkbox" name="" id="php" />
      <label for="php">PHP</label>
    </fieldset>

    <fieldset>
      <legend>Contact Detail</legend>
      <label for="email">Email Address</label>
      <input type="text" name="" id="email" />
      <label for="cnum">Contact Number</label>
      <input type="text" name="" id="cnum" />
    </fieldset>

    <fieldset></fieldset>
  </body>
</html>
11 views