100-Days-Of-Code/Visual Studio Code Projects/Day-57/templates/index.html
2025-01-06 05:58:14 +05:30

16 lines
352 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF8">
<title>My Website</title>
</head>
<body>
<h1>Hello World!</h1>
<h2>{{ 5 * 6}}</h2>
<h3>Random Number: {{ num }}</h3>
<a href="{{ url_for('get_blog') }}">Go To Blog</a>
</body>
<footer>
<p>Copyright {{ year }}. Built by Mohammad.</p>
</footer>
</html>