importar estilos css a php
Publicado por Pako (1 intervención) el 20/03/2018 02:46:53




Como importar estilos de CSS a PHP ya utlilce link, echo y aun asi no puedo importar
Valora esta pregunta


0
<html lang="en">
<head>
<title>Sitio css</title>
<!-- Bootstrap y CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<!-- estilos-->
<link href="css/main.css" rel="stylesheet">
</head>
<body>
<?php
echo "ya tendras el diseño";
?>
</body>
</html>