Member-only story
Getting started with HTML
In this article, we will review the very basics of HTML. If you’re brand new to building websites, this tutorial will help you to get up and running!
🤓 Want to stay up to date with web dev?
🚀 Want the latest news delivered right to your inbox?
🎉 Join a growing community of designers & developers!
Subscribe to my newsletter here → https://easeout.eo.page
What is HTML?
HTML (Hyper Text Markup Language) is a standard markup language for creating web pages and web applications. It is used to structure and format content on the web and is the foundation of most websites.
A Simple HTML Document
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h2>Heading Content</h2>
<p>Paragraph Content</p>
</body>
</html>
This can be explained as follows:
Note: The content inside the <body> section will be displayed in a browser. The content inside the <title> element will be shown in the browser’s title bar or in the page’s tab.