zoukankan      html  css  js  c++  java
  • 11.14作业

    <!DOCTYPE html>
    <html lang="en" xmlns:box-shadow="http://www.w3.org/1999/xhtml">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
        <style>
            body{
                margin:0;
            }
            .left{
                float: left;
                height: 1000px;
                 25%;
                background-color:#787878;
            }
            .right{
                float:left;
                height: 1000px;
                 75%;
                background-color:rgb(238,238,238);
            }
            .circle{
                 200px;
                height: 200px;
                border-radius: 50%;
                border: white 2px solid;
                margin: 30px auto;
                overflow: hidden;
            }
            img{
                 100%;
            }
            .left p{
                text-align: center;
            }
            .about{
                margin-top: 70px;
                font-weight:bold;
                font-size: 18px;
                color: rgba(180,188,195,0.52);
            }
            .jineng{
                margin-top: 70px;
                font-weight:bold;
                font-size: 15px;
                color: rgba(180,188,195,0.52);
            }
            .text{
                 1050px;
                height: 170px;
                background-color: white;
                margin-top: 30px;
                margin-left: 50px;
            }
    
            .text p{
                margin-left: 20px;
            }
            .date {
                font-size: 28px;
                border-left:red 6px solid;
                padding-left: 20px;
                /*margin-left: -20px;*/
            }
            .text span{
                font-size: 14px;
                margin: 10px 10px 0 0;
                float: right;
            }
            div.text{
                box-shadow: 2px 2px 5px #000;
            }
    
        </style>
    </head>
    <body>
    <div class="left">
        <div class="circle"><img src="头像.jpg" alt=""></div>
        <p>刘子的博客</p>
        <p>Ayo,这里是来自csc的aka刘子</p>
        <div class="about">
            <p>关注我</p>
            <p>教你</p>
            <p>长沙rap</p>
        </div>
        <div class="jineng">
            <p>HEY KONG</p>
            <p>天命之军</p>
            <p>二手摩托</p>
        </div>
    </div>
    
    <div class="right">
        <div class="text">
                <p class="date" style="margin-left: 0px">标题一 <span >2019-11-14</span></p>
    
        <p>一二三四五六七八九十!</p>
            <hr size="3" color="black">
            <p>#长沙hood&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#黄土高坡</p>
        </div>
        <div class="text">
                <p class="date" style="margin-left: 0px">标题一 <span >2019-11-14</span></p>
    
        <p>一二三四五六七八九十!</p>
            <hr size="3" color="black">
            <p>#长沙hood&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#黄土高坡</p>
        </div>
        <div class="text">
                <p class="date" style="margin-left: 0px">标题一 <span >2019-11-14</span></p>
    
        <p>一二三四五六七八九十!</p>
            <hr size="3" color="black">
            <p>#长沙hood&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#黄土高坡</p>
        </div>
        <div class="text">
                <p class="date" style="margin-left: 0px">标题一 <span >2019-11-14</span></p>
    
        <p>一二三四五六七八九十!</p>
            <hr size="3" color="black">
            <p>#长沙hood&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#黄土高坡</p>
        </div>
        <div class="text">
                <p class="date" style="margin-left: 0px">标题一 <span >2019-11-14</span></p>
    
        <p>一二三四五六七八九十!</p>
            <hr size="3" color="black">
            <p>#长沙hood&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#黄土高坡</p>
        </div>
        
    
    </div>
    </body>
    </html>
    
  • 相关阅读:
    hdu4675 GCD of Sequence 莫比乌斯+组合数学
    hdu4746 Mophues 莫比乌斯
    BZOJ2820 YY的GCD 莫比乌斯+系数前缀和
    bzoj2005 能量采集 莫比乌斯或者普通容斥
    GCD 莫比乌斯反演 给定整数N,求1<=x,y<=N且Gcd(x,y)为素数的 数对(x,y)有多少对.
    spoj7001 Visible Lattice Points 莫比乌斯反演+三维空间互质对数
    hdu1695 GCD 莫比乌斯反演做法+枚举除法的取值 (5,7),(7,5)看做同一对
    bzoj2440 完全平方数 莫比乌斯值+容斥+二分
    Problem b 莫比乌斯反演+枚举除法的取值
    Codeforces839D Winter is here 容斥
  • 原文地址:https://www.cnblogs.com/maqiaobin/p/11862708.html
Copyright © 2011-2022 走看看