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: Create Your First Web Page Paragraph
Note
All challenges will be presented in the same form as you see now:
- You will see the task that needs to be completed;
- Next, you will encounter a block of code in which you need to make changes according to the task;
- Click the Run Code button to preview your live page;
- Below the code block, there are two buttons: Hint and Solution;
- The Hint button will open a hint for this task;
- The Solution button will reveal the correct solution to this task.
- It is recommended to complete the task yourself before using the Solution button.
Goal
Take your first step as a web developer by creating your very first paragraph on a web page.
Task
- You are provided with a code block below. Inside add a paragraph element
<p>
. - Between the opening and closing tags of the paragraph element, include the following text: "I am starting my web journey!".
index.html
- Use the
<p>
element to create a paragraph in HTML. - Place the text
I am starting my web journey!
between the opening and closing tags of the paragraph to make it appear on the web page.
index.html
Everything was clear?
Thanks for your feedback!
Section 2. Chapter 5