├── 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 |
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 |
--------------------------------------------------------------------------------