Q:

what is html

<!DOCTYPE html>
<html lang="pt-br" xml:lang="fr" xmlns="http://www.w3.org/1999/xhtml">
<head>
	<link rel="stylesheet" type="text/css" href="style.css">
	<title>...</title>
</head>
<body>
	...
<script type="text/javascript" src="script.js"></script>
</body>
</html>
1
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. 
5
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>HTML basics</title>
    </head>
    <body>


    </body>
</html>
11
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.
1

<!DOCTYPE html>
<html><head><title>Page Title</title>
</head><body><h1>This is a Heading</h1><p>This is a paragraph.</p>
</body></html>
 
0
Hypertext Markup Language is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript
0
p
<p>
hello world
</p>
1

New to Communities?

Join the community