web/index.html
2023-12-31 10:21:03 +01:00

60 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title> Deez nuts </title>
<style>
.text {
font-size: 24px;
color: black;
}
.subtitle {
font-size: 36px;
}
.main {
grid-area: main;
}
.left {
grid-area: left;
width: 100%;
height: 100%;
object-fit: cover;
}
.right {
grid-area: right;
width: 100%;
height: 100%;
object-fit: cover;
}
.container {
display: grid;
justify-content: stretch;
grid-template-columns: 3fr 2fr 2fr 3fr;
grid-template-rows: auto;
grid-template-areas:
"left main main right"
"left main main right"
". main main .";
justify-items: center;
}
</style>
</head>
<body> <center>
<div class='container'>
<div class='main'>
<h1 class='title' style='font-size:44px'>Tohle je přepadení</h1>
<p class='text'>"<i>Proč jsme takový vemena Matúši?</i>"</p><br><br>
<p class='text'>Webové stránky takového toho tamtoho člověka</p><br><br>
<h2 class='subtitle'>Kontakt</h2>
<p class='text'>
E-mail: matus1@pull.cz<br>
Discord: the_matuush<br>
</p>
<h2>
</main>
</div>
<img src='karinka.jpg' class='left'><a class='text'><i>Obrázek 1:</i> Karinka</a></img>
<img src='puficek.jpg' class='right'><a class='text'><i>Obrázek 2:</i> Pufíček</a></img>
</center> </body>
</html>