美文网首页
HTML 常用标签

HTML 常用标签

作者: 小凡凡520 | 来源:发表于2019-07-30 11:36 被阅读0次
    <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>
    

    相关文章

      网友评论

          本文标题:HTML 常用标签

          本文链接:https://www.haomeiwen.com/subject/rujgrctx.html