관리 메뉴

moozi

7/18 css03.html 본문

TIS_2016/HTML5_3기

7/18 css03.html

moozi 2016. 7. 18. 11:22

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>CSS연습</title>

    <style>

        body{

            background-color: gray;

            background-image: url(img/pic2.png);

            background-repeat: no-repeat;

            background-attachment: fixed; /* 배경고정 */

            font-family: '굴림';

        }

        .title{

            font-size: 50px;

            font-style: italic;

            font-weight: bold;

            text-align: center; /* 가운데 정렬 */

        }

        .btn1{

            background-color: orange;

            width:100px;

            height:70px;

            border-radius: 10px;

            box-shadow: 5px 5px 5px gray;

            

        }

        .btn1>a{

            display:block;

            line-height: 70px;

            text-align: center;

        }

        #box1{

            background-color: red;

            width:300px;

            height: 300px;

            position: absolute;

            top:50px;

            left: 50px;

        }

        #box2{

            background-color: green;

            width:300px;

            height: 300px;

            position: absolute;

            top:-220px;

            left: -220px;

        }

        #box3{

            background-color: #dddddd;

            width:500px;

            height: 500px;

            position: relative;

            float:right;

        }

        #box3>h3{

            position:absolute;

            top:100px;

            left:100px;

        }

    </style>

</head>

<body>

    <p class="title">안녕하세요?</p>

    

    <div class="btn1">

        <a href="#">click</a>

    </div>

    

    <div id="box1">

        

    </div>

    <div id="box2">

        

    </div>

    <div id="box3">

        <h3>테스트</h3>

    </div>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

    <p>HTML5</p>

 

    

</body>

</html>

'TIS_2016 > HTML5_3기' 카테고리의 다른 글

7/18 수업 예제  (0) 2016.07.18
7/18 layout03.html  (0) 2016.07.18
html연습문제02  (0) 2016.07.15
7/15 수업파일  (0) 2016.07.15
join.html  (0) 2016.07.15
Comments