Answers for "php with html and css"

PHP
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
0

how to use css in php example

<!DOCTYPE html>
<html>
<body>

<style>
.mycss{
	color: white;
    border:1px solid #000;
    background: black;
    padding: 10px;
}
</style>

<?php
echo "Welcome to Softhunt.net";
echo "<p class='mycss'>This is a text in PHP echo.</p>";
?>

</body>
</html>
Posted by: Guest on December-28-2021

Code answers related to "php with html and css"

Browse Popular Code Answers by Language