Basics of HTML
BALJA
0:00 - !DOCTYPE html - This declares the document type and version of HTML being used. 0:06 - html - This is the root element of the HTML code and contains all the other elements. 0:11 - head - This contains metadata about the document, such as the page title, links to external stylesheets, and scripts. 0:16 - title - This sets the title of the page, which is displayed in the browser tab. 0:21 - body - This contains the visible content of the web page, such as headings, paragraphs, lists, links, and images. 0:26 - h1 - This creates a top-level heading. 0:31 - p - This creates a paragraph of text. 0:36 - ul - This creates an unordered list. 0:41 - li - This creates a list item within an unordered or ordered list. 0:46 - a - This creates a hyperlink to another webpage or resource. 0:51 - img - This displays an image on the webpage. ... https://www.youtube.com/watch?v=EJU21dk_Czk
2033244 Bytes