리스트 연습

리트리버 소개 페이지

잭아저씨 2023. 2. 28. 15:05

<!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: 10;
            padding: 0 ;
        }
        #wrap{
            width: 800px;
            height: 20px;
            float: left;
        }
        #header{
            margin-top: 10px;
            width: 800px;
            height: 20px;
        }
        #head1{
            margin: 15px;
            width: 100px;
            height: 100px;
            font-size: 20px;
        }      
        #head2{
            width: 100px;
            height: 100px;
            color:gray;
            margin-left: 230px;
        }  
        img{
            border-radius: 10%;
        }
        ul li{
            margin: 15px;
            margin-top: 0;
            width: 100px;
            list-style-type: none;
            float: left;
        }
    </style>
</head>
<body>
    <div id="wrap">
        <div id="header">
                <span id="head1"><b>대표 종</b></span>
                <span id="head2">35개 이상 항목 더보기</span>
        </div>  
        <ul>
            <li><img src="./images/dog1.jpg" width="100" height="100" alt="레브라도 리트리버">
            </li>
            <li><img src="./images/dog2.jpg" width="100" height="100" alt="레브라도 리트리버">
            </li>
            <li><img src="./images/dog3.jpg" width="100" height="100" alt="레브라도 리트리버">
            </li>
            <li><img src="./images/dog4.jpg" width="100" height="100" alt="레브라도 리트리버">
            </li>
        </ul>
    </div>
</body>
</html>