HTML 常用标签

2019-07-30  本文已影响0人  小凡凡520
<em> 斜体
<strong>强调
<q>引用
<blockquote>长文本引用
&nbsp;空格
< code >代码块
<pre>大段代码块,很实用
<ul>
<ol>
<table summary =""> <tbody> <tr> <th> <td> <caption>
<a href="" title="" target="_blank">
<a href="mailto:"></a>
<form method="post" action="">
<form method="post" action="">
        <label>ss</label>
        <input type="text" name="" id="" value="">
 </form>
    <form method="post" action="">
        <label for="">ss</label>
        <input type="text" name="" id="" value="">
        <input type="button" value="qw">
        <input type="checkbox" checked=false>
        <input type="reset">
        <input type="password">
    </form>
<body>
    <form method="post" action="">
        <textarea rows="100" cols="100"></textarea>
    </form>
</body>
<body>
    <form method="post" action="">
        <input type="radio" name="1">
        <input type="radio" name="1">
        <input type="radio">
        <input type="radio">
    </form>
</body>
<body>
    <form method="post" action="">
        <input type="checkbox" name="1">
        <input type="checkbox" name="1" checked>
        <input type="reset">
    </form>
</body>
<body>
    <form method="post" action="">
        <label>爱好:</label>
        <select multiple="multiple">
            <option>星期一</option>
            <option>星期二</option>
            <option>星期三</option>
        </select>
    </form>
</body>
上一篇 下一篇

猜你喜欢

热点阅读