我有一个我最近一直在努力的网站,我正在努力与之斗争。几年前,除了python类之外,我真的不知道如何编写代码,而我所使用的开源脚本主要是css,php和html。
我在主页的帮助下在主页上添加了一个标签,但是现在我试图让这个标签(关于我们部分)看起来不错。我足够了解(并且知道如何查找)css能够让它看起来像我想要的那样,但我似乎无法将我的css样式表链接到php代码。
<?php
// set the root path
define( "MDSROOT", dirname( __FILE__ ) );
// include the config file
include_once( MDSROOT . "/config.php" );
// include the header
include_once( MDSROOT . "/html/header.php" );
?>
<p>We believe in helping people.</p>
Other text
<p> <!-- stats iframe -->
<div class="status_center">
<iframe width="150" height="50" frameborder=0 marginwidth=0 marginheight=0 VSPACE=0 HSPACE=0 SCROLLING=no src="display_stats.php?BID=1" allowtransparency="true"></iframe> </p>
<?php
include_once( MDSROOT . "/html/footer.php" );
?>
我的css样式表名为&#34; aboutus.css&#34;我在这里复制的代码是&#34; aboutus.php&#34;如何将这些内容链接起来?
答案 0 :(得分:0)
试试这个: 将style.css文件放在html文件夹中。
在标题页顶部添加:
<head>
<link rel="stylesheet" href="html/styles.css">
</head>
在每个php页面上包含标题。