free templates on HTML CSS code example

Example 1: html template code

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Your title</title>
</head>
<body>
    <!--Your body-->
  
</body>
</html>

<!--------------------Generated in VSCode with shortcut !-------------------->

Example 2: 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 %}

Tags:

Html Example