99 lines
2.4 KiB
HTML
99 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title> Deez nuts </title>
|
|
<style>
|
|
@font-face {
|
|
font-family: 'xenippa';
|
|
src: URL('img/xenippa.ttf') format('truetype');
|
|
}
|
|
@font-face {
|
|
font-family: 'ninifont';
|
|
src: URL('img/ninifont.otf') format('opentype');
|
|
}
|
|
h1, h2, a, p {color: black;}
|
|
h1 {font-size: 300%;}
|
|
h2 {font-size: 275%;}
|
|
p {font-size: 150%;}
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.box {
|
|
border-radius: 1%;
|
|
margin-left: 5%;
|
|
margin-right: 5%;
|
|
padding: 1%;
|
|
background-color: lightgray;
|
|
}
|
|
.main {grid-area: main;}
|
|
.left {grid-area: left;}
|
|
.right {grid-area: right;}
|
|
.imgcontain {object-fit: contain;}
|
|
.quote {font-family: 'ninifont';}
|
|
.container {
|
|
display: grid;
|
|
grid-template-columns: 3fr 2fr 2fr 3fr;
|
|
grid-template-rows: auto;
|
|
grid-template-areas:
|
|
"left main main right"
|
|
"left main main right"
|
|
". . . .";
|
|
justify-items: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body> <center>
|
|
<h1>Tohle je přepadení</h1>
|
|
<div class='container'>
|
|
<div class='main'>
|
|
<div class='box'>
|
|
<p class='text quote'>
|
|
"Proč jsme takový vemena Matúši?"<br> - Kačka
|
|
</p>
|
|
<p class='text quote'>
|
|
"Nepřišel Mohamed za javascriptem, přišel javascript za Mohamedem."<br> - Kubík
|
|
</p>
|
|
<p class='text quote'>
|
|
"Chudák Mohamed."<br> - Jirka
|
|
</p>
|
|
<p class='text quote'>
|
|
"Čau lidi, já jsem křeček."<br> - Topení
|
|
</p>
|
|
</div>
|
|
|
|
<h2>Projekty</h2>
|
|
<p>
|
|
Rekurzivní piškvorky:
|
|
<a href='p/index.html'>mat.uuush.eu/p</a>
|
|
</p>
|
|
|
|
<br>
|
|
|
|
<h2>Kontakt</h2>
|
|
<p>
|
|
E-mail: <a href='mailto:matus1@pull.cz'>matus1@pull.cz</a><br>
|
|
Discord: the_matuush<br>
|
|
GitHub: <a href='https://github.com/matuush'>matuush</a>
|
|
</p>
|
|
</div>
|
|
|
|
<div class='left'> <div class='imgcontain'>
|
|
<img src='img/karinka.jpg'>
|
|
<p style='margin-top: 0%;'>
|
|
<i>Obrázek 1:</i>
|
|
<a style="font-family: xenippa">Karinka</a>
|
|
</p>
|
|
</div> </div>
|
|
|
|
<div class='right'> <div class='imgcontain'>
|
|
<img src='img/puficek.jpg'>
|
|
<p style='margin-top: 0%;'>
|
|
<i>Obrázek 2:</i>
|
|
<a style="font-family: xenippa">Pufíček</a>
|
|
</p>
|
|
</div> </div>
|
|
</div>
|
|
</center> </body>
|
|
</html>
|