Friday, October 22, 2021

Html Forms with Email

 Html Forms with Email 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>Email Forms</h1>

         <form>

             <label for="fname">First name</label><br>

             <input type="text"id="fname"placeholder="First name"><br>

             <label for="lname">Last name</label><br>

             <input type="text"id="fname"placeholder="Last name"><br>

             <label for="email"> Email</label><br>

             <input type="text"id="email"placeholder="Email"><br>

             <label for="password">password</label><br>

             <input type="text"id="password"placeholder="password"><br>

             <input type="submit"value="Send">

         </form>

    </body>

</html>

No comments:

Post a Comment

JavaScript Animated

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