我的Theme.css没有加载?

时间:2016-11-03 23:37:10

标签: html css

在我的网站上,theme.css基本上被忽略了......

它只是没有使用它。 仅供参考,它之前也在工作,我不知道它为什么不再工作..

HTML代码

<html>
<head>
    <title>TFCase.com</title>
    <link rel="stylesheet" type="text/css" href="theme.css">
</head>
<body>

    <div id="header">
        <div id="navbar">
            <a class="nav1" href="/">HOME</a>
            <a class="nav2" href="dice.php">DEPOSIT</a>
            <a class="nav3" href="support.php">SUPPORT</a>
    <div id="steamLogon">
        <?php

            require 'steamauth/steamauth.php';

            if(!isset($_SESSION['steamid'])) {

            loginbutton("small"); //login button

            }  else {

            include ('steamauth/userInfo.php'); //To access the $steamprofile array
            //Protected content
            logoutbutton(); //Logout Button
        } 
        ?>
    </div>
        </div>

    <div id="caselogo">
        <a href="/">
            <img src="images/logo.png" alt="logo" id="logo"/>
        </a>
    </div>
</div>

<div id="page">
    <h2></h2>
</div>
</body>

CSS代码

http://pastebin.com/irURMSzd

0 个答案:

没有答案