What is HTML?
Part of the Fundamentals section of Coddy's HTML journey — lesson 1 of 60.
HTML is an incredibly powerful and versatile language that lets you create everything from simple web pages to complex web applications, with the amazing ability to structure content on the web.
Challenge
EasyPress the run code button to run your first code in HTML.
Cheat sheet
HTML is a powerful language used to structure content and create web pages and web applications.
Try it yourself
<html>
<head>
<title>My First HTML Page</title>
</head>
<body>
<p>Hello HTML!</p>
</body>
</html>All lessons in Fundamentals
1HTML Basics
What is HTML?Basic Structure of an HTMLTags and ElementsNesting and Closing TagsComments in HTML2Text and Formatting
HeadingsParagraphsLine BreaksBold and Italic TextBold and Italic AgainRecap - Formatting8Forms and Inputs Part 1
Form BasicsText InputsInput AttributesPassword FieldLabels for InputsRecap - Basic Form11Event Registration Page
Project OverviewHeader Section9Forms and Inputs Part 2
Radio ButtonsCheckboxesDropdownsButtonsButtons in FormsRecap - Forms #1Recap - Forms #2