From fae9919009caa5760e87cf252b32cae35b7f59b5 Mon Sep 17 00:00:00 2001 From: "Nour, Arezou" <arezou.nour@tugraz.at> Date: Mon, 24 Feb 2025 13:30:13 +0100 Subject: [PATCH] Upload New File --- form/form.html | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 form/form.html diff --git a/form/form.html b/form/form.html new file mode 100644 index 0000000..66ecb9c --- /dev/null +++ b/form/form.html @@ -0,0 +1,48 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Document</title> + <style> + form{ + width: 50%; + padding:30px; + box-sizing: border-box; + background-color: #6f0f0f; + margin: 50px auto; + box-shadow: 0 0 25px #7d7676; + } + label{ + display: inline-block; + text-transform: capitalize; + font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; + margin-bottom: 20px; + color: whitesmoke; + font-size: 12px; + font-weight: bold; + } + input[type="text"]{ + width: 50%; + display: block; + height: 25px; + margin-bottom: 15px; + + } + </style> +</head> +<body> + <form action="#" method="post"> + <label for="fullname">fullname</label> + <input type="text" name="fullname" id="fullname" + placeholder="fullname"> + <label for="email">email</label> + <input type="text" name="email" id="email" + placeholder="email"> + <label for="comment">comment</label> + <input type="text" name="comment" id="comment" + placeholder="comment"> + <input type="submit"> + </form> +</body> +</html> \ No newline at end of file -- GitLab