210611 UIUX WebDesign CSS 연습_33

ITisIT210·2021년 6월 13일
0

CSS

목록 보기
33/93
post-thumbnail
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>PNC 회사소개</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: "맑은 고딕";
            font-size: 16px;
            line-height: 1.5;
        }
        table {
            border-collapse: collapse;
        }
        ol, ul {
            list-style: none;
        }
        #contents {
            margin: 0px auto;
            width: 1200px;
        }
        #contents h1 {
            margin: 40px;
            text-align: center;
            font-size: 45px;
        }

        h2 {
            margin-bottom: 20px;
            font-size: 30px;
        }

        /* PNC intro */
        .intro {
            margin-right: 30px;
            padding: 40px;
            width: 380px;
            height: 500px;
            float: left;
            background: url("./images/intro1_bg.png") no-repeat;
        }
        
        /* PNC history */
        .hist {
            margin-right: 30px;
            padding: 40px;
            width: 380px;
            height: 500px;
            float: left;
            background: url("./images/intro2_bg.png") no-repeat;
        }

        /* PNC contact */
        .contact {
            margin-right: 0px;
            padding: 40px;
            width: 380px;
            height: 500px;
            float: left;
            background: url("./images/intro3_bg.png") no-repeat;
        }

    </style>
</head>
<body>
    <div id="contents">
        <h1>회사소개</h1>

        <div class="intro">
            <h2>회사개요</h2>
            <p>
                피앤씨산업은 한국 마스크팩 시장의<br>
                60% 이상을 점유하고 있는<br>
                독보적인 선도 업체입니다.
            </p>
        </div>

        <div class="hist">
            <h2>회사연혁</h2>
            <p>
                피앤씨산업은 2005년부터<br>
                한국 마스크팩 시장의 성장 및 발전을<br>
                함께해 왔습니다.
            </p>
        </div>

        <div class="contact">
            <h2>사업장소개</h2>
            <p>
                피앤씨산업은 경기도 화성에<br>
                본사를 두고 서울 및 중국 상태에<br>
                사무소를 운영하고 있습니다.
            </p>
        </div>

    </div>
</body>
</html>
profile
Engineering is the closest thing to magic that exists in the world.

0개의 댓글