Friday, August 27, 2021

Html Forms with Message Element

 Html Forms with Message Element Code

<!DOCTYPE html>

<html>


<head>

    <meta charset="utf-8">

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

    <link rel="stylesheet" type="text/css" href="nav.css">

    <script src="https://use.fontawesome.com/d07a8c2f55.js"></script>

    <link rel="preconnect" href="https://fonts.gstatic.com">

    <title>Html Froms</title>

</head>


<body>

<form>

    <label for="fname">You Name</label><br>

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

    <label for="lname">You last name</label><br>

    <input type="text"id="lname"placeholder="you are last-name"><br>

    <label for="message">Massage</label><br>

    <textarea type="message"id="message"placeholder="Massage"row="10"col="10"> you message</textarea><br>

      <input type="submit">

</form>

</body>

</html>

No comments:

Post a Comment

JavaScript Animated

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