19 lines
554 B
HTML
19 lines
554 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Trading Zone Website</title>
|
|
<link rel="icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/styles.css') }}">
|
|
<script type="text/javascript" src="{{ url_for('static', filename='js/main.js') }}" ></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<a href="/strategies/abc">Abc</a>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |