@edyth Самый просто способ подключить CSS файл в PHP это использовать include и ниже пример использования:
1 2 3 |
<style> <?php include 'css/styles.css'; ?> </style> |
@edyth
Существует несколько способов подключения CSS в PHP-файл:
1 2 3 4 5 6 7 8 9 10 |
<!DOCTYPE html> <html> <head> <title>Мой сайт</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <!-- Здесь размещается HTML-код сайта --> </body> </html> |
1 2 3 4 |
<?php header("Content-type: text/css"); include("style.css"); ?> |
1 2 3 4 |
<?php $color = "red"; echo "<div style='color: $color'>Привет, мир!</div>"; ?> |
1 2 3 4 5 6 |
<?php echo "<style> body { background-color: #F0F0F0; } h1 { color: blue; } </style>"; ?> |