feedback form in html using form handling
Lab # 1
Introduction to html & CSS

3. Create A Feedback Form Using Form handling.

Lab1-3-Feedback-Form.html
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Lab 1-3</title>
</head>
<body>
    <form>
        Email: <input type="email" required><br><br>

        Content Rating:
        <input type="radio" name="rate" value="Super" checked>Super
        <input type="radio" name="rate" value="Average">Average
        <input type="radio" name="rate" value="Poor">Poor <br><br>

        Comment:<br>
        <textarea name="comment" rows="15" cols="50"></textarea><br><br>
        
        <input type="submit" value="Send">
    </form>
</body>
</html>

Output
feedback form in html
Feedback form using form handling in html by practical server

Happy Coding :)