Developer/Html
[HTML] 외부 문서와의 연결: a(anchor)
Jeremy.Park
2014. 6. 16. 10:13
<html>
<head>
<meta http-equiv="Content-Type" content= "text/html; charset=UTF-8">
<title> HTML006</title >
<style type="text/css" >
a:VISITED {
color: gray ;
}
a:HOVER {
background-color: black ;
color: white ;
}
</style>
</head>
<body>
<!-- 외부 문서와의 연결: a(anchor)
-->
<a href="http://www.daum.net" >다음</ a><br />
<a href="http://www.naver.com" >뇌이버</ a><br />
<a href="http://www.google.com" >구글</ a>
</body>
</html>