100-Days-Of-Code/Visual Studio Code Projects/Day-57/templates/index.html
Muhammad Rameen Farooqui 7264d58c74 fix: Added DOCTYPE
2025-01-03 19:55:49 +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>