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: Build a Personal Introduction Web Page
Goal
Introduce yourself to the world by creating a web page with multiple heading elements (<h1>
, <h2>
) and paragraph elements (<p>
).
Task
Use the following elements to craft your captivating introduction:
- Use an
<h1>
element for the main heading. The text should sayWelcome to My Website
. - Use an
<h2>
element for a subheading. The text should sayAbout Me
. - Use a
<p>
element to write a brief paragraph introducing yourself, including:- Your name;
- Your hobbies.
index.html
- Use
h1
tag to create the main heading. - Use
h2
tag to create the subheading. - Use
p
tag to create the paragraph.
index.html
Everything was clear?
Thanks for your feedback!
Section 2. Chapter 6