přidány první soubory

This commit is contained in:
archos 2024-05-12 08:36:22 +02:00
parent 3ae474e2b1
commit fc0c449046
3 changed files with 39 additions and 0 deletions

23
index.html Normal file
View File

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="styly.css">
<title>Zdenek Kreml</title>
</head>
<body>
<header>
<h1>Vítejte na mé osobní stránce!</h1>
</header>
<section>
<img src="profilovka/archos.jpg" alt="Můj obrázek">
<h2>O mně</h2>
<p>Ahoj, jmenuji se Zdenek Kreml a jsem [vaše povolání nebo zájmy]. Tato stránka je krátkým úvodem do mého světa.</p>
</section>
<footer>
<p>Kontaktujte mě na email@example.com</p>
</footer>
</body>
</html>

BIN
profilovka/archos.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

16
styly.css Normal file
View File

@ -0,0 +1,16 @@
h1 {
text-align: center;
}
img {
width: 200px;
border-radius: 80px;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
width: 200px; /* nebo jiná šířka podle potřeby */
}
h2 {
text-align: center;
}