
[code]
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> WEB - CSS </title>
<style>
#active{ // 클릭 순간 효과 주기
color:red;
}
.saw{ // 클릭 후 효과 주기
color:gray;
}
a{
color :blue;
text-decoration: none;
}
h1{
font-size: 45px;
text-align: center;
}
</style>
</head>
<body>
<h1><a href="index.html"> WEB </a></h1>
<ol>
<li><a href="1.html" class="saw">HTML</a></li> // class 지정
<li><a href="2.html" class="saw" id="active">CSS</a></li> // class 지정
<li><a href="3.html">JavaScript</a></li>
</ol>
</body>
</html>
[show]
WEB - CSS