将 CSS 添加到现有网站

Add CSS to existing website

我想制作一个更适合移动设备的网站版本:auspuff-schuelerzeitung.de
所以我写了这个 CSS:

#slider-banner{
    display: none;
}

#secondary-right{
    display: none;
}

h1.site-info {
    display: none;
}

但是我怎样才能把它应用到这个网站上呢?

根据您的说明..这就是您可以做到的..

<html>
<?php
$homepage = file_get_contents('https://auspuff-schuelerzeitung.de/');
echo $homepage; //you can strip the closing <html> if it bothers..
?>
<link rel='stylesheet' href='my_changes.css' type='text/css'/>


</html>