html css templates 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: home template
{% extends 'base.html' %}
{% block title %}
<title>Homepage</title>
{% endblock %}
{% block body %}
<div class="jumbotron">
<div class="container">
<h1 class="display-3 font-weight-lighter">Homepage</h1>
<p class="lead">Lorem ipsum dolor sit amet.</p>
<button class="btn btn-outline-primary">Sign Up</button>
</div>
</div>
{% endblock %}
Example 4: html css layout templates
the best sites that have htmle and css and bootstrap template :
rtl and ltr template =>
https://colorlib.com/
https://themeforest.net/
rtl template :
https://www.rtl-theme.com/
Example 5: html template
<!doctype html>
<html lang="pt-br" class="no-js">
<head>
<base href="">
<meta charset="utf-8"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="msapplication-tap-highlight" content="no">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="theme-color" content="#111111" />
<meta name="description" content=""/>
<title></title>
<link rel="author" href="humans.txt">
<link rel="manifest" href="manifest.json" />
<link rel="apple-touch-icon" sizes="114x114" href="apple-touch-icon-114x114-precomposed.png">
<link rel="apple-touch-icon" sizes="72x72" href="apple-touch-icon-72x72-precomposed.png">
<link rel="apple-touch-icon" sizes="57x57" href="apple-touch-icon-57x57-precomposed.png">
<link rel="apple-touch-icon" sizes="57x57" href="apple-touch-icon.png">
<link rel="shortcut icon" sizes="16x16" href="favicon.ico">
<link rel="stylesheet" media="all" href="styles/index.css">
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<main id="root" role="main"></main>
<script src="scripts/index.js"></script>
</body>
</html>