w2 day01+day02

day02

登录界面

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>登录界面</title>
    <link href="./bootstrap-3.3.7-dist/css/bootstrap.css" rel="stylesheet">
    <script src="jquery/jquery-3.4.1.min.js"></script>
    <style>
        .box {
            width: 500px;
            height: 500px;
            background-color: white;
            color: #333333;
            font-size: 14px;
            margin: 0 auto;

        }
        .q {
            width: 400px;
            height: 400px;
            margin: 30px auto;
            border: 1px solid #eeeeee;
        }
        .a {
            margin-top: 20px;
            margin-bottom: 20px;
        }
        .top {
            height: 350px;
            margin: 0 auto;
        }
        .a-t {
            margin-left: 150px;
            font-size: 20px;
            text-align: center;
        }
        .b {
            height: 80px;
        }
        .b>input {
            width: 330px;
            height: 40px;
            padding-left: 5px;
            margin-left: 15px;
            margin-bottom: 20px;
        }
        .c {
            height: 20px;
            margin-left: 20px;
            margin-top: 40px;
            font-size: 12px;
            color: #999999;
        }
        .d {
            width: 330px;
            height: 80px;
            margin-top: 10px;
            margin-left: 15px;
        }
        .d>input {
            background-color: #3f89ec;
            width: 330px;
            height: 40px;
            border: 1px solid #3f89ec;
            color: white;
            font-size: 20px;
        }
        .mm {
            color: dodgerblue;
            font-size: 12px;
            margin-top: 10px;
        }
        .ml {
            float: left;
        }
        .mr {
            float: right;
        }

        .fo-l>a {
            color: dodgerblue;
            font-size: 16px;
            float: left;

        }

        .aaa>a:before {
            padding: 0 5px;
            color: dodgerblue;
            content: "|";
        }

    </style>
</head>
<body>
<div class="box">
    <!--        top-->
    <div class="top">
        <div class="container q">
            <div class="a">
                <span class="a-t">登录</span>
            </div>
            <div class="b">
                <input type="text" placeholder="手机/邮箱/用户名">
                <input type="text" placeholder="密码">
            </div>
            <div class="c">
                <lable>
                    <input type="checkbox">&nbsp;下次自动登录
                </lable>
            </div>
            <div class="d">
                <input type="submit" value="登录">
                <a class="mm ml"
                   href="https://passport.baidu.com/?getpassindex&tt=1568180872913&gid=297107F-36D0-486B-9099-07E73237FA19&tpl=mn&u=https%3A%2F%2Fwww.baidu.com%2F">忘记密码?</a>
                <a class="mm mr"
                   href="https://passport.baidu.com/?getpassindex&tt=1568180872913&gid=297107F-36D0-486B-9099-07E73237FA19&tpl=mn&u=https%3A%2F%2Fwww.baidu.com%2F">立即注册</a>
            </div>
        </div>
    </div>
</div>

</body>
</html>

人员管理界面

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>人员管理</title>
    <link href="bootstrap-3.3.7-dist/css/bootstrap.css" rel="stylesheet">
    <script src="jquery/jquery-3.4.1.min.js"></script>
    <script src="bootstrap-3.3.7-dist/js/bootstrap.js"></script>
    <style>
        .top {
            background-color: #eeeeee;
            color: #777777;
            font-size: 16px;
            margin: 0 auto;
            padding: 0;
            height: 40px;
        }
        .a {
            text-align: center;
            font-size: 20px;
            margin-left:15px;
            line-height: 1.8;
            float: left;
        }
        .b {
            margin-left: 15px;
            text-align: center;
            line-height: 40px;
        }
    </style>
</head>
<body>
<div class="container">
    <div class="top">
        <span class="col-md-2 a">一个学院管理界面</span>
        <div class="col-md-1 dropdown">
            <button type="button" class="btn dropdown-toggle" data-toggle="dropdown"
                    style="height: 40px;font-size: 16px">学员管理
            </button>
        </div>
        <div class="col-md-1 b">
            <span>教师管理</span>
        </div>
        <!--下拉框-->
        <div class="col-md-1 dropdown">
            <button type="button" class="btn dropdown-toggle" data-toggle="dropdown"
                    style="height: 40px;font-size: 16px">其他管理
                <span class="caret"></span>
            </button>
            <ul class="dropdown-menu">
                <li><a href="">其他1</a> </li>
                <li><a href="">其他2</a></li>
                <li><a href="">其他3</a></li>
                <li class="divider"></li>

            </ul>
        </div>
    </div>
    <table class="table table-bordered">
        <tbody>
            <tr>
                <td>学号</td>
                <td>姓名</td>
                <td>班级</td>
                <td>学院</td>
                <td>管理</td>
            </tr>
            <tr>
                <td>1</td>
                <td>李子明</td>
                <td>102</td>
                <td>xx学院</td>
                <td>
                    <btn type="submit" class="btn btn-default" style="background-color: red;color: white">删除</btn>
                    <btn type="submit" class="btn btn-default">修改</btn>
                    <btn type="submit" class="btn btn-default" style="background-color: dodgerblue;color: white">编辑</btn>
                </td>
            </tr>
            <tr>
                <td>1</td>
                <td>李子明</td>
                <td>102</td>
                <td>xx学院</td>
                <td>
                    <btn type="submit" class="btn btn-default" style="background-color: red;color: white">删除</btn>
                    <btn type="submit" class="btn btn-default">修改</btn>
                    <btn type="submit" class="btn btn-default" style="background-color: dodgerblue;color: white">编辑</btn>
                </td>
            </tr>
            <tr>
                <td>1</td>
                <td>李子明</td>
                <td>102</td>
                <td>xx学院</td>
                <td>
                    <btn type="submit" class="btn btn-default" style="background-color: red;color: white">删除</btn>
                    <btn type="submit" class="btn btn-default">修改</btn>
                    <btn type="submit" class="btn btn-default" style="background-color: dodgerblue;color: white">编辑</btn>
                </td>
            </tr>
            <tr>
                <td>1</td>
                <td>李子明</td>
                <td>102</td>
                <td>xx学院</td>
                <td>
                    <btn type="submit" class="btn btn-default" style="background-color: red;color: white">删除</btn>
                    <btn type="submit" class="btn btn-default">修改</btn>
                    <btn type="submit" class="btn btn-default" style="background-color: dodgerblue;color: white">编辑</btn>
                </td>
            </tr>

        </tbody>
    </table>
</div>
</body>
</html>

day01

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <link href="./bootstrap-3.3.7-dist/css/bootstrap.min.css" rel="stylesheet">
    <style>
        body {
            width: 1520px;
            height: 1500px;
            margin: 0;
            padding-top: 30px;
            font-size: 14px;
            color: #333;
            background-color: #fff;
        }
        .navbar{
            min-height: 40px;
        }
        .reddot:after{
            content: "";
            position: absolute;
            top:10px;
            right: 5px;
            padding: 3px;
            z-index: 9999999;
            background: #d9534f;
            border-radius: 50%;
            font-size: 0;
            line-height: 0;
            border: 1px solid #d43f3a;
        }
        .cc {
            position: relative;
            margin-top: 50px;
        }
        .bc-social {
            height: 55px;
            text-align: center;
            background-color: #f5f5f5;
            border-top: 1px solid #fff;
            border-bottom: 1px solid #ddd;
            margin-top: 470px;
        }
        .cc {
            position: relative;
            z-index: 2;
            margin-top: 100px;
        }
        .a {
            font-size: 100px;
            color: #ffffff;
        }
        .bc-social-button {
            margin-left: 0;
            margin-bottom: 0;
            padding-left: 0;
            list-style: none;
            margin-top: 15px;

        }
        .social-forum {

            display: inline-block;
            line-height: 1;
            color: #555555;
            padding: 0 10px;
        }
        .social-weibo {
            display: inline-block;
            line-height: 1;

        }
        .bc-social-button>li+li:before {
            padding: 0 10px;
            color: #cccccc;
            content: "|";
        }
        .progress-header {
            width: 60%;
            text-align: center;
            font-weight: 200;
            display: block;
            margin: 60px auto 40px;
        }
        .bd {
            font-size: 40px;
        }
        .ccc {
            border-bottom: 1px solid #eeeeee;
        }
        .footer {
            color: #777777;
            padding: 30px 0;
            border-top: 1px solid #e5e5e5;
            margin-top: 70px;
        }
        h4 {
            color: #563d7c;
            font-size: 16px;
        }
        .footer a {
            color: #777777;
        }
        .list-inline>li+li:before {
            padding: 0 10px;
            color: #cccccc;
            content: "|";
        }
        .footer-button {
            font-size: 13px;
        }
        #scroll {
            background-color: #777777;
            color: #eeeeee;
            font-size: 40px;
            line-height: 1;
            text-align: center;
            text-decoration: none;
            bottom: 100px;
            right: 20px;
            overflow: hidden;
            width: 46px;
            height: 46px;
            border: none;
            opacity: .8;
        }
        .ver {
            position: fixed;
            z-index: 2147483647;
        }
        .fa {
            display: inline-block;
            font-size: inherit;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            font-style: normal;
            font-variant-ligatures: normal;
            font-variant-caps: normal;
            font-variant-numeric: normal;
            font-variant-east-asian: normal;
            font-weight: normal;
            font-stretch: normal;
            line-height: normal;
            margin-top: 5px;
        }
    </style>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
    <div class="container">
        <div class="navbar-header">
            <button class="navbar-toggle collapsed" type="button" data-toggle="collapse" data-target=".navbar-collapse">
                <span ></span>
            </button>
            <a class="navbar-brand hidden-sm" href="https://www.bootcss.com/" >Bootstrap中文网</a>

                <ul class="nav navbar-nav">
                    <li class="hidden-sm hidden-md">
                        <a href="https://v2.bootcss.com/">Bootstrap2中文文档</a>
                    </li>
                    <li>
                    <a href="https://v3.bootcss.com/">Bootstrap3中文文档</a>
                </li>
                    <li>
                        <a href="https://v3.bootcss.com/">Bootstrap4中文文档</a>
                    </li>
                    <li>
                        <a href="https://v3.bootcss.com/">Less教程</a>
                    </li>
                    <li>
                        <a href="https://v3.bootcss.com/">jQuery API</a>
                    </li>
                    <li>
                        <a class="reddot" href="https://www.youzhan.org/">网站实例</a>
                    </li>
                </ul>
                <ul class="nav navbar-nav navbar-right hidden-sm">
                    <li>
                        <a href="https://www.bootcss.com/about/">关于</a>
                    </li>

                </ul>
        </div>
    </div>

</div>
<div class="jumbotron masthead">
    <div class="container cc">
        <h1 class="text-center a">Bootstrap</h1>
        <h2 class="text-center" style="color: #ffffff;margin-bottom: 30px">简洁、直观、强悍的前端开发框架,让web开发更迅速、简单</h2>
        <p class="masthead-button-links text-center">
            <a class="btn btn-lg btn-primary btn-shadow " role="button" href="https://v3.bootcss.com/">Bootstrap3中文文档(v3.3
                .7)</a>
        </p>
        <ul class="masthead-links uu">
            <li class="text-center">
                <a style="color: rgba(255,255,255,0.5)" role="button" href="https://v2.bootcss.com/">Bootstrap2
                    中文文档(v2.3.2)</a>
            </li>
        </ul>
    </div>
</div>
<div class="bc-social">
    <div class="container">
        <ul class="bc-social-button">
            <li class="social-forum" >
                <a href="http://wenda.bootcss.com">
                    <img style="margin: 0 auto" src="img/社区.png" height="18" width="17.6" />
                    <span style="color: #555555">Bootstrap问答社区</span>
                </a>
            </li>
            <li class="social-weibo">
                <a href="https://weibo.com/bootcss">
                    <img src="img/weibo.png" height="20" width="20"/>
                    <span style="color: #555555">新浪微博:@Bootstrap中文网</span>
                </a>
            </li>
        </ul>
    </div>
</div>
<div class="container">
    <div class="ccc progress-header page-header">
        <h2 class="bd">Bootstrap相关优质项目推荐</h2>
        <p>这些项目或者是对Bootstrap进行了有益的补充,或者是基于Bootstrap开发的</p>
    </div>
    <div class="row">

        <div class="col-sm-6 col-md-4 col-lg-3">
            <div class="thumbnail" style="height: 337px">
                <a href="http://www.youzhan.org/">
                    <img src="img/bootstrap.png" height="150" width="300"
                         data-src="https://cdn.jsdelivr.net/npm/@bootcss/www.bootcss.com@0.0.3/dist/img/expo.png"/></a>
                <div class="caption">
                    <h3 class="text-center">
                        <a href="http://www.youzhan.org/">
                            优站精选
                            <br>
                            <small> Bootstrap 网站实例</small>
                        </a>

                    </h3>
                    <p style="text-align: center;color: #555555">Bootstrap 优站精选频道收集了众多基于 Bootstrap 构建、设计精美的、有创意的网站。</p>
                </div>
            </div>
        </div>

        <div class="col-sm-6 col-md-4 col-lg-3">
            <div class="thumbnail" style="height: 337px">
                <a href="https://www.webpackjs.com/">
                    <img src="img/webpack.png" height="150" width="300"
                         data-src="https://cdn.jsdelivr.net/npm/@bootcss/www.bootcss.com@0.0.3/dist/img/webpack.png"/></a>
                <div class="caption">
                    <h3 class="text-center">
                        <a href="https://www.webpackjs.com/">
                            Webpack
                            <br>
                            <small>是前端资源模块化管理和打包工具</small>
                        </a>

                    </h3>
                    <p style="text-align: center;color: #555555">Webpack 是当下最热门的前端资源模块化管理和打包工具。它可以将许多松散的模块按照依赖和规则打包成符合生产环境部署的前端资源。</p>
                </div>
            </div>
        </div>

        <div class="col-sm-6 col-md-4 col-lg-3">
            <div class="thumbnail" style="height: 337px">
                <a href="https://www.reactjscn.com/">
                    <img src="img/react.png" height="150" width="300"
                         data-src="https://cdn.jsdelivr.net/npm/@bootcss/www.bootcss.com@0.0.3/dist/img/react.png"/></a>
                <div class="caption">
                    <h3 class="text-center">
                        <a href="https://www.reactjscn.com/">
                            React
                            <br>
                            <small>用于构建用户界面的 JavaScript 框架</small>
                        </a>

                    </h3>
                    <p style="text-align: center;color: #555555">React 起源于 Facebook 的内部项目,是一个用于构建用户界面的 JavaScript 库。</p>
                </div>
            </div>
        </div>

        <div class="col-sm-6 col-md-4 col-lg-3">
            <div class="thumbnail" style="height: 337px">
                <a href="https://typescript.bootcss.com/">
                    <img src="img/typescript.png" height="150" width="300"
                         data-src="https://cdn.jsdelivr.net/npm/@bootcss/www.bootcss.com@0.0.3/dist/img/typescript.png"/></a>
                <div class="caption">
                    <h3 class="text-center">
                        <a href="https://typescript.bootcss.com/">
                            TypeScript
                            <br>
                            <small>中文手册</small>
                        </a>

                    </h3>
                    <p style="text-align: center;color: #555555">TypeScript 是由微软开源的编程语言。它是 JavaScript 的一个超集,而且本质上向这个语言添加了可选的静态类型和基于类的面向对象编程。</p>
                </div>
            </div>
        </div>

        <div class="col-sm-6 col-md-4 col-lg-3">
            <div class="thumbnail" style="height: 337px">
                <a href="https://www.jquery123.com/">
                    <img src="img/jqueryapi.png" height="150" width="300"
                         data-src="https://cdn.jsdelivr.net/npm/@bootcss/www.bootcss.com@0.0.3/dist/img/jqueryapi.png"/></a>
                <div class="caption">
                    <h3 class="text-center">
                        <a href="https://www.jquery123.com/">
                            jQuery API
                            <br>
                            <small>中文手册</small>
                        </a>

                    </h3>
                    <p style="text-align: center;color: #555555">根据最新的 jQuery 1.11.x 和 2.1.x 版本翻译的 jQuery API 中文文档/手册。</p>
                </div>
            </div>
        </div>

        <div class="col-sm-6 col-md-4 col-lg-3">
            <div class="thumbnail" style="height: 337px">
                <a href="https://www.nextjs.cn/">
                    <img src="img/nextjs.png" height="150" width="300"
                         data-src="https://cdn.jsdelivr.net/npm/@bootcss/www.bootcss.com@0.0.3/dist/img/nextjs.png"/></a>
                <div class="caption">
                    <h3 class="text-center">
                        <a href="https://www.nextjs.cn/">
                            Next.js
                            <br>
                            <small>中文文档</small>
                        </a>

                    </h3>
                    <p style="text-align: center;color: #555555">Next.js 是一个轻量级的 React 服务端渲染应用框架。</p>
                </div>
            </div>
        </div>

        <div class="col-sm-6 col-md-4 col-lg-3">
            <div class="thumbnail" style="height: 337px">
                <a href="https://www.babeljs.cn">
                    <img src="img/babeljs.png" height="150" width="300"
                         data-src="https://cdn.jsdelivr.net/npm/@bootcss/www.bootcss.com@0.0.3/dist/img/babeljs.png"/></a>
                <div class="caption">
                    <h3 class="text-center">
                        <a href="https://www.babeljs.cn">
                            Babel
                            <br>
                            <small>是一个 JavaScript 编译器。</small>
                        </a>

                    </h3>
                    <p style="text-align: center;color: #555555">Babel 是一个 JavaScript 编译器。Babel 通过语法转换器支持最新版本的 JavaScript 语法。</p>
                </div>
            </div>
        </div>

        <div class="col-sm-6 col-md-4 col-lg-3">
            <div class="thumbnail" style="height: 337px">
                <a href="https://www.nodeapp.cn/">
                    <img src="img/nodejs.png" height="150" width="300"
                         data-src="https://cdn.jsdelivr.net/npm/@bootcss/www.bootcss.com@0.0.3/dist/img/nodejs.png"/></a>
                <div class="caption">
                    <h3 class="text-center">
                        <a href="https://www.nodeapp.cn/">
                            Node.js
                            <br>
                            <small>中文文档 / 手册</small>
                        </a>

                    </h3>
                    <p style="text-align: center;color: #555555">Node.js 是一个基于 Chrome V8 引擎的 JavaScript 运行环境。Node.js 使用了一个事件驱动、非阻塞式 I/O 的模型,使其轻量又高效。</p>
                </div>
            </div>
        </div>

    </div>
</div>
<!--底部-->
<footer class="footer">
    <div class="container">
        <!--            底部上面-->
        <div class="row">
            <div class="col-md-6 col-lg-6">
                <h4>
                    <img data-src="https://cdn.jsdelivr.net/npm/@bootcss/www.bootcss.com@0.0.3/dist/img/logo.png" src="img/logo.png" height="33" width="241"/>
                </h4>
                <p>我们一直致力于为广大开发者提供更多的优质技术文档和辅助开发工具!</p>
            </div>
            <div class="col-md-6 col-lg-5 col-lg-offset-1">
                <div class="row about">
                    <div class="col-sm-3">
                        <h4>关于</h4>
                        <ul class="list-unstyled">
                            <li>
                                <a href="https://www.bootcss.com/about/">关于我们</a>
                            </li>

                            <li>
                                <a href="https://www.bootcss.com/ad/">广告合作</a>
                            </li>

                            <li>
                                <a href="https://www.bootcss.com/links/">友情链接</a>
                            </li>

                            <li>
                                <a href="https://www.bootcss.com/hr/">招聘</a>
                            </li>

                        </ul>
                    </div>
                    <div class="col-sm-3">
                        <h4>联系方式</h4>
                        <ul class="list-unstyled">
                            <li>
                                <a href="https://weibo.com/bootcss">新浪微博</a>
                            </li>

                            <li>
                                <a href="https://www.bootcss.com/mailto:admin@bootcss.com">电子邮件</a>
                            </li>

                        </ul>
                    </div>
                    <div class="col-sm-4">
                        <h4>旗下网站</h4>
                        <ul class="list-unstyled">
                            <li>
                                <a href="https://www.golaravel.com/">Laravel中文网</a>
                            </li>

                            <li>
                                <a href="https://www.ghostchina.com/">Ghost中国</a>
                            </li>

                            <li>
                                <a href="https://www.bootcdn.cn/">BootCDN</a>
                            </li>

                            <li>
                                <a href="https://pkg.phpcomposer.com/">Packagist中国镜像</a>
                            </li>

                        </ul>
                    </div>
                    <div class="col-sm-2">
                        <h4>特别致谢</h4>
                        <ul class="list-unstyled">
                            <li>
                                <a href="https://www.maoyuncloud.com/">猫云</a>
                            </li>

                            <li>
                                <a href="https://www.jdcloud.com/">京东云</a>
                            </li>

                            <li>
                                <a href="https://www.upyun.com">又拍云</a>
                            </li>
                        </ul>
                    </div>
                </div>
            </div>
        </div>
        <hr>
        <!--            底部最下面-->
        <div class="row footer-button">
            <ul class="list-inline text-center">
                <li>
                    <a href="http://www.miibeian.gov.cn/">京ICP备11008151号-6</a>
                </li>
                <li>
                    京公网安备11010802014853
                </li>
            </ul>
        </div>
    </div>
</footer>
<!--回到顶部-->
<a id="scroll" class="ver" href="https://www.bootcss.com/#top">
    <i class="fa">^</i>
</a>
</body>
</html>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值