├── README.md ├── index.html └── style.css /README.md: -------------------------------------------------------------------------------- 1 | # CodeAlpha_Survey_form -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Survey Form 7 | 8 | 9 | 10 |

INTERACTION PROGRAM SURVEY FORM

11 | 12 |
13 |
14 | Personal Information 15 | 16 | 17 | 18 |
19 | 20 |
21 | How was the lecture? 22 | Good 23 | Bad 24 | 25 | Did the content was deliverd was actually good? 26 | Yes 27 | No 28 | 29 | How was the clarity of delivering the content? 30 | Good 31 | Bad 32 | 33 |
34 | 35 | 36 |
37 | 38 | 39 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: sans-serif; 3 | } 4 | 5 | h1 { 6 | text-align: center; 7 | } 8 | 9 | form { 10 | width: 500px; 11 | margin: 0 auto; 12 | } 13 | 14 | fieldset { 15 | border: 1px solid black; 16 | padding: 10px; 17 | } 18 | 19 | legend { 20 | font-weight: bold; 21 | } 22 | 23 | input, textarea { 24 | width: 100%; 25 | padding: 10px; 26 | margin-bottom: 10px; 27 | } 28 | 29 | input[type="submit"] { 30 | background-color: green; 31 | color: white; 32 | padding: 10px; 33 | border: none; 34 | cursor: pointer; 35 | } 36 | --------------------------------------------------------------------------------