Добавлена ссылка на репозиторий Github

This commit is contained in:
Ilia Miheev
2025-06-18 20:22:05 +03:00
parent a0cecda38c
commit e7338143ec
3 changed files with 14 additions and 1 deletions
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

+7 -1
View File
@@ -31,7 +31,13 @@
<!-- Разработчик: Илья) --> <!-- Разработчик: Илья) -->
<body> <body>
<h1>Генератор QR-кодов</h1> <div class="logo">
<h1 id="h1">Генератор QR-кодов</h1>
<a href="https://github.com/IliaMiheev/iQR" target="_blank" title="Github">
<img src="./fluidicon.png" alt="GitHub" style="width: 40px; height: 40px;">
</a>
</div>
<div class="inputs"> <div class="inputs">
<textarea id="text-input" cols="30" rows="3" placeholder="Введите текст"></textarea> <textarea id="text-input" cols="30" rows="3" placeholder="Введите текст"></textarea>
<input title="Изменить тему" id="isLightTheme" type="checkbox" > <input title="Изменить тему" id="isLightTheme" type="checkbox" >
+7
View File
@@ -13,7 +13,14 @@ body {
text-align: center; text-align: center;
} }
.logo {
display: flex;
justify-content: center;
gap: 15px;
}
h1 { h1 {
margin: 0;
color: orangered; color: orangered;
} }