16 lines
583 B
HTML
16 lines
583 B
HTML
{% load static %}
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Asia Tours Two</title>
|
|
<link rel="stylesheet" href="{% static 'styles/styles.css' %}" />
|
|
</head>
|
|
<body>
|
|
<h1>Asia Tours Schedule for June</h1>
|
|
<p>This website provides Tour Listings for Asian destinations!</p>
|
|
<script src="{% static 'js/script.js' %}"></script>
|
|
<img src="{% static 'images/dog.jpg' %}" alt="Dogs on Tour" />
|
|
</body>
|
|
</html>
|