From fa5c8bf2929416d141030fc32e511d02e51629b2 Mon Sep 17 00:00:00 2001 From: kostiantynkovalchuk Date: Fri, 27 Sep 2024 19:49:43 +0200 Subject: [PATCH] html code --- .html | 78 ++++++++++++++++++++++++++++++++++++++++++++ styles.css | 26 +++++++++++++++ 2 files changed, 104 insertions(+) create mode 100644 .html create mode 100644 styles.css diff --git a/.html b/.html new file mode 100644 index 00000000..7928c754 --- /dev/null +++ b/.html @@ -0,0 +1,78 @@ + + + + + + T-Shirt Order Form + + + +

T-Shirt Order Form

+ +
+ + + + + + + + + + + + + + + + + + + + + + +
+ + diff --git a/styles.css b/styles.css new file mode 100644 index 00000000..f1681b87 --- /dev/null +++ b/styles.css @@ -0,0 +1,26 @@ +body { + font-family: Arial, sans-serif; +} +form { + max-width: 400px; + margin: 0 auto; +} +label, +select, +input { + display: block; + margin-bottom: 10px; +} +input[type="text"], +input[type="email"], +input[type="date"] { + width: 100%; + padding: 8px; +} +select { + width: 100%; + padding: 8px; +} +.required { + color: red; +}