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>