diff options
author | emkael <emkael@tlen.pl> | 2020-05-25 20:41:51 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2020-05-25 20:42:23 +0200 |
commit | 3d22ae0836a8f20a355be0011579fd468da7e52b (patch) | |
tree | 47c5ef7c3594ea709f36252de06d6f17570ceea5 /index.php | |
parent | f58c5d08749dbb885dc9a7d131fc0f3857780c98 (diff) |
Favicon are not being used, but I couldn't bring myself to removing a piece of code that's aligned the way that was.
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -45,8 +45,8 @@ .marketing p + h4 { margin-top: 28px; } - - + + th,td { border: 1px solid silver; text-align: left; @@ -60,7 +60,7 @@ color:silver; font-size: 0.9em; } - + body { text-align: center; } @@ -79,12 +79,12 @@ <script src="bootstrap/js/html5shiv.js"></script> <![endif]--> - <!-- Fav and touch icons --> + <!-- Fav and touch icons <link rel="apple-touch-icon-precomposed" sizes="144x144" href="bootstrap/ico/apple-touch-icon-144-precomposed.png"> <link rel="apple-touch-icon-precomposed" sizes="114x114" href="bootstrap/ico/apple-touch-icon-114-precomposed.png"> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="bootstrap/ico/apple-touch-icon-72-precomposed.png"> <link rel="apple-touch-icon-precomposed" href="bootstrap/ico/apple-touch-icon-57-precomposed.png"> - <link rel="shortcut icon" href="bootstrap/ico/favicon.png"> + <link rel="shortcut icon" href="bootstrap/ico/favicon.png"> --> </head> <body> @@ -105,11 +105,11 @@ <form id="boardNumForm" method="post" action="."> Wprowadź liczbę rozdań: <input type="number" name="n" style="width:40px"><br /> - Typ tabeli: <input type="radio" name="discrete" value="0" checked="checked"> ciągła, + Typ tabeli: <input type="radio" name="discrete" value="0" checked="checked"> ciągła, <input type="radio" name="discrete" value="1"> dyskretna<br /><br /> <a class="btn btn-success" href="#" onclick="document.forms['boardNumForm'].submit();">Pokaż tabelę</a> </form> - + <?php $n = $_POST['n']; $discrete = $_POST['discrete']; @@ -143,7 +143,7 @@ } } ?> - + <hr> |