tabby
Version:
create tabbed web apps with progressive enhancement
19 lines (18 loc) • 437 B
HTML
<html>
<head>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<div id="header">
<div id="section">tabby</div>
<ul id="tabs">
<li><a href="/">home</a></li>
<li><a href="/cats">cats</a></li>
<li><a href="/owners">owners</a></li>
<li><a href="/mews">mews</a></li>
</ul>
</div>
<div id="content"></div>
<script src="/bundle.js"></script>
</body>
</html>