28 lines
747 B
HTML
28 lines
747 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<Header>
|
|
<h1>Test</h1>
|
|
</header>
|
|
<div class=wrapper>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="/active"><button class=button>Active</button></a></li>
|
|
<li><a href="/download"><button class=button>Download</button></a></li>
|
|
<li><a href="http://google.com"><button class=button>Test</button></a></li>
|
|
<li><button class=button>asdfl</button></li>
|
|
</nav>
|
|
<section>
|
|
HIIIIIII
|
|
<section>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|