building blocks for websites

Hypertext Markup Language (HTML) is the standard language used to create and design web pages. It provides the structure and layout of a webpage by using a system of tags and elements to define the different parts of a document.

Developers use HTML to create content, headings, paragraphs, links, images, forms, and other elements that make up the structure of a website. By understanding and implementing HTML effectively, developers can ensure that web pages are well-structured, accessible, and optimized.

Early websites used basic HTML and they looked much more simple than websites of today. HTML can work in conjunction with other coding languages like cascading style sheets (CSS) and JavaScript to enhance the appearance and functionality of a website. While CSS controls the presentation of the content, HTML provides the backbone and semantic structure. JavaScript, on the other hand, adds interactivity and dynamic behavior to web pages.

Markup & Tags - using special codes, called markup or tags, you can enclose instructions around text so that it will behave as instructed. The first tag is within <tag> and the closing tag will begin with a / to indicate the end of that instruction </tag>. There is a full list of markup examples on Wikipedia.

Nowadays, HTML is usually hidden behind a menu system that’s been especially developed to making creating websites even easier so you don’t necessarily need to know HTML to get started but it’s incredibly useful in learning more about creating content for the web.

Examples:

  • Title: <title>Markup & Tags</title>

  • Italics: <i>Italics</i> Bold: <b>Bold</b>

  • Body <body>Write main content here</body>