웹디자인 강의 - HTML/CSS
글수 464
본 팁은...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> XHTML표준 입니다.
중복이면 말씀을..;;
텍스트 링크일 경우
<a href="http://주소" onclick="window.open(this.href, '_blank'); return false;">클릭</a>
이미지 링크일 경우
<a href="http://주소" onclick="window.open(this.href, '_blank'); return false;"><img src="이미지주소" alt="" style="width:100px;height:100px;border:0" /></a>
응용...
새창 가로,새로,툴,스크롤조정하기.
<a href="http://주소" onclick="window.open(this.href, '_blank', 'width=400,height=300,toolbars=no,scrollbars=no'); return false;">클릭</a>
*W3C XHTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> XHTML표준 입니다.
중복이면 말씀을..;;
텍스트 링크일 경우
<a href="http://주소" onclick="window.open(this.href, '_blank'); return false;">클릭</a>
이미지 링크일 경우
<a href="http://주소" onclick="window.open(this.href, '_blank'); return false;"><img src="이미지주소" alt="" style="width:100px;height:100px;border:0" /></a>
응용...
새창 가로,새로,툴,스크롤조정하기.
<a href="http://주소" onclick="window.open(this.href, '_blank', 'width=400,height=300,toolbars=no,scrollbars=no'); return false;">클릭</a>
*W3C XHTML
윈도우서버 Rwapm
내컴퓨터를 서버로 만들어보자!!
내컴퓨터를 서버로 만들어보자!!
2004.11.08 17:15:12 (*.36.243.120)
<img src="Go.gif" onclick="window.open(this.src)" style="cursor:hand">
<font onclick="window.open('http://nzeo.com')" style="cursor:hand">Go</font>
<font onclick="window.open('http://nzeo.com','','width=550,height=550,toolbars=no,resizable=yes')" style="cursor:hand">Go</font>
<font onclick="window.open('http://nzeo.com')" style="cursor:hand">Go</font>
<font onclick="window.open('http://nzeo.com','','width=550,height=550,toolbars=no,resizable=yes')" style="cursor:hand">Go</font>
2004.11.09 14:59:40 (*.153.225.59)
잠수부/Khal/님//
제가 올린팁은...
W3C XHTML xhtml1-strict.dtd 경우일때 표준 사용법을 적은것입니다.
에지/cuebrick/님// 우선 맞습니다.
onclick만 사용할 경우 링크에 마우스를 올리면 핸드모양이 안나옵니다.
이경우 css로 해결해야겠죠...
제가 올린팁은...
W3C XHTML xhtml1-strict.dtd 경우일때 표준 사용법을 적은것입니다.
에지/cuebrick/님// 우선 맞습니다.
onclick만 사용할 경우 링크에 마우스를 올리면 핸드모양이 안나옵니다.
이경우 css로 해결해야겠죠...
2004.11.10 01:42:21 (*.138.148.127)
아 그렇죠 style=cursor:hand 를 써줘야 하는군요.
토토루님이 쓰신 방법 나름대로 어딘가 쓰임새가 있을것도 같습니다.
코딩방식은 좀 낮설고 복잡하긴 하지만요 ^^
토토루님이 쓰신 방법 나름대로 어딘가 쓰임새가 있을것도 같습니다.
코딩방식은 좀 낮설고 복잡하긴 하지만요 ^^


