Course Content
Ultimate HTML
Ultimate HTML
2. HTML Tags and Attributes
Understanding HTML TagsWorking with HTML AttributesUnderstanding Paired and Single Tags in HTMLText Markup and Formatting in HTMLChallenge: Create Your First Web Page ParagraphChallenge: Build a Personal Introduction Web PageChallenge: Design a Movie Showcase Web PageUsing Links and Buttons in HTMLChallenge: Create Links to Popular WebsitesValidating Your HTML Code for Best Practices
4. Working with Media and Tables
Adding Images in HTMLChallenge: Work with ImagesWorking with Clickable Images, Captions, and OptimizationUnderstanding Vector and Raster GraphicsEmbedding Audio and Video for Rich Media ContentChallenge: Embed Audio and Video in HTMLCreating and Structuring Tables in HTMLChallenge: Design a Functional HTML Table
5. HTML Forms and User Input
Introduction to HTML FormsFundamentals of Form Creation in HTMLUsing Labels for Better Form AccessibilityEnhancing Forms with Input AttributesExploring Different Input Types in HTMLChallenge: Create Form with Inputs and LabelsWorking with the Textarea Element for Multi-line InputUsing the Select Element for Dropdown MenusUsing the Datalist Element for Predefined Input SuggestionsGrouping Form Elements for Better Structure
Challenge: Embed Audio and Video in HTML
Goal
Create an engaging multimedia experience for the website visitors by incorporating both audio and video content.
Task
Take the website to the next level by immersing users in a captivating multimedia experience. Your task is to:
For the audio: embed an audio file that provides a soothing atmosphere for users to relax. Use the following link for the audio:
For the video: integrate a video that lets users enjoy the beauty of nature creatures. Use the following link for the video:
Add playback controls like play and pause.
Add file types.
index.html
index.css
- Use the
audio
tag to specify an audio element. - Use the
video
tag to specify a video element. - Use the
controls
attribute to allow users to manage the audio or video playback. - Use the
src
attribute to specify the file's location. Ensure accurate copying of links from the task. - Use
type="audio/mp3"
to specify the correct file type for the audio. - Use
type="video/mp4"
to specify the correct file type for the video.
index.html
index.css
Everything was clear?
Thanks for your feedback!
Section 4. Chapter 6