Untitled
unknown
plain_text
a year ago
2.9 kB
4
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Satisfaction Survey</title> <style> body { font-family: Arial, sans-serif; } .survey-table { width: 100%; border-collapse: collapse; margin-top: 20px; } .survey-table th, .survey-table td { border: 1px solid #ddd; padding: 8px; text-align: center; } .survey-table th { background-color: #f2f2f2; } .survey-table td input[type="radio"] { margin-top: 10px; margin-bottom: 10px; } .survey-table .category { text-align: left; padding-left: 16px; } </style> </head> <body> <table class="survey-table"> <tr> <th>Overall satisfaction</th> <th>Very satisfied</th> <th>Satisfied</th> <th>Neutral</th> <th>Unsatisfied</th> <th>Very unsatisfied</th> </tr> <tr> <td class="category">Overall satisfaction</td> <td><input type="radio" name="overall_satisfaction"></td> <td><input type="radio" name="overall_satisfaction"></td> <td><input type="radio" name="overall_satisfaction"></td> <td><input type="radio" name="overall_satisfaction"></td> <td><input type="radio" name="overall_satisfaction"></td> </tr> <tr> <td class="category">Location</td> <td><input type="radio" name="location"></td> <td><input type="radio" name="location"></td> <td><input type="radio" name="location"></td> <td><input type="radio" name="location"></td> <td><input type="radio" name="location"></td> </tr> <tr> <td class="category">Content</td> <td><input type="radio" name="content"></td> <td><input type="radio" name="content"></td> <td><input type="radio" name="content"></td> <td><input type="radio" name="content"></td> <td><input type="radio" name="content"></td> </tr> <tr> <td class="category">Price</td> <td><input type="radio" name="price"></td> <td><input type="radio" name="price"></td> <td><input type="radio" name="price"></td> <td><input type="radio" name="price"></td> <td><input type="radio" name="price"></td> </tr> <tr> <td class="category">Speakers</td> <td><input type="radio" name="speakers"></td> <td><input type="radio" name="speakers"></td> <td><input type="radio" name="speakers"></td> <td><input type="radio" name="speakers"></td> <td><input type="radio" name="speakers"></td> </tr> <tr> <td class="category">Organization</td> <td><input type="radio" name="organization"></td> <td><input type="radio" name="organization"></td> <td><input type="radio" name="organization"></td> <td><input type="radio" name="organization"></td> <td><input type="radio" name="organization"></td> </tr> </table> </body> </html>
Editor is loading...
Leave a Comment