“So verwenden Sie CSS im PHP -Beispiel” Code-Antworten

So verwenden Sie CSS im PHP -Beispiel

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

So verwenden Sie CSS im PHP -Beispiel

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

So verwenden Sie CSS im PHP -Beispiel

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

Ähnliche Antworten wie “So verwenden Sie CSS im PHP -Beispiel”

Fragen ähnlich wie “So verwenden Sie CSS im PHP -Beispiel”

Weitere verwandte Antworten zu “So verwenden Sie CSS im PHP -Beispiel” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen