Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/list/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
List 有序列表上的超链接_List_Hyperlink - Fatal编程技术网

List 有序列表上的超链接

List 有序列表上的超链接,list,hyperlink,List,Hyperlink,谢谢你阅读这个问题。我有一个小问题,关于我在这些代码底部的标签下的有序列表。在我的预览中,它显示了我的contact.html url。我错过什么了吗 以下是我的完整网站代码,我目前正在处理: <!DOCTYPE html> <html lan="en-US"> <head> <title>Mobile Website Builder</title> </head> <body> &l

谢谢你阅读这个问题。我有一个小问题,关于我在这些代码底部的标签下的有序列表。在我的预览中,它显示了我的contact.html url。我错过什么了吗

以下是我的完整网站代码,我目前正在处理:

<!DOCTYPE html>

<html lan="en-US">

<head>
    <title>Mobile Website Builder</title>
</head>

<body>  

    <header id="page_header">
            <h1>Wiltshire Mobile Website Builder</h1>
        <nav>
            <ul>
                <li><a href="index.html">Home</li>
                <li><a href="services.html">Services</li>
                <li><a href="about.html">About</li>
                <li><a href="contact.html">Contact</li>
            </ul>
        </nav>

    </header>

    <img src="mobileconversion.JPG" />

<section>

    <article>
        <p><strong>Wiltshire mobile website</strong> is a mobile and multi-screen website builder for businesses. We also provide SEO services for your marketing needs.</p>
        <p>
            <h3>Why us?</h3>
            <ol>
                <li>Search engine friendly mobile & multi-screen website</li>
                <li>Attractive design</li>
                <li>Search engine optimization</li>
                <li>Very competitive price</li>
            </ol>
        </p>
    </article>

</section>  

</body>

</html>
你必须关闭那些标签

应该是

<li><a href="index.html">Home</a></li>
其他标签也是如此

<li><a href="index.html">Home</a></li>