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: Design a Movie Showcase Web Page
Goal
Create a captivating web page featuring your favorite movies using HTML elements, including an unordered list (<ul>
), an <h1>
heading, and multiple paragraph elements (<p>
).
Task
Use the following elements to showcase your favorite movies:
- Use an
<h1>
element for the main heading. The text should sayMy Favorite Movies
. - Use a
<ul>
element to create an unordered list of at least 3 movie titles. Each movie title should be a list item (<li>
). - After the
<ul>
element, use multiple<p>
elements to write a brief description of each movie. Each movie's description should be placed in its paragraph.
index.html
- Use
h1
tag to create the main heading. - Use
ul
tag to create the unordered list. - Use
li
tag to create the item of the unordered list. - Use
p
tag to create the paragraph.
index.html
Everything was clear?
Thanks for your feedback!
Section 2. Chapter 7