有点混淆超链接... [HTML]

时间:2015-12-06 16:21:00

标签: html hyperlink

我最近开始构建我的第一个网站,我还是html的初学者。我的网站旁边有三个按钮,"游戏","聊天"和"关于"。他们都有自定义图片,但似乎有一个非常小的超链接" - "在按钮的右下角。像超链接一样,单击时会变为红色。这是我点击"游戏"按钮:正如您所看到的,有一个小的" - "按钮右下角的超链接。 这是我的游戏页面的所有代码: < HTML>     <报头GT;         <标题> CBgames.com< /标题>     < /报头>     < body bgcolor =#474747 text =#FFFFFF>         <中心],[             < img src =" siteimages / title.gif">         < /中心],[         < a href =" file:/// C:/Users/user/Desktop/htmlwebsite/games.html">             < img src =" siteimages / gamesbutton.gif"的onmouseover =" this.src =' siteimages / mouseovergamesbutton.gif&#39 ;;"的onmouseout =" this.src =' siteimages / gamesbutton.gif'" />         < / A>         &LT峰; br>         < a href =" file:/// C:/Users/user/Desktop/htmlwebsite/chat.html">             < img src =" siteimages / chatbutton.gif"的onmouseover =" this.src =' siteimages / mouseoverchatbutton.gif&#39 ;;"的onmouseout =" this.src =' siteimages / chatbutton.gif'" />         < / A>         &LT峰; br>         < a href =" file:/// C:/Users/user/Desktop/htmlwebsite/about.html">             < img src =" siteimages / aboutbutton.gif"的onmouseover =" this.src =' siteimages / mouseoveraboutbutton.gif&#39 ;;"的onmouseout =" this.src =' siteimages / aboutbutton.gif'" >         < / A>         &LT峰; br>         &LT峰; br>         < table Align =" left"边界=" 1"宽度=" 300">             < TR>                 < td>< center>我们最新的游戏:< / center>< / TD>             < / TR>             < TR>                 < TD>                     <中心],[游戏和LT; /中心],[                     <中心],[游戏和LT; /中心],[                     <中心],[游戏和LT; /中心],[                 < / TD>             < / TR>         < /表>         < style type =" text / css">             身体 {                 保证金:0像素;                 填充底:25像素;             }             #footer {                 白颜色;                 字体:乔治," Times New Roman",Times,serif;                 字体大小:16px的;                 宽度:1920px;                 高度:20像素;                 行高:20像素;                 背景色:#474747;                 文本对齐:中心;                 位置是:固定;                 底部:0像素;             }         < /风格>         < HEAD>             <身体GT;                 < div id ="页脚">                     版权和复制; 2015 CB-GAMES.NET [SA] - 保留所有权利                 < / DIV>             < /体>         < /体>     < / HTML> 我还是个新手,抱歉有任何麻烦。

3 个答案:

答案 0 :(得分:1)

这是在HTML中添加网址的语法

<a href="url">link text</a>

添加&#34;示例&#34;的示例网站网址如下所示

<a href="http://example.com">Click here to direct to Example site</a>

答案 1 :(得分:0)

锚点的开始标记与其内部的图像(以及图像和结束标记之间)之间有空格。

空格是文字。

链接中的文字加下划线。

重新格式化HTML以删除空格。

答案 2 :(得分:0)

你的标记仍然存在很多错误,但这是一个快速尝试让你朝着正确的方向前进的方法:

<!doctype html>
<html>
    <head>
        <title>CBgames.com</title>
        <style type="text/stylesheet">
        BODY { 
            background-color:#474747; 
            color:#FFF;
            margin:0;
            padding-bottom:25px;
            }
        .titleimage { text-align:center; }
        .buttons {
            margin-bottom: 2em;
        }
        .buttons A { display:block; }
        .table1 { text-align:left; border:solid 1px #000; width: 300px; }
        #footer {
                color:white;
                font:George, "Times New Roman", Times, serif;
                font-size:16px;
                height:20px;
                line-height:20px;
                background-color:#474747;
                text-align:center;
                position:fixed;
                left:0;right:0;bottom:0;
            }       
        </style>
    </head>
    <body>
        <dIv class="titleimage"><img src="siteimages/title.gif"></div>
        <div class="buttons">
            <a href="games.html"><img 
                src="siteimages/gamesbutton.gif" onmouseover="this.src='siteimages/mouseovergamesbutton.gif';" onmouseout="this.src='siteimages/gamesbutton.gif'" /></a>
            <a href="chat.html"><img 
                src="siteimages/chatbutton.gif" onmouseover="this.src='siteimages/mouseoverchatbutton.gif';" onmouseout="this.src='siteimages/chatbutton.gif'" /></a>
            <a href="about.html"><img 
                src="siteimages/aboutbutton.gif" onmouseover="this.src='siteimages/mouseoveraboutbutton.gif';" onmouseout="this.src='siteimages/aboutbutton.gif'" ></a>
        <div>

        <table class="table1">
            <tr><td>Our Newest Games:</td></tr>
            <tr>
                <td>
                    <div>Game</div>
                    <div>Game</div>
                    <div>Game</div>
                </td>
            </tr>
        </table>
        <footer id="footer">
           COPYRIGHT &copy; 2015 CB-GAMES.NET [SA] - ALL RIGHTS RESERVED
        </footer>
    </body>
</html>