html base code code example
Example 1: doctype html model
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Titre de la page</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
...
...
</body>
</html>
Example 2: html base
<!doctype html>
<head>
<title>This is your title.</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>
Example 4: HTML base
<!DOCTYPE html>
<head>
<title>HTML base Tag</title>
<base href = "https://www.tutorialspoint.com" />
</head>
<body>
</body>
</html>