Мова розмітки HyperText (HTML) - це мова розмітки, яка використовується для створення Інтернет-документів і є основою більшості веб-сайтів сьогодні. Мова розмітки, така як HTML, дозволяє нам
- створювати посилання на інші документи,
- структурувати зміст нашого документа та
- приписувати контекст і значення змісту нашого документа.
Документ HTML має два аспекти. Він містить структуровану інформацію (Розмітка) та текстові посилання (Гіпертекст) на інші документи. Ми структуруємо наші сторінки за допомогою елементів HTML. Вони є конструкціями мови, що надає структуру та значення в нашому документі для браузера та посилання елемента на інші документи в Інтернеті.
Спочатку Інтернет був створений для зберігання та представлення статичних (незмінних) документів. Розглянуті вище аспекти HTML чудово проглядалися в цих документах, яким бракувало дизайну та стилю. Вони представили структуровану інформацію, яка містила посилання на інші документи.
HTML5 - це остання версія або специфікація HTML. Консорціум Всесвітньої павутини (W3C) - організація, відповідальна за розробку стандартів для Всесвітньої павутини, включаючи стандарти для HTML. У міру ускладнення веб-сторінок та веб-програм W3C оновлює стандарти HTML.
HTML5 представляє безліч семантичних елементів. Хоча ми обговорювали, як HTML допоміг надати значення нашому документу, лише після введення семантичних елементів HTML5 його потенціал був реалізований.
Простий приклад HTML-документа
Page Title My First Heading
My first paragraph.
! DOCTYPE html: визначає цей документ як HTML5
html: кореневий елемент сторінки HTML
head: Елемент містить метаінформацію про документ
title: Елемент визначає заголовок документа
body: Елемент містить видимий вміст сторінки
h1: Елемент визначає великий заголовок
p: Елемент визначає абзац
Підручники для початку з HTML та HTML5
Найкраще місце для початку вивчення HTML - це 2-годинний підручник з введення в HTML FreeCodeCamp.
Тоді, якщо ви відчуваєте себе більш азартними, у нас є цілий 12-годинний курс, який детально охоплює HTML, HTML5 та CSS.

Структура сторінки
Щоб створити свої сторінки в HTML
, вам потрібно знати, як структурувати сторінку в HTML
. В основному, структурування сторінки дотримується наведеного нижче порядку:
Title of the Page
1 - Оператор повинен завжди першим з’являтися на
HTML
сторінці та повідомляти браузеру, яка версія мови використовується. У цьому випадку ми працюємо з HTML5
.
2 - Теги та
повідомляють веб-браузеру, де
HTML
код починається та закінчується.
3 - Теги and
містять інформацію про веб-сайт, наприклад: стиль, мета-теги, сценарії тощо ...
4 - Теги та і
повідомляють браузеру, яка назва сторінки. Заголовок можна побачити, визначивши вкладку у вашому Інтернет-браузері. Текст, який визначається між цими тегами, також є текстом, який використовується як заголовок пошуковими системами, коли вони представляють сторінки в результатах пошуку.
5 - Між тегами та
розміщується вміст сторінки, який відображається в браузері.
Зміни в HTML5
Введення семантичних тегів
Замість того, щоб використовувати для кожного іншого контейнера, існує кілька семантичних (ці теги допомагають читачам екрану, які використовуються людьми із вадами зору), таких як
. Тож доцільно використовувати ці теги замість загальних
.
Елементи HTML
Елементи - це будівельні блоки HTML, які описують структуру та зміст веб-сторінки. Вони є частиною "Розмітки" мови розмітки HyperText (HTML).
Синтаксис HTML використовує кутові дужки (””) для утримання імені елемента HTML. Елементи, як правило, мають відкриваючий та закривальний теги та містять інформацію про вміст, який вони містять. Різниця між ними полягає в тому, що закриваючий тег має косу риску.
Ось приклад використання елемента p (
This is a paragraph.
Opening and closing tags should match, otherwise the browser may display content in an unexpected way.

Original text

Self-closing Elements
Some HTML elements are self-closing, meaning they don’t have a separate closing tag. Self-closing elements typically insert something into your document.
An example is the br element (
), which inserts a line break in text. Formerly, self-closing tags had the forward slash inside them (
HTML Element Functionality
There are many available HTML elements. Here’s a list of some of the functions they perform:
give information about the web page itself (the metadata)
structure the content of the page into sections
embed images, videos, audio clips, or other multimedia
create lists, tables, and forms
give more information about certain text content
link to stylesheets which have rules about how the browser should display the page
add scripts to make a page more interactive and dynamic
Nesting HTML Elements
You can nest elements within other elements in an HTML document. This helps define the structure of the page. Just make sure the tags close from the inside-most element first.
Correct:
This is a paragraph that contains a span element.
Incorrect:
This is a paragraph that contains a span element.
Block-level and Inline Elements
Elements come in two general categories, known as block-level and inline. Block-level elements automatically start on a new line while inline elements sit within surrounding content.
Elements that help structure the page into sections, such as a navigation bar, headings, and paragraphs, are typically block-level elements. Elements that insert or give more information about content are generally inline, such as links or images.
The HTML Element
There’s an
element that’s used to contain the other markup for an HTML document. It’s also known as the “root” element because it’s the parent of the other HTML elements and the content of a page.
Here’s an example of a page with a head element, a body element, and one paragraph:
I'm a paragraph
The HEAD Element
This is the container for processing information and metadata for an HTML document.
The BODY Element
This is a container for the displayable content of an HTML document.
...
The P Element
Creates a paragraph, perhaps the most common block level element.
...
The A(Link) Element
Creates a hyperlink to direct visitors to another page or resource.
...
Images in HTML
You can define images by using the ![]()
tag. It does not have a closing tag since it can contain only attributes. To insert an image you define the source and an alternative text which is displayed when the image can not be rendered.
src
- This attribute provides the url to the image present either on your P.C./Laptop or to be included from some other website. Remember the link provided should not be broken otherwise the image will not be produced on your webpage.
alt
- This attribute is used to overcome the problem of broken image or incapability of your browser to produce image on webpage. This attribute, as the name suggests, provides an “Alternative” to an image which is some ‘TEXT’ describing the image.
Example
To define height and width of an image you can use the height and width attribute:
You can also define border thickness (0 means no border):
Align an image:
You are also able to use styles within a style attribute:
How to use links in HTML
In HTML you can use the
tag to create a link. For example you can write freeCodeCamp
to create a link to freeCodeCamp’s website.
Links are found in nearly all web pages. Links allow users to click their way from page to page.
HTML links are hyperlinks. You can click on a link and jump to another document.
When you move the mouse over a link, the mouse arrow will turn into a little hand.
Note: A link does not have to be text. It can be an image or any other HTML element.
In HTML, links are defined with the tag:
link text
Example
Visit our site for tutorials
The href attribute specifies the destination address (//www.freecodecamp.org) of the link.
The link text is the visible part (Visit our site for tutorials).
Clicking on the link text will send you to the specified address.
How to Use Lists in HTML
Lists are used to specify a set of consecutive items or related information in a well formed and semantic way, such as a list of ingredients or a list of procedural steps.
HTML markup has three different types of lists - ordered, unordered and description lists.
Ordered Lists
An ordered list is used to group a set of related items, in a specific order. This list is created with
tag. Each list item is surrounded with
tag.Code
- Mix ingredients
- Bake in oven for an hour
- Allow to stand for ten minutes
Example
- Mix ingredients
- Bake in oven for an hour
- Allow to stand for ten minutes
Unordered Lists
An unordered list is used to group a set of related items, in no particular order. This list is created with
tag. Each list item is surrounded with
tag.Code
- Chocolate Cake
- Black Forest Cake
- Pineapple Cake
Example
- Chocolate Cake
- Black Forest Cake
- Pineapple Cake
Description Lists
A description list is used to specify a list of terms and their descriptions. This list is created with
tag. Each list item is surrounded with
tag.Code
- Bread
- A baked food made of flour.
- Coffee
- A drink made from roasted coffee beans.
Output
Bread A baked food made of flour. Coffee A drink made from roasted coffee beans.
Styling List
You can also control the style of the list. You can use list-style
property of lists. Your list can be bullets, squares, in Roman numerals, or can be images if you want.
list-style
property is shorthand for list-style-type
, list-style-position
, list-style-image
.