define html code example

Example 1: what does html represent

HYPER-TEXT MARKUP LANGUAGE
It is one of the standardised markup languages that 
defines the layout of a webpage.

You can use CSS to aid in the styling of the webpage.

Example 2: html

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>HTML basics</title>
    </head>
    <body>


    </body>
</html>

Example 3: what is html

HYPER-TEXT MARKUP LANGUAGE
Is the standardised markup language (a subset of XML) that 
defines the layout of a webpage. 
HTML has no functional properties, other languages such as 
JavaScript must be used in order to manipulate the layout
and perform HTTP requests.
CSS (Cascading Style Sheets) is commonly used to style the
elements in the layout.

Tags:

Html Example