24 lines
722 B
HTML
24 lines
722 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>About</title>
|
|
<link rel="stylesheet" type="text/css" href="../styles/styles.css" />
|
|
</head>
|
|
<body>
|
|
<div class="whole-wrapper">
|
|
<div class="nav-wrapper">
|
|
<a class="home-link" href="/">Home</a>
|
|
<a class="about-link" href="/about">About</a>
|
|
<a class="news-link" href="/news">News</a>
|
|
</div>
|
|
<div class="atitle-wrapper">
|
|
<h1 class="title">About Us.</h1>
|
|
</div>
|
|
<div class="about-content-wrapper">
|
|
<p class="about-content">We are a streaming service that emphasises the freedom of all it's users -- viewers and streamers alike.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|