9
Q:

basic html


<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html> 
4
<!-- Answer to: "html basics" -->

<!DOCTYPE html>
<html>
<head>
	<link rel="stylesheet" type="text/css" href="./style.css">
	<script type="text/javascript" src="./script.js"></script>
	<title>...</title>
</head>
<body>
	...
</body>
</html>
3
<!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
Basic Html Template:
<html>
  <head>
    <title>
    	/* document title here */
    </title>    
    /* document meta information and external file include written here */
  </head>
  <body>
  	/* document body goes here */
  </body>
</html>
1
<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>
1
<p>My cat is very grumpy</p>
1

<!DOCTYPE html>
<html lang="en-US">
<body>


 ...

</body>
</html>
 
0

<p style="color:red">This is a red paragraph.</p>
   
0
My cat is very grumpy
0

 <p
 title=About W3Schools> 
0

New to Communities?

Join the community