210604 UIUX WebDesign CSS 연습_12

ITisIT210·2021년 6월 6일
0

CSS

목록 보기
12/93
post-thumbnail
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
    * {
        margin: 0;
        padding: 0;
    }
    body {
        font-family: "맑은 고딕";
        font-size: 16px;
        line-height: 1.5;
    }
    #contents {
        margin: 50px auto;
        padding: 50px;
        width: 500px;
        border: 1px solid #fa3266;
    }
    .name {
        text-align: right;
    }
    .first {
        margin-top: 30px;
    }
    .second {
        margin-top: 30px;
        color: #347fff;
    }
    .third {
        margin-top: 30px;
    }
    .thirdS {
        color: #fff;
        background-color: #6666ff;
    }
    .fourthS {
        color: #2699b5;
        text-decoration: underline;
    }
</style>
</head>

<body>

<div id="contents">
    <h1></h1>
    <p class="name">김춘수</p>
    
    <p class="first">
        내가 그의 이름을 불러 주기 전에는 그는 다만<br>
        하나의 몸짓에 지나지 않았다
    </p>
    
    <p class="second">
        내가 그의 이름을 불러 주었을 때<br>
        그는 나에게로 와서<br>
        꽃이 되었다
    </p>
    
    <p class="third">
        내가 그의 이름을 불러 준 것처럼<br>
        나의 <span class="thirdS"> <strong> 이 빛깔과 향기</strong></span>에 알맞는<br>
        누가 나의 이름을 불러다오<br>
        그에게로 가서 나도<br>
        그의 꽃이 되고 싶다
    </p>
    
    <p class="fourth">
        우리들은 모두 무엇이 되고 싶다<br>
        너는 나에게 나는 너에게<br>
        <span class="fourthS"> <strong>잊혀지지 않는</strong> </span> <br>
        하나의 눈짓이 되고 싶다
    </p>
</div>

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

0개의 댓글