html template layout code example
Example 1: html template
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Title Goes Here</title>
<meta name="description" content="Description Goes Here">
<link rel="stylesheet" href="style.css">
</head>
<body>
// if scripts is required add:
<script src="js/scripts.js"></script>
</body>
</html>
Example 2: html template
<!DOCTYPE>
<html>
<head>
<title>Title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
</head>
<body>
</body>
</html>
Example 3: html layout
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
Example 4: html layout
<!DOCTYPE html>
<html>
<head>
<title>TITLE</title>
<script>
</script>
<style>
</style>
</head>
<body>
<h1>Hello!</h1>
</body>
</html>
Example 5: html templates
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My Website</title>
<link rel="icon" href="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_92x30dp.png" type="x_icon">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
</body>
</html>