Files
FlaskBlog/templates/index.html

17 lines
412 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Main</title>
</head>
<body>
{% extends "base.html" %}
{% block content %}
<h1>Hello World</h1>
<p style="font-size: 5ch; color: blueviolet; font-weight: bold; font-style: italic;">This is a test</p>
{% endblock %}
</body>
</html>