Web Frontend/HTML_CSS

[ifp_html_css] Statue

홍유진 2022. 6. 2. 05:11

Statue of Liberty

[실행 화면]

[HTML 소스 코드]

<!DOCTYPE html> 
<html lang="en">
<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="statue.css">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>State</title>
    <style>
    body {
        background-image: url(images/statebg.jpg);
        background-repeat: no-repeat;
    }
    img {
        width: 250px;
        height: 400px;
        margin: 0 auto;
        display : block;
    }   
    </style>
</head>
<body>
    <div>
        <img src="images/state.png">
        <h1>Statue of Liberty</h1>
            <p>#New york</p>
            <p>#나에게 자유를</p>
            <p>#탈옥</p>
    </div>
</body>
</html>

[CSS 소스 코드]

div {
    background-color: white;
    width: 400px;
    padding: 30px;
    /*margin-left:auto;
    margin-right:auto;
    margin-top:130px; */
    margin: 150px;
      /*      상하  좌우
    margin: 130px auto 130px;
            상    좌우  하
    margin: 130px auto 130px auto;
            상    우    하    좌 */
    border: 10px whitesmoke solid;
    border-radius: 5px;
}
h1 {
    color: mediumaquamarine;
    margin: auto;
    text-align: center;              /*텍스트 정렬 기준 (이미지 안됨)*/
    border-bottom: 3px solid; 
    width: 270px;
}
p{
    color: black;
    text-align: center; 
}

: 자유작 하면서 가운데 정렬이랑 h1 밑의 밑줄 조절이 가장 힘들었다.