The table tag in HTML

Применение тега table в HTML

The table tag – create an HTML table quickly and easily The table element is used together with the child elements tr, td, th to add tabular data to an HTML document. Tables for data, not layout It used to be common to use HTML tables to control the layout of a web page. Using …

The table tag in HTML Read More »

The br tag in HTML

Применение тега br в HTML

What does the br element do in HTML? The br element is used to insert a line break or return to a parent element, such as a paragraph, without leaving the parent container. Do not abuse the line break The b element creates a line break. It’s easy to overuse this tag to create a …

The br tag in HTML Read More »

The i tag in HTML

Применение тега i в HTML

What does the i tag do in HTML? The i element is used to mark words in the surrounding text, highlighting text in italics. The i tag is essentially a typographic element and is embedded (not blocky). This means that it should be used to mark up multiple words or phrases. i or em? The …

The i tag in HTML Read More »

The p tag in HTML

Применение тега p в HTML

What does the p element do in HTML? If you are new to HTML, p will probably be the first tag you encounter. The p element is used to divide text into blocks. It defines a paragraph of text.The end of a paragraph is marked with the closing tag /p, which is optional, the closing …

The p tag in HTML Read More »

The img tag in HTML

Применение тега img в HTML

The meaning of the img tag in HTML The img tag is used to display an image file in an HTML document. The img element is the simplest way to display a static image on a page. It is usually used when the image is part of the content (as opposed to using it as …

The img tag in HTML Read More »

HTML Tags

Основные теги для работы в HTML5, их параметры, правила

HTML tags are usually both opening and closing tags. These two tags form an element, and between them is some text. It turns out that the element of HTML is the whole code, from the opening tag to close. Important! Hypertext elements with no content are called empty. Such elements in addition to everything else …

HTML Tags Read More »

Semantic elements in HTML5

Семантические элементы HTML-страницы

Semantic elements of HTML-page and their varieties n addition to the logical structure of site pages, the HTML version 5 specifications include semantic markup. Semantics is a branch of philology dealing with the meaning of phrases and individual words. Accordingly, semantic elements are elements that have meaning. Semantic element firmly denotes its function to the …

Semantic elements in HTML5 Read More »

The meta tag in HTML

Применение тега meta HTML

The meaning of the meta tag in HTML The meta element is used to add machine-readable information to an HTML document. Information added with the meta tag is not displayed to website visitors, but is made available for use by browsers and search engine crawlers.The tag is placed in the head section of the page. …

The meta tag in HTML Read More »

The head tag in HTML

Применение тега head HTML

What does the head tag do in HTML? An HTML page consists of head and body elements that contain all of the page elements and data.The head element contains information about the HTML document that is used by browsers and search engine crawlers, but is not displayed to website visitors.The head tag contains elements that …

The head tag in HTML Read More »

The hr tag in HTML

Применение тега hr HTML

The hr tag in HTML The hr element is used for a thematic break between paragraph level elements. It usually appears as a horizontal line. A closing tag is not required. The hr element is a separator, not a border It is very easy to misuse the hr element. If you find it included in …

The hr tag in HTML Read More »