基本信息
源码名称:校园二手市场html静态页面(bootstrap模板)源码下载
源码大小:24.78M
文件格式:.zip
开发语言:CSS
更新时间:2018-12-07
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 3 元×
微信扫码支付:3 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
采用html,css等开发的静态校园二手市场
采用html,css等开发的静态校园二手市场
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <title>login登录界面</title> <link rel="stylesheet" type="text/css" href="css/login.css"> <!-- Bootstrap --> <link href="css/bootstrap.min.css" rel="stylesheet"> <!--动画CSS插件--> <link rel="stylesheet" type="text/css" href="css/animate.min.css"> <!--[if lt IE 9]> <script src="js/html5shiv.js"></script> <script src="js/respond.min.js"></script> <![endif]--> </head> <body> <!-- 登录--> <div class="container-fluid "> <div class="row "> <div class="form "> <form class="form-horizontal wow slideInDown "> <h1 class="col-sm-offset-3">校园二手交易系统</h1> <div class="form-group"> <label for="inputEmail3" class="col-sm-3 control-label ">用户名:</label> <div class="col-sm-7"> <input type="text" class="form-control " id="inputEmail3" placeholder="username"> </div> </div> <div class="form-group"> <label for="inputPassword3" class="col-sm-3 control-label">密码:</label> <div class="col-sm-7"> <input type="password" class="form-control" id="inputPassword3" placeholder="Password"> </div> </div> <div class="form-group"> <div class="col-sm-offset-3 col-sm-8"> <div class="checkbox"> <label> <input type="checkbox"> 记住我 </label> <a class="col-sm-offset-7" href="regist.html"><span class="regist">注册</span></a> <a href="#"><span class="regist">忘记密码?</span></a> </div> </div> </div> <div class="form-group"> <div class="col-sm-offset-4 col-sm-5"> <input class="form-control btn btn-danger" id="submit_btn" value="登 陆" type="submit"> </div> </div> </div> </form> </div> </div> <script src="js/jquery-3.2.1.min.js"></script> <script src="js/bootstrap.js"></script> <script src="js/wow.min.js"></script> <script> $(function(){ new WOW().init(); }) </script> </body> </html>