Q:

Import a CSS file in php without using HTML format

belongs to collection: PHP Miscellaneous

0

Import a CSS file in php without using HTML format

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Here, we will learn how to import a CSS stylesheet into a PHP file without using the HTML link href.

<?php
	include('file.php');
	<style> //style tag
	// Include the style.css file
	Include('style.css'); 
	// Close the style tag
	</style> 
?>

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

PHP Miscellaneous

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Find similarity of two strings in PHP... >>
<< Include php files when they\'re in different ...