“Comment utiliser CSS dans l'exemple PHP” Réponses codées

Comment utiliser CSS dans l'exemple PHP

<!DOCTYPE html>
<html>
<body>

<?php
echo "Welcome to Softhunt.net";
echo "<p style='color:red;'>This is a text in PHP echo.</p>";
?>

</body>
</html>
Unsightly Unicorn

Comment utiliser CSS dans l'exemple PHP

<!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>
Unsightly Unicorn

Comment utiliser CSS dans l'exemple PHP

<!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>
Unsightly Unicorn

Réponses similaires à “Comment utiliser CSS dans l'exemple PHP”

Questions similaires à “Comment utiliser CSS dans l'exemple PHP”

Plus de réponses similaires à “Comment utiliser CSS dans l'exemple PHP” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code