From 2b9b8e55c7771b7399c7923f038f3b3613043f9a Mon Sep 17 00:00:00 2001 From: Gauresh G Pai <107191770+gaureshpai@users.noreply.github.com> Date: Mon, 6 Nov 2023 02:17:08 +0530 Subject: [PATCH] Add files via upload --- index.html | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ style.css | 51 ++++++++++++++++++++++++++++++++++++ 2 files changed, 128 insertions(+) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..9c8848f --- /dev/null +++ b/index.html @@ -0,0 +1,77 @@ + + + + + + + + +
+

Survey Form

+
+ +
+
+
+ Personal Details +
+ + + + + + + + + + + + + + + + + +
Name:
Address:
Email:
Number:
+
+ Please select your gender: +
+ + + + + + + + + + +
Male
Female
Prefer Not to Say
+
+
+ Additional Information +
+ + + + +
+ +
+ + + + +
+ +
+
+
+
+ + + + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..7cd4e57 --- /dev/null +++ b/style.css @@ -0,0 +1,51 @@ +body { + font-family: "Montserrat", sans-serif; + margin: 0; + padding: 0; + color: #000; + background-color: #f4f4f4; +} + +header { + background-color: #35424a; + color: #ffffff; + padding: 20px 0; + text-align: center; +} + +nav { + background-color: #ea907a; + text-align: center; + padding: 10px 0; +} + +nav a { + text-decoration: none; + color: #ffffff; + padding: 10px 20px; +} + +nav a:hover { + background-color: #35424a; +} + +.content { + padding: 20px; +} + +footer { + background-color: #35424a; + color: #ffffff; + text-align: center; + padding: 10px 0; + position: fixed; + bottom: 0; + width: 100%; +} + +.marginfix5 textarea { + width: 100%; + height: 100px; + padding: 10px; + box-sizing: border-box; +} \ No newline at end of file