Close Menu

HTML

Build a website with the correct HTML5 structure

Learn HTML Icon 1

HTML stands for Hyper Text Markup Language.

Learn HTML Icon 2

It is the standard markup language used to create web pages.

Learn HTML Icon 3

HTML allows you to customise the visual design of a website.

HTML

Understanding basic HTML structure is essential when writing in this code language. Your HTML will not function properly without formatting your HTML document correctly.

Every HTML document starts with a <!DOCTYPE> declaration, followed by an <html> element: <!DOCTYPE html>.

Within this declaration, two main sections follow: <head> and <body>. Here’s a basic example:

<!DOCTYPE html>
<html>

Ready to start building your web pages? Explore more tutorials on HTML, CSS, and JavaScript on HowCodingWorks and take your web development skills to the next level.
<head>

<title>My First Web Page</title>

<style>
Insert Styling
</style>

</head>

<body>

 <header>
 <h1>Welcome to My Web Page</h1> 
 </header> 

<p>Hello World</p>

</body>

</html>

Ready to start building your web pages? Explore more tutorials on HTML, CSS, and JavaScript on HowCodingWorks and take your web development skills to the next level.

Recent Guides

HowCodingWorks Logo