๐Ÿ’ป/์›น

[HTML] ๊ธฐ๋ณธ ๋ฌธ์„œ ์ž‘์„ฑ(2)

ruhz 2020. 10. 17. 05:45

ํŽ˜์ด์ง€ ์ƒˆ๋กœ๊ณ ์นจ

<!--1-->
<head>
    <title> ๋ฉ”ํƒ€ ํƒœ๊ทธ </title>
    <meta http-equiv="refresh" content="5">
    <meta http-equiv="content-language" content="ko">
    <meta http-equiv=default-style” content=“mystyle.css”>
</head>


<!--2-->
<head>
    <title> html ๋ฌธ์„œ์˜ ๋ฉ”ํƒ€ ํƒœ๊ทธ </title>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <meta http-equiv="refresh" content="1 ; url=http://www.naver.com/">
    <meta name="author" content=“k">
</head>

 

ํŽ˜์ด์ง€ ๋‚ด ์—ฐ๊ฒฐ

<body>
    <a href="#์•ต์ปค1">Go to A</a><br>
    <a href="#์•ต์ปค2">Go to B</a><br>
    <p>
        <hr>
    </p>
    <a name="์•ต์ปค1"><font size="5" color="red">A</font></a><br><br><br><br>
    <a name="์•ต์ปค2"><font size="5" color="blue">B</font></a><br>
</body>

 

์›น ๋ฌธ์„œ์ƒ์˜ ์—ฐ๊ฒฐ

<head>
    <title>URL์„ ํ†ตํ•œ ๋งํฌ</title>
    <base href="https://ko.wikipedia.org" target=“_blank”>
</head>

<body>
    <p><a href="/wiki/HTML">์œ„ํ‚คํ”ผ๋””์•„ HTML ๋ฌธ์„œ๋กœ ์ด๋™</a></p>
    <p><a href="/wiki/CSS">์œ„ํ‚คํ”ผ๋””์•„ CSS ๋ฌธ์„œ๋กœ ์ด๋™</a></p>
</body>