Saturday, October 23, 2021

Html forms with Date and Time

 Html forms with Date and Time Code

<!DOCTYPE html>

<html>

    <head>

        <meta name="viewport" content="width=device-width, initial-scale=1.0">

         <link rel="STYLESHEET"type="text/css"href="web.css">

        <title>web design</title>

    </head>

    <body>

       <h1>date and time Forms</h1>

       <form>

           <label for="date">select a date </label>

           <input type="date"id="date">

           <label for="time">select a time </label>

           <input type="time"id="time">

       </form>

    </body>

</html>

No comments:

Post a Comment

JavaScript Animated

  JavaScript Animated <!DOCTYPE html> <html> <style> #myContainer {   width: 400px;   height: 400px;   position: relative;...