<html>
<body>
<h1>이미지 map활용 링크</h1>
<xmp>
<img src="image/imagemap.jpg" usemap="#map1">
<map name="map1">
사각형:rect x1,y1,x2,y2 ..
원:rect x,y,반지름
다각형:rect x1,y1,x2,y2,..
<area shape="rect" coords="367,75,453,138" href="http://kr.yahoo.com" alt="내이버 아님">
<area shape="circle" coords="266,199,10" href="http://www.google.co.kr" alt="눌러봐..">
<area shape="poly" coords="172,79,87,140,170,139" href="http://www.naver.com" alt="그래 내이버다.">
</map>
</xmp>
<img src="image/imagemap.jpg" usemap="#map1">
<map name="map1">
<area shape="rect" coords="367,75,453,138" href="http://kr.yahoo.com" alt="내이버 아님">
<area shape="circle" coords="266,199,10" href="http://www.google.co.kr" alt="눌러봐..">
<area shape="poly" coords="172,79,87,140,170,139" href="http://www.naver.com" alt="그래 내이버다.">
</map>
</body>
</html>
Posted by 말없제이
,
멀티미디어여~~~. <embed src="C:\WINDOWS\Media\town.mid"> 윈도우 XP에있는소리~~~ town.mid . 드러봐
<embed src="C:\WINDOWS\Media\town.mid" autostart="false"> 자동실행 방지
<embed src="C:\WINDOWS\Media\town.mid" hidden="false"> 재생기 나타나게할지 여부
<embed src="C:\WINDOWS\Media\town.mid" loop="1"> 반복횟수 -1 은 무한
Posted by 말없제이
,

<html>
<body>
<xmp>
<marquee>움직이는 글자</marquee>
</xmp>
<marquee>
움직이는 글자
</marquee>
<xmp>
<marquee behavior="scroll">한쪽방향으로 반복 - 기본</marquee>
</xmp>
<marquee behavior="scroll">한쪽방향으로 반복 - 기본</marquee>
<xmp>
<marquee behavior="slide">반대편 끝에서 정지</marquee>
</xmp>
<marquee behavior="slide">반대편 끝에서 정지</marquee>
<xmp>
<marquee direction="right">오른쪽으로</marquee>
</xmp>
<marquee direction="right">오른쪽으로</marquee>
<xmp>
<marquee direction="left">왼쪽으로 - 기본</marquee>
</xmp>
<marquee direction="left">왼쪽으로 - 기본</marquee>
<xmp>
<marquee direction="up">위쪽으로</marquee>
</xmp>
<marquee direction="up">위쪽으로</marquee>
<xmp>
<marquee direction="down">위쪽으로</marquee>
</xmp>
<marquee direction="down">위쪽으로</marquee>
<xmp>
<marquee loop="1">반복횟수</marquee>
</xmp>
<marquee loop="1">반복횟수</marquee>
<xmp>
<marquee loop="-1">무한 반복</marquee>
</xmp>
<marquee loop="-1">무한 반복</marquee>
<xmp>
<marquee scrollamount="50">한번에 이동하는 거리 픽셀단위</marquee>
</xmp>
<marquee scrollamount="50">한번에 이동하는 거리</marquee>
<xmp>
<marquee scrollamount="50" scrolldelay="1000">1초후에 50픽셀씩 이동</marquee>
</xmp>
<marquee scrollamount="50" scrolldelay="1000">1초후에 50픽셀씩 이동</marquee>
<xmp>
<marquee width="100" height="100" direction="down">width 너비, height:높이 지정</marquee>
</xmp>
<marquee width="100" height="100" direction="down">width 너비, height:높이 지정</marquee>
</body>
</html>

Posted by 말없제이
,