HTML Flashcards
1
Q
root element
html
A
<html>
2
Q
paragraph of text tag
html
A
<p>
3
Q
Заголовок 1-го уровня в HTML
html
A
<h1>
4
Q
hyperlink tag
html
A
<a>
The href attribute is the URL the link points to. Attributes are key-value pairs that provide additional information about an element, like href=”https://www.boot.dev”
5
Q
Тэг для метадаты
html
A
<head>
contains metadata about the document. Anything in the <head>
is not rendered visibly in the browser window.
6
Q
Заголовок документа
html
A
<title>
is the title of the document, which is displayed in the browser tab.