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; +}