Answers for "can we write css on 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
0

how to use css in php example

<!DOCTYPE html>
<html>
<body>

<style>
.mycssquote{
	color: white;
    background: black;
    border:1px solid red;
    padding: 5px;
}
</style>

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

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

Code answers related to "can we write css on php"

Browse Popular Code Answers by Language