1 / 12

XHTML

<option> < fieldset > < abbr > < textarea >. XHTML. <select> <option>Volvo</option> <option>Saab</option> <option>Mercedes</option> <option>Audi</option> </select>.

paniz
Télécharger la présentation

XHTML

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. <option> <fieldset> <abbr> <textarea> XHTML

  2. <select><option>Volvo</option><option>Saab</option><option>Mercedes</option><option>Audi</option></select><select><option>Volvo</option><option>Saab</option><option>Mercedes</option><option>Audi</option></select>

  3. <form><fieldset><legend>Personalia:</legend>Name: <input type="text" size="30" /><br />Email: <input type="text" size="30" /><br />Date of birth: <input type="text" size="10" /></fieldset></form>

  4. <html> <body>The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</body> </html>

  5. <html> <body> <table border="1"> <caption>Monthly savings</caption> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$50</td> </tr></table> </body> </html>

  6. <html> <body> <select> <optgroup label="Swedish Cars"> <option value="volvo">Volvo</option> <option value="saab">Saab</option> </optgroup> <optgroup label="German Cars"> <option value="mercedes">Mercedes</option> <option value="audi">Audi</option> </optgroup></select> </body> </html>

  7. Jquery http://www.w3schools.com/

  8. <html> <head><script type="text/javascript" src="jquery.js"></script><script type="text/javascript">$(document).ready(function(){ $("div").focusin(function(){ $(this).css("background-color","#FFFFCC"); });});</script></head><body><div style="border: 1px solid black;padding:10px;">First name: <input type="text" /><br />Last name: <input type="text" /></div><p>Click in the input field to get focus.</p> </body> </html>

  9. Spry

  10. ajax

  11. What is AJAX?AJAX = Asynchronous JavaScript and XML.AJAX is a technique for creating fast and dynamic web pages.

  12. End

More Related