diff options
Diffstat (limited to 'Aufgabe05/productdetails.html')
| -rw-r--r-- | Aufgabe05/productdetails.html | 81 |
1 files changed, 43 insertions, 38 deletions
diff --git a/Aufgabe05/productdetails.html b/Aufgabe05/productdetails.html index 546a77b..16434fa 100644 --- a/Aufgabe05/productdetails.html +++ b/Aufgabe05/productdetails.html @@ -6,45 +6,50 @@ <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> + <header><h1>Chair</h1></header> <nav> - <a href="contact.html">Contact us</a> - <a href=".">Home</a> - <a href="categories.html">Categories</a> - <a href="products.html">Furniture</a> - <a href="login.html">Login</a> + <dl> + <dt><a href="contact.html">Contact us</a></dt> + <dt><a href=".">Home</a></dt> + <dt><a href="categories.html">Categories</a></dt> + <dt><a href="products.html">Furniture</a></dt> + <dt><a href="login.html">Login</a></dt> + </dl> </nav> - <form> - <h1>Chair</h1> - <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" disabled value="Chair"> - </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" disabled value="20.00"> - </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" disabled value="500"> - </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" disabled value="500"> - </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" disabled rows="5">A chair you can sit in, maybe. Quite comfy, I guess. Probably made of wood or a wood like material.</textarea> - </div> - <div class="spacer"> </div> - </form> + <div id="content"> + <form> + <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" readonly value="Chair"> + </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" readonly value="20.00"> + </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" readonly value="500"> + </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" readonly value="500"> + </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" readonly rows="5">A chair you can sit in, maybe. Quite comfy, I guess. Probably made of wood or a wood like material.</textarea> + </div> + <div class="spacer"> </div> + </form> + </div> + <footer>Copyright by SomeCompany Ltd.</footer> </body> </html>
\ No newline at end of file |
