๐Ÿ’œ HTML,CSS

HTML&CSS ์‹ค์Šต3 (์ •๋ฆฌx)

Genie_. 2024. 3. 23. 22:02
728x90
๋ฐ˜์‘ํ˜•
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>ํƒ๋ผ๊ตญ์ž…์ถ˜๊ตฟ</title>
</head>

<style>
    @font-face {
        font-family: bit;
        src: url("bit");
    }
    * {
        font-family: bit;
    }
    a{
        background-color: blue;
        color: white;
        text-decoration: none;
    }
    h1{
        text-align: center;
    }
    .jeju {
        text-decoration: underline;
    }
    sup{
        font-style: italic;
    }
    .red{
        color: red;
        font-weight: bold;
    }
    .orange{
        color: orange;
    }
</style>
<body>
    <h1><a href="http://www.naver.com">ํƒ๋ผ๊ตญ ์ž…์ถ˜๊ตฟ</a> </h1>
    <div>
        <span class="jeju">์ œ์ฃผ</span>๋„์˜ ๋ฌธํ™”์ถ•์ œ ์ค‘์—์„œ ์œ ์ผํ•˜๊ฒŒ <span class="red">ํƒ๋ผ ์‹œ๋Œ€๋ถ€ํ„ฐ ๋‚ด๋ ค์˜จ ์ถ•์ œ</span>์ด๋‹ค
    </div>
    <p>
        <span class="jeju">์ œ์ฃผ</span>์—์„œ ์ž…์ถ˜์€ ์ƒˆ์ฒ  <sup>(์ œ์ฃผ์–ด,์ƒ›์ ˆ)</sup> ๋„๋Š” ๋‚ ์ด๋ผ ํ•œ๋‹ค.
        ํ•˜๋Š˜์˜ <span class="orange">1๋งŒ 8,000</span>์‹ ์ด ์ง€์ƒ์œผ๋กœ ๋‚ด๋ ค์™€ ์ƒˆํ•ด ์ผ๋“ค์„ ์‹œ์ž‘ํ•˜๋Š” ๋•Œ๋‹ค.
    </p>
</body>
</html>

 

728x90
๋ฐ˜์‘ํ˜•