Skip to content

Commit c562d02

Browse files
authored
Create h22_web_app_01_index.html
i_h22_web_app_01/templates/index.html
1 parent 29bb1ca commit c562d02

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

h22_web_app_01_index.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<html>
2+
<head>
3+
<title>The Lucky Page</title>
4+
<link rel="stylesheet" href="{{url_for('static', filename='style.css')}}">
5+
</head>
6+
<body>
7+
<div class="container">
8+
<img src="{{url_for('static', filename='dice.png')}}">
9+
<h1>{{heading}}</h1>
10+
<a href="{{url_for('color_page')}}">Color</a>
11+
<a href="{{url_for('number_page')}}">Number</a>
12+
<a href="{{url_for('week_page')}}">Weekday</a>
13+
<a href="{{url_for('month_page')}}">Month</a>
14+
<a href="{{url_for('cheap_cars')}}">Cars</a>
15+
</div>
16+
</body>
17+
</html>

0 commit comments

Comments
 (0)