Last active
August 22, 2018 08:40
-
-
Save VladaHejda/ffe6a95e54e4f0aafc7bb647da6a6620 to your computer and use it in GitHub Desktop.
Páti stránka - nástřel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Moje stránky</title> | |
<style> | |
.moje-menu { | |
display: flex; | |
justify-content: space-around; | |
} | |
.muj-obsah { | |
display: flex; | |
} | |
.nejaky-text { | |
color: #f00; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="moje-menu"> | |
<ul> | |
<li> | |
<a href="/blog">Blog</a> | |
</li> | |
<li> | |
<a href="/kontakt">Kontakt</a> | |
</li> | |
</ul> | |
</div> | |
<div class="muj-obsah"> | |
<p class="nejaky-text"> | |
Ahoj já jsem princezna Páťa... | |
</p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment