implement buttons

This commit is contained in:
2019-06-09 01:03:58 +02:00
parent dcac94f5ca
commit 5ea26605d3
4 changed files with 72 additions and 12 deletions

View File

@@ -1,12 +1,14 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="static/site.css">
<script src="static/buttons.js"></script>
</head>
<body>
<div class=top-bar>
<div class=top-button>Forward</div>
<div class=top-button>Backward</div>
<div class=top-button>Top 100</div>
<button type="button" onclick=forward() class=top-button>Forward </button>
<button type="button" onclick=backward() class=top-button>Backward</button>
<button type="button" onclick=firstPage() class=top-button>Top 100 </button>
<input class=input-field>
<input class=input-field>
</div>