/
AlexeyS_AS
/
Gerber-TEST
Обзор
Документация
Войти
/
AlexeyS_AS
/
Gerber-TEST
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
php/index.php
42 строки
1 KB
Alexey Karizhenskiy
Init
13 апр 2025, 01:52
13 апр 2025, 01:52
64d3235
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Ссылки</title> <style> body { font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background-color: #f5f5f5; } .links { text-align: center; } .link { display: block; margin: 20px; padding: 15px 30px; background-color: #4CAF50; color: white; text-decoration: none; border-radius: 5px; font-size: 18px; transition: background-color 0.3s; } .link:hover { background-color: #45a049; } </style> </head> <body> <div class="links"> <a href="test_1" class="link">Тест 1</a> <a href="test_2" class="link">Тест 2</a> </div> </body> </html>