SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html>
    <head>
        <style type="text/css">
            .container{
                width:80%;
                margin:50px auto;
                display: flex;
                justify-content: space-between;
            }
            img{
                width:200px;
            }
            .item{
                width:200px;
                border: 1px solid rosybrown;
                border-radius: 5px;
            }
            p{
                margin-left:20px;
            }
        </style>
    </head>
    <body>
        <div class="container">
            <div class="item">
                <img src="./1 (1).png">
                <p>复古</p>
                <p>在质感上打造复古</p>
            </div>
            <div class="item">
                <img src="./1 (2).png">
                <p>情怀</p>
                <p>在氛围上突出情怀</p>
            </div>
            <div class="item">
                <img src="./1 (3).png">
                <p>趣味</p>
                <p>在内容上增加趣味</p>
            </div>
        </div>
    </body>
</html>