basic html setup code example

Example 1: basic html document

<!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>

Example 2: setup html webpage

<!DOCTYPE html>
<html>
  <head lang="en">
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <!--optional css --><link rel="stylesheet" href="style.css" />
    <title>Document</title>
  </head>
  <body>
  </body>
</html>

Example 3: basic html template

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>

Tags:

Html Example