Keyboard Shortcuts
💡 The Concept Coders use keyboard shortcuts, and you need to learn them to work efficiently. When you apply for coding jobs, hiring managers expect you to use them. If they see you right-click to copy and paste during a job interview, that could be a mark against you. Experienced programmers use keyboard shortcuts. Most…
Read MoreIntroduction to JavaScript
💡 The Concept Web browsers can read three languages: HTML, CSS, and JavaScript. You have spent this course mastering the first two. This lesson gives you a first look at the third, JavaScript, and shows you that even without deep knowledge of the language, you can read it, modify it, and make it work for…
Read MoreStyling HTML Forms with CSS
💡 The Concept Styling HTML forms with CSS transforms plain browser-default inputs into a polished, consistent interface that fits your design. Raw, unstyled forms look plain and can feel uninviting. A few CSS rules can turn a basic form into a clean, professional interface that matches the rest of your site. Labels and inputs are…
Read MoreWebsite Tables
💡 The Concept How Developers Use Tables HTML tables are the right tool for displaying structured data in rows and columns. The main thing to keep in mind is that a table should be short and narrow. Tables are not responsive, so a table with many columns does not adapt well to a phone screen.…
Read MoreHTML Forms
💡 The Concept Client Side and Server Side HTML forms are how websites collect input from visitors, from simple search boxes to multi-field registration and checkout pages. To understand forms, you need to understand that they involve two sides: the client side and the server side. This course covers only the client side. You will…
Read MoreSpecial Form Fields
💡 The Concept HTML form fields extend well beyond the basic text input. There are specialized elements designed for different types of user data. Beyond the basic text input, HTML has several other field types that give users structured ways to respond. These are the ones you will use most often. Textarea Use <textarea> when…
Read MoreEmbedding Multimedia
💡 The Concept To embed YouTube video in HTML, you use an iframe element that loads the YouTube player directly inside your page. The <iframe> (inline frame) element lets you embed content from another source directly into your page. YouTube videos, Google Maps, and many other third-party tools all use iframes. You do not host…
Read More