36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="cs">
|
||
|
<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" />
|
||
|
<title>MXChat</title>
|
||
|
<link rel="stylesheet" href="style/main.css" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<header class="page-header">
|
||
|
<h1 class="project-name">MXChat</h1>
|
||
|
<h2 class="project-tagline">Moderní komunikační platforma</h2>
|
||
|
<nav>
|
||
|
<a href="index.html" class="btn">Domů</a>
|
||
|
<a href="about.html" class="btn">Co je MXChat</a>
|
||
|
<a href="projects.html" class="btn">Projekty</a>
|
||
|
<a href="bridges.html" class="btn">Mosty</a>
|
||
|
</nav>
|
||
|
</header>
|
||
|
<main class="main-content">
|
||
|
<section>
|
||
|
<h2>Vítejte na MXChat</h2>
|
||
|
<p>
|
||
|
MXChat je moderní webová aplikace určená pro jednoduchou a efektivní
|
||
|
komunikaci mezi uživateli.
|
||
|
</p>
|
||
|
</section>
|
||
|
</main>
|
||
|
<footer class="site-footer">
|
||
|
<p>© 2024 MXChat. Všechna práva vyhrazena.</p>
|
||
|
</footer>
|
||
|
<script src="scripts/main.js"></script>
|
||
|
</body>
|
||
|
</html>
|