summaryrefslogtreecommitdiffstats
path: root/Aufgabe04/product.html
diff options
context:
space:
mode:
authorStefan Suhren <suhren.stefan@fh-swf.de>2015-04-26 14:50:52 +0200
committerStefan Suhren <suhren.stefan@fh-swf.de>2015-04-26 14:50:52 +0200
commitb857587a8f070b93749d8c25286cf28bad436f80 (patch)
tree2f7d2d380388bc4d7222a6526eaa28668f72fce1 /Aufgabe04/product.html
parent244f5cb930ddd208e0dc2a1741ac1c4b4f127da7 (diff)
downloadInternetTechnologien-b857587a8f070b93749d8c25286cf28bad436f80.tar.gz
InternetTechnologien-b857587a8f070b93749d8c25286cf28bad436f80.zip
Add styling to task 4
Diffstat (limited to 'Aufgabe04/product.html')
-rw-r--r--Aufgabe04/product.html44
1 files changed, 31 insertions, 13 deletions
diff --git a/Aufgabe04/product.html b/Aufgabe04/product.html
index 7aa7e1c..6b37cf1 100644
--- a/Aufgabe04/product.html
+++ b/Aufgabe04/product.html
@@ -3,24 +3,42 @@
<head>
<meta charset="UTF-8">
<title>Production</title>
-<link rel="stylesheet" type="text/css" href="underline.css">
+<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<a href="./" accesskey="b"><em>B</em>ack </a>
<form action="http://www-in.fh-swf.de/fbp-cgi/showenv.pl" method="post">
<h1>Product</h1>
- <label for="name"><u>N</u>ame:</label><input type="text"
- placeholder="Name" id="name" name="name" accesskey="n"
- maxlength="100"><br> <label for="price"><u>P</u>rice (Euro):</label><input
- type="text" placeholder="Price (Euro)" id="price" name="price" accesskey="p"
- maxlength="13"><br> <label for="width"><u>W</u>idth (mm):</label><input
- type="text" placeholder="Width (mm)" id="width" name="width" accesskey="w"
- maxlength="11"><br> <label for="height"><u>H</u>eight (mm):</label><input
- type="text" placeholder="Height (mm)" id="height" name="height"
- accesskey="h" maxlength="11"><br> <label for="desc"><u>D</u>escription:</label>
- <textarea placeholder="Description" id="desc" name="desc"
- accesskey="d" maxlength="1000"></textarea>
- <br>
+ <div class="row">
+ <label for="name"><u>N</u>ame:</label>
+ <input class="formw" type="text"
+ placeholder="Name" id="name" name="name" accesskey="n"
+ maxlength="100">
+ </div>
+ <div class="row">
+ <label for="price"><u>P</u>rice (Euro):</label>
+ <input class="formw" type="text"
+ placeholder="Price (Euro)" id="price" name="price" accesskey="p"
+ maxlength="13">
+ </div>
+ <div class="row">
+ <label for="width"><u>W</u>idth (mm):</label>
+ <input class="formw" type="text"
+ placeholder="Width (mm)" id="width" name="width" accesskey="w"
+ maxlength="11">
+ </div>
+ <div class="row">
+ <label for="height"><u>H</u>eight (mm):</label>
+ <input class="formw" type="text"
+ placeholder="Height (mm)" id="height" name="height" accesskey="h"
+ maxlength="11">
+ </div>
+ <div class="row">
+ <label for="desc"><u>D</u>escription:</label>
+ <textarea class="formw" placeholder="Description" id="desc" name="desc"
+ accesskey="d" maxlength="1000"></textarea>
+ </div>
+ <div class="spacer">&nbsp;</div>
<button type="submit" accesskey="c">
<u>C</u>reate
</button>