click below
click below
Normal Size Small Size show me how
HTML - Week 2
WTWD 110 - HTML Vocabulary
Term | Definition | Example |
---|---|---|
Text Formatting | The process of modifying the appearance of text on a web page, including font style, size, and color. | <p style="font-size:14px;color:red;">This is a formatted text.</p> |
Lists (HTML) | HTML elements for creating ordered (<ol>) and unordered (<ul>) lists. | <ul><li>First item</li><li>Second item</li></ul> |
Media Elements (HTML) | HTML tags for embedding media like images (<img>) and videos (<video>) in a web page. | <img src="image.jpg" alt="Description"> |
Readability | The ease with which text can be read and understood. Influenced by text formatting and layout. | Choosing a font size and color that contrasts well with the background. |
User Experience (UX) | The overall experience of a person using a website, especially in terms of how easy or pleasing it is to use. | A well-designed layout that makes navigation intuitive. |
Embedded Videos | Videos integrated directly into a web page, often with options to play, pause, and control volume. | <video src="movie.mp4" controls></video> |
File Formats (Images/Videos) | The specific format in which image and video files are saved and used on the web, like JPEG, PNG, MP4. | Using JPEG for images with lots of colors, PNG for images with transparency. |
Performance (Web) | The speed and efficiency with which web pages load and operate. | Optimizing image sizes to reduce page load times. |