Sunday, November 20, 2022

HTML Feedback form

 HTML Feedback form - HTML Forms, Base Elements, Form attributes,   Form     Elements


<form method="POST">          
 <h1>Feedback Form</h1>

<label for="name">Name</label><br>
<input type="text" id="name"   minlength="3"
maxlength="50" required><br>
<label for="portfolio">Portfolio</label><br>
<input type="url" id="portfolio"  required> 
<br>
<label for="favColor">favColor</label><br>
<input type="color" id="favColor" required>        
 <br>
<label for="likeness">likeness</label><br>
<input type="range" min="1" max="100"
id="likeness" required>
   <br>
<button type="submit">Submit</button>




No comments:

Post a Comment

ads vert

Basic HTML Tables - Layout, HTML Tables, Attributes, Aside, Footer, Tr tag, Td tag, Th tag, Tbody

  Basic HTML Tables - Layout, HTML Tables, Attributes, Aside, Footer, Tr tag, Td tag, Th tag, Tbody < table >      < thead >    ...