缺少索引文件括号 IDE

Missing index file Brackets IDE

这是一个我没有完全理解的问题。我需要进一步的了解,但我一直无法在其他地方找到它。

大家好。我在括号 IDE 中收到一个错误,看起来像这样 http://imgur.com/WccBRtf 。我完全不明白这里发生了什么,那是因为我不知道 HTML5 索引文件到底是什么。我命名为 index.html 的文件只是我不想 运行 的网页的主要 HTML5 代码。文件如下

<head>
    <!-- Title of webpage -->
    <title>

        Name of Guild

    </title>

    <!-- Link the CSS file so that the html5 can display it --> 
    <link rel = "Stylesheet" type = "text/CSS"  href = "GuildPageStyle.css">

</head>

<!-- Main Body of the page -->
<body>







    <!--Post section-->


    <div class = "PostsSEC">




        <!-- The way to display multiple posts is to go through a while loop counting up until all posts have been displayed with the current pots being displayed being equal to the current post in the while loop -->
        <p id = "PostMain">

            *A post*

        </p>

        <!--This is not the image, this is box it is in-->
        <p id = "PostPosterBoxOR">

            < ORIGINAL
            <br />
            POSTER

        </p>
        <p id = "PostPosterBoxBL">



        </p>

        <!--The next section is totally reliant on a server side language. This is the likes and votes by other powered members of the group-->





        <div id = "EndMessage">    
        <!-- Message at the end of the posts declaring that it is the end --> 
        <h1 id = "PostsEnd">

            That's all the current posts

        </h1>



        <!-- Change the something Missing to a link after completion -->
        <h3 id = "ErrorCheckPostEnd">

            Something Missing? 

        </h3>
        </div>


    </div>

    <!--Profile/Users/Follower barier-->
    <div id = "Bar">
    </div>

    <div id = "BackgroundBlock">
    </div>

    <img src = "http://i.imgur.com/64cUAcH.png" id = "GuildLogo" />

    <!--The group of users-->

    <div id = "Users">

    <!--Replace this section with PHP reliant on the users-->

    </div>

    <img src = "https://pbs.twimg.com/profile_images/855649567756476416/OHQKYYvY_400x400.jpg" id = "ProfileOne" />

    <img src = "https://pbs.twimg.com/profile_images/855649567756476416/OHQKYYvY_400x400.jpg" id = "ProfileTwo" />

    <img src = "https://pbs.twimg.com/profile_images/855649567756476416/OHQKYYvY_400x400.jpg" id = "ProfileThree" />

    <img src = "https://pbs.twimg.com/profile_images/855649567756476416/OHQKYYvY_400x400.jpg" id = "ProfileFour" />

    <img src = "https://pbs.twimg.com/profile_images/855649567756476416/OHQKYYvY_400x400.jpg" id = "ProfileFive" />

    <img src = "https://pbs.twimg.com/profile_images/855649567756476416/OHQKYYvY_400x400.jpg" id = "ProfileSix" />

    <div id = "BackgroundBlockade">
    </div>

    <p id = "BioBlock">
    This is a bio
    </p>

</body>

直到昨天,我才完全能够 运行 括号中的文件。然后,从我的角度来看似乎没有任何原因,我变得无法 运行 代码。在它停止工作后,我将 HTML5 文件的名称更改为 index.html 并保持 CSS 文件完全相同。我不知道发生了什么,也什么都听不懂。

我意识到对于更有经验的程序员来说,这可能看起来像一个类似于 "Why isn't this code running" 的问题,但错误的是他们忘记做 "std::" 而不是只写出 "endl" .我是 HTML5 的新手,完全迷失在这里。我感谢你的时间。祝你有个愉快的夜晚。

这是另一张辅助图片

http://imgur.com/QELF7Ts

(是的,我确实尝试删除 "HTML5 guild page html.html")

所以我已经解决了这个问题。通过将项目作为文件夹而不是一次打开一个单独的文件,我成功地解决了它。问题已解决