网页结构分析部分
一、登录注册框
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>login</title> </head> <body> <div class="wrap"> <form action="#" method="post"> <section class="loginForm"> <header> <h1>登录</h1> </header> <div class="loginForm_content"> <fieldset> <div class="inputWrap"> <input type="text" name="userName" placeholder="邮箱/手机号/会员账号" autofocus required> </div> <div class="inputWrap"> <input type="password" name="password" placeholder="请输入密码" required> </div> </fieldset> <fieldset> <input type="checkbox" check="checked"> <span>下次自动登录</span> </fieldset> <fieldset> <input type="submit" value="登录"> <a href="/go.html?url=#">忘记密码了?</a><a href="/go.html?url=#">注册</a> </fieldset> </div> </section> </form> </div> </body> </html> <!doctype html> <html l