Tips & Tutorials

1 Minute HTML CSS Tutorials

Learn basic HTML CSS super fast. Each chapter is a 1-minute video (or shorter). Straight to the point, no BS.       PLAYLIST If you prefer to go through all videos continuously, here’s the entire playlist -> 1 Minute HTML CSS Series   BASIC HTML 1) Getting Started YouTube Notes 2) HTML Tags &

1 Minute HTML CSS Tutorials Read More »

1 Minute HTML CSS Part 18 – Form Text Fields

LIST OF TEXT FIELDS IN HTML CSS <input type=”text”> Generic text field. Take note, single line only. <input type=”email”> Email. <input type=”tel”> Telephone number. <input type=”url”> URL. <input type=”password”> Password. <input type=”number”> Numbers only. <textarea></textarea> Also a text field. Take note, multiple lines accepted.

1 Minute HTML CSS Part 18 – Form Text Fields Read More »

1 Minute HTML CSS Part 17 – Basic Forms

BASIC HTML FORM <form target=”_blank” action=”dummy.php” method=”post”> <input type=”text” name=”username”> <input type=”submit” value=”Submit”> </form> <form> The HTML form. <input> Form fields. type Field type. For now, a simple text field and submit button. Will go through more in next few chapters. name Name of the field. value On submit button, this is the button text.

1 Minute HTML CSS Part 17 – Basic Forms Read More »