210601 UIUX WebDesign CSS 연습_2

ITisIT210·2021년 6월 6일
0

CSS

목록 보기
2/93
post-thumbnail
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>서시</title>
<style>
    * {
        margin: 0px;
        padding : 0px;
    } /* 초기화 */
    body {
        font-family: "맑은 고딕";
        font-size: 16px;
        color: #333;
        line-height: 1.5;
    }
    .b1 {
        border: 5px #7FCC33 solid;
        width: 500px;
        margin: 50px;
        padding: 30px;
    }
    .poem {
        margin-bottom: 30px;
        padding: 10px 20px;
        color: green;
        background-color: #D5E759;
    }
    .tail {
        color: #FF7A16;
    }
    
</style>
</head>

<body>
<div class="b1">
    <h1 class="poem">서시</h1>
    <p>죽는 날까지 하늘을 우러러<br>
    한 점 부끄럼이 없기를,<br>
    잎새에 이는 바람에도<br>
    나는 괴로워했다.</p>

    <p>별을 노래하는 마음으로<br>
    모든 죽어 가는 것을 사랑해야지.<br>
    그리고 나한테 주어진 길을<br>
    걸어가야겠다.</p>

    <p>오늘 밤에도 별이 바람에 스치운다.</p>

    <p class="tail"><strong>하늘과 바람과 별과 시(1948) - 윤동주</strong></p>
</div>

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

0개의 댓글

관련 채용 정보