HTML中的常用标签及属性

原创 2019-02-23 21:19:49 253
摘要:<html><head>    <meta chartset="utf-8">    <title>HTML标签及属性</title>    <link rel="shortcut i

<html>

<head>

    <meta chartset="utf-8">

    <title>HTML标签及属性</title>

    <link rel="shortcut icon" type="image/x-icon" hrf=""><!--标题 title前的小图标 -->

    <link rel = "stylesheet" type="text/css" hrf=""><!--  引入外部样式表 -->

    <style type="text/css">
        <!--
        table{ width:500px;height:500px; border:3px solid #ccc;  border-collapse:collapse;}

        table tr th{border:1px solid #ccc;}

        table tr td{border:1px solid #ccc;}

        h3{color:red;}

        
        -->

    </style>

</head>

<body>

    <h3>HTML标签及属性</h3>

    <p style="text-indent:2em;">2016年3月8日,习近平总书记参加十二届全国人大四次会议湖南代表团审议时指出,要创造性开展工作,着力推进供给侧结构性改革,着力加强保障和改善民生工作,着力推进农业现代化,让广大人民群众有更多获得感。</p>

    <a target="_blank" href="http://www.163.com" >网易</a>

    <img scr="">

    <ul>

        <li>Web前端</li>

         <li>JavaScript</li>

         <li>MySQL</li>

    </ul>

    <ol>

        <li>Web后台</li>

         <li>Note</li>

         <li>PHP脚本语言</li>

    </ol>

    <form method="post" action="">

        <input type="text" name="username" placeholder="请输入用户名">

        <input type ="password" name="pwd" placeholder="请输入密码">

        <input type="submit" name="submit">

        <input type="reset" name="reset">

    </form>

    <table>

        <tr>

            <th >序号</th>

            <th>姓名</th>

            <th>工作单位</th>

        </tr>

        <tr>

            <td>dddd</td>

            <td>ffff</td>

            <td>gggg</td>

        </tr>

    

        <tr>

            <td>qqqq</td>

            <td>aaaaf</td>

            <td>ddddd</td>

        </tr>

    </table>

</body>

</html>

发布手记

热门词条