210608 UIUX WebDesign CSS 연습_22

ITisIT210·2021년 6월 13일
0

CSS

목록 보기
22/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>개발사업</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: "맑은 고딕";
            font-size: 16px;
            line-height: 1.5;
            color: #000;
        }
        table {
            border-collapse: collapse;
        }
        #wrap {
            margin: 30px auto;
            width: 1200px;
        }

        .imgBox {
            width: 500px;
            float: left;
        }

        .desc {
            padding: 40px 50px;
            width: 700px;
            height: 440px;
            float: right;
            background-color: #4d5058;
            color: #ccc;
        }

        .desc h1 {
            font-size: 40px;
            color: #fff;
        } 
        .eng {
            font-size: 20px;
            font-weight: bold;
            color: #9dd5ff;
        }
        .stit {
            padding-top: 30px;
            font-weight: bold;
            color: #fff;
        }
        .biz {
            padding-top: 30px;
            text-decoration: underline;
            color: #fff;
        }
        .call {
            padding-top: 30px;
            color: #9dd5ff;
        }
    </style>
</head>
<body>
    <div id="wrap">
        <div class="imgBox">
            <img src="./images/img_develop.jpg" alt="개발사업 이미지">
        </div>

        <div class="desc">
            <h1>개발사업</h1>
            <p class="eng">Total Solution Provider</p>
            <p >
                <p class="stit">꿈이 실현되는 공간을 창조</p>
                <p>
                    개발사업은 상상했던 세계를 현실로 이루어 내는 사업분야입니다. 
                    최고의 전문인력과 경험을 바탕으로 꿈이 실현되는 공간을 창조해 나가겠습니다.
                </p>
                <p class="biz">송도복합개발(6,8공구)</p>
                <p>
                    국제비즈니스 중심도시로 거듭나는 송도에 친환경 미래도시를 테마로 한 대규모 주거중심 개발사업
                </p>
            </p>
            <p class="call">※ 프로젝트 문의 : 1588-1588</p>
        </div>
    </div>
</body>
</html>
profile
Engineering is the closest thing to magic that exists in the world.

0개의 댓글