archoslinux/index.html

102 lines
2.2 KiB
HTML

<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Archos - Osobní Vizitka</title>
<style>
body {
font-family: 'Arial', sans-serif;
color: #333;
line-height: 1.6;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
header {
background: #333;
color: #fff;
padding: 1em 0;
text-align: center;
}
header img {
border-radius: 50%;
max-width: 150px;
}
h1, h2 {
color: #333;
}
p {
margin-bottom: 10px;
}
a {
color: #333;
text-decoration: none;
}
a:hover {
color: #0066cc;
}
section {
padding: 1em;
margin: 1em 0;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 1em 0;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<img src="profilovka/archos.jpg" alt="Archos Profile Photo">
<h1>Archos</h1>
<p>Fanoušek opensource a Arch Linuxu</p>
</header>
<section>
<h2>O mně</h2>
<p>Krátký odstavec popisující tebe a tvou práci.</p>
</section>
<section>
<!-- HTML - Upravená část pro Kontakty -->
<section>
<!-- Sekce kontaktů s mřížkovým layoutem -->
<section class="box-grid-container">
<!-- Každý kontakt je block-link s obrázkem na pozadí a textem -->
<section class="contact-grid">
<div class="contact-item">
<a href="mailto:archos@archoslinux.cz">E-mail</a>
</div>
<section class="contact-grid">
<div class="contact-item">
<a href="mailto:archos@archoslinux.cz">E-mail</a>
</div>
<!-- Opakujte pro další kontakty -->
</section>
<!-- Opakujte pro další kontakty -->
</section>
</section>
<footer>
<p>© [2023], archos</p>
</footer>
</body>
</html>