maotube/public/index.html
2024-01-19 03:48:01 +01:00

32 lines
998 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MaoTube</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>MaoTube</h1>
<nav>
<a href="/"><b>Home</b></a> -
<a href="/search">Search</a> -
<a href="/register">Register</a> -
<a href="/login">Login</a> -
<a href="/upload">Upload</a>
</nav>
<br>
<br>
</header>
<form method="GET" target="_self" action="/search">
<input type="text" name="query" placeholder="...">
<input type="submit" value="Search">
</form>
<br>
<img src="chairman_1.jpg" alt="The chairman" height="600">
<img src="chairman_2.jpg" alt="The chairman" height="600">
<img src="chairman_3.jpg" alt="The chairman" height="600">
</body>
</html>