-
[HTML]02. Forms
HTML Lesson 2: Forms Form 1. Structures method get : small data, fast, non-secure data post: large amounts of data, slow, secure data <html> <head> <meta charset="UTF-8"> <title>Foam structure</title> </head> <body> <form action="../jsp/hello.jsp" method="post"> <p>foam control</p> </form> </body> </html> 2. Input basic structure <input type="attribute" name="variable" size="20" maxlength="20" /> text: Defines a one line text input field <form> text: <input type="text" name="text"> text: <input type="text" name="text" placeholder="inside text content"> </form> radio: Defines a radio button...
-
[HTML]01. CheatSheet
HTML Lesson 1: HTML CheatSheet HTML HTML: HyperText Markup Language CheatSheet 1. Tags headings <h1>Page title</h1> <h2>Subheading</h2> <h3>Tertiary heading</h3> <h4>Quaternary heading</h4> paragraph <p style="text-align: center;">text</p> fonts <strong>Bold text</strong> <em>Italic text</em> <span style="text-decoration: underline;">Underlined text</span> comment <!-- HTML Comment --> quotation <q>Success is a journey not a destination.</q> <blockquote cite="https://ruwix.com/"> The Rubik's Cube is the World’s best selling puzzle toy. </blockquote> line horizontal line <hr /> line break <br> 2. Structures list ordered lost <ol> <li>First</li>...