Picture-Puzzle-website/templates/history.html

15 lines
640 B
HTML

{% extends 'base.html' %}
{% block title %}
Picture Puzzle history
{% endblock %}
{% block content %}
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/posts.css') }}">
<section class="content">
<h1>Picture Puzzle history</h1>
<img src="{{ url_for('static', filename='images/picture-puzzle.png') }}" alt="Picture Puzzle original" width="800" height="500">
<p class="text"></br>The widgets originated in the Sideshow project at Microsoft Research. Its development started in the summer of 2000 and lasted for 1 year under the Microsoft brand.</p>
</section>
{% endblock %}