美文网首页IT技术
day_002 html 基础标签

day_002 html 基础标签

作者: kusasakey | 来源:发表于2022-03-10 21:07 被阅读0次
    1. img src alt width height
    2. a 链接 空连接 1、href =“##” 2、href="javascript:;" 3、href=" javascript:void(0);"
    3. 锚定 href ="#" 返回顶部 href="#id" id标签内容置顶
    4. 表单
    <!DOCTYPE html>
    <html>
        <head>
            <meta  charset="UTF-8">
            <title> page 03 </title>
        </head>
        <body>
            <form action=" " method="post">
                账号:<input type="text" name="username" id="name" placeholder="请输入用户名"/>
                <br/>
                密码:<input type="password" name="pwd" id="pwd" placeholder="password"/>
                <br/>
                性别:<input type="radio" name="sex"  id="man"/><label for="man">男</label>
                     <input type="radio" name="sex"  id="woman"/><label for="woman">女</label>
                    <input type="radio" name="sex" id="others" checked ="checked"/><label for="others"> 其他</label>
                <br/>
                地址:<select name="">
                        <option value="jingxi">江西</option>
                        <option value="anhui">安徽</option>
                    </select>
                    &nbsp &nbsp
                    <select>
                        <optgroup label="江西">
                            <option value="3601">南昌</option>
                            <option value="3602">赣州</option>
                        </optgroup>
                        <optgroup label= "安徽">
                            <option value="3401">合肥</option>
                            <option vaule="3402">芜湖</option>
                        </optgroup>
                    </select>
                    <br/>
            &nbsp &nbsp &nbsp &nbsp<textarea rows="10" cols="10" placeholder="请输入文字"></textarea><br/>
            爱好:<input type="checkbox" checked="checked id="read"/><label for="read">读书</label>
            <input type="checkbox" id="write"/><label for="write">写作</label>
            <br/>
            <input type="submit" value="post"/>
            <input type="reset" value="reset"/>
            <input type="button" value="button"/>
            </form>
        </body>
        
    </html>
    
    
    运行图片.png

    相关文章

      网友评论

        本文标题:day_002 html 基础标签

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