fonts and webassembly remove
This commit is contained in:
parent
89bbc0dbe4
commit
3ecd6dc4bc
3 changed files with 13 additions and 4 deletions
BIN
img/ninifont.otf
Normal file
BIN
img/ninifont.otf
Normal file
Binary file not shown.
BIN
img/xenippa.ttf
Normal file
BIN
img/xenippa.ttf
Normal file
Binary file not shown.
17
index.html
17
index.html
|
@ -3,6 +3,14 @@
|
|||
<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');
|
||||
}
|
||||
.title {
|
||||
color: black;
|
||||
font-size: 300%;
|
||||
|
@ -15,6 +23,9 @@
|
|||
color: black;
|
||||
font-size: 150%;
|
||||
}
|
||||
.quote {
|
||||
font-family: 'ninifont';
|
||||
}
|
||||
.main {grid-area: main;}
|
||||
.left {grid-area: left;}
|
||||
.right {grid-area: right;}
|
||||
|
@ -55,11 +66,9 @@ img {
|
|||
</div> </div>
|
||||
|
||||
<div class='down'>
|
||||
<br> <p class='text'>Webové stránky takového toho tamtoho člověka</p> <br>
|
||||
<h2 class='subtitle'>Projekty</h2>
|
||||
<p class='text'>
|
||||
Rekurzivní piškvorky ve Svelte: <a href='p/index.html'>mat.uuush.eu/p</a><br>
|
||||
Rekurzivní piškvorky v C++ do WebAssembly: <a href='pisiskvory/pisiskvory.html'>mat.uuush.eu/pisiskvory</a><br>
|
||||
Rekurzivní piškvorky: <a href='p/index.html'>mat.uuush.eu/p</a><br>
|
||||
</p>
|
||||
|
||||
<h2 class='subtitle'>Kontakt</h2>
|
||||
|
@ -78,7 +87,7 @@ img {
|
|||
];
|
||||
let quotes = document.getElementById('quotes');
|
||||
q.forEach(quote => {
|
||||
quotes.innerHTML += '<p class=\'text\'>"<i>' + quote[0] + '</i>"<br> - ' + quote[1] + '</p>';
|
||||
quotes.innerHTML += '<p class=\'text quote\'>"<i>' + quote[0] + '</i>"<br> - ' + quote[1] + '</p>';
|
||||
});
|
||||
</script>
|
||||
</center> </body>
|
||||
|
|
Loading…
Reference in a new issue