Answers for "html and css to php"

PHP
2

adding css to php file

echo "<link rel='stylesheet' type='text/css' href='CSS/main.css'>";
Posted by: Guest on May-08-2021
2

css php

<?php
  header('Content-type: text/css');
  /*
    Hier werden Variablen und ggf.
    Algorithmen festgelegt.
  */
?>

body {
  background-color: #ffffff;
  color: #000000;
}
Posted by: Guest on June-16-2020

Browse Popular Code Answers by Language