-1

你们中的任何人都可以在这里发现错误吗?如果有的话……我要疯了……上传到服务器时,CSS 页面没有与 html 链接。W3 验证显示“未找到字符编码!回退到 UTF-8”。???

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Text</title>
  <meta name="description" content="Another text">
  <meta name="author" content="Content Text">
  <link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon" />
  <link rel="icon" href="img/favicon.ico" type="image/x-icon" />
  <meta name="viewport" content="initial-scale=1" />
    <!-- Fonts -->
  <link href='http://fonts.googleapis.com/css?family=Open+Sans:800' rel='stylesheet' type='text/css'><!-- About page Services -->
  <link href='http://fonts.googleapis.com/css?family=Roboto+Slab' rel='stylesheet' type='text/css'> <!-- H1, h2 -->
  <link href='http://fonts.googleapis.com/css?family=Molengo' rel='stylesheet' type='text/css'><!-- p -->
  <!-- Stylesheets -->
  <link href="css/normalize.css" rel="stylesheet" type="text/css" />  
  <link href="css/style.css" rel="stylesheet" type="text/css" /> 
  <link href="css/grid.css" rel="stylesheet" type="text/css" /> 
  <link href="css/style3.css" rel="stylesheet" type="text/css" />

你需要

@charset "utf-8"; /* CSS 文档 */

在开始css文件之前?

<?php include('inc/header.php'); ?>
<div id="index" class="container">
  <div class="container">

这样做可以吗?此包含行位于页面顶部,高于所有其他内容

4

1 回答 1

0

您的索引文件没有被解析为 php.ini。1) 你给它一个 .php 扩展名了吗?2)您的服务器上是否安装了php?

于 2013-10-24T18:22:18.003 回答