23 lines
772 B
HTML
23 lines
772 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>hippoz</title>
|
||
|
|
||
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap" rel="stylesheet">
|
||
|
|
||
|
<link rel="stylesheet" href="/style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="card navigation-card">
|
||
|
<div class="navigation-buttons">
|
||
|
<a href="#" class="button-default">home</a>
|
||
|
<a href="#" class="button-default">file server</a>
|
||
|
<a href="#" class="button-default">git server</a>
|
||
|
<a href="#" class="button-default">about me</a>
|
||
|
<a href="#" class="button-default">contact me</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|