-
[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...
-
[Markdown]01. CheatSheet
Markdown Lesson 1: Markdown Cheat Sheet Markdown Markdown: A plain text format for writing structured documents CheatSheet 1. headings # H1 ## H2 ### H3 #### H4 ##### H5 ###### H6 H1 H2 H3 H4 H5 H6 2. emphasis **BOLD** *Italic* ***BOLD and Italic*** BOLD Italic BOLD and Italic 3. list unordered - A - A - A - A A A A A ordered 1. A 1. A 1. A 1. B 1. A...
-
[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>...
-
[JAVA]05. Java
JAVA Lesson 5: Intellij and Debugging JDK JDK: Java Development Kit JRE: Java Runtime Environment javac: A Java Compiler How to build java Verify that you have java open a terminal window and type ***java -version I’m studying a “Java Programming Basics” @Udacity.
-
[JAVA]04. Loops
JAVA Lesson 4: Loops While Loops public void alarm() { boolen on = checkAlarm(); if(on){ beep(); on=checkAlarm(); } if(on){ beep(); on=checkAlarm(); } if(on){ beep(); on=checkAlarm(); } ---//until someone turn off the alarm } /*Using While Loop*/ public void alarm(){ boolean on = checkAlarm(); while(on){ beep(); on = checkalarm(); } } String googol = '1'; int len = googol.length(); while(len <101){ googol = googol + "0"; len= googol.length(); } public void raiseAlarm(int numOfWarnings) { int i...