Files
example/second_page.html
2021-11-07 17:35:20 +00:00

24 lines
703 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/navbar.css">
<link rel="stylesheet" href="css/second.css">
<title>Document</title>
</head>
<body>
<nav class="navbar">
<div>Logo</div>
<div class="links">
<a href="/index.html"> Home </a>
<a href="/second_page.html"> Second </a>
</div>
<div>Auth</div>
</nav>
<h1 class="title"> Second </h1>
<a href="index.html"> Home </a>
</body>
</html>