Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to use css in php example

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

css php

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

body {
  background-color: #ffffff;
  color: #000000;
}
Comment

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

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

PREVIOUS NEXT
Code Example
Python :: python regular expressions 
Python :: Class In Python With Instance Method 
Python :: flask api 
Python :: convert pandas group to dict 
Python :: make password python 
Python :: selenium python has no attrirute getText 
Python :: DJANGO rest framework GET POST 
Python :: how to print class attributes in python 
Python :: Seaborn python for stacked column 
Python :: How to Get the Union of Sets in Python 
Python :: register admin django 
Python :: permutation python 
Python :: print(int()) 
Python :: change month name in python 
Python :: add values to tuple python 
Python :: tqdm description 
Python :: pygame make a window 
Python :: save seaborn lmplot 
Python :: python int binary 
Python :: Python list files only in given directory 
Python :: print out session information django 
Python :: numpy concatenation python 
Python :: Flatten List in Python Using NumPy Reshape 
Python :: python 2.7 get user input 
Python :: python write into file at position 
Python :: download unsplash images python no api 
Python :: cite pandas python 
Python :: beautifulsoup getting data from a website 
Python :: Create an array of 10 zeros 
Python :: Delete file in python Using the shutil module 
ADD CONTENT
Topic
Content
Source link
Name
4+5 =