
<style>
a{
color :blue; // 텍스트 컬러 지정
text-decoration: none; // 텍스트 꾸미기 속성
}
</style>
...
<a href="2.html" style="color:red; text-decoration:underline"> // 텍스트 컬러 지정
[code]
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> WEB - CSS </title>
<style>
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" target="_blank">HTML</a></li>
<li><a href="2.html" target="_blank" style="color:red; text-decoration:underline">CSS</a></li> // 텍스트 컬러 추가
<li><a href="3.html" target="_blank">JavaScript</a></li>
</ol>
</body>
</html>
[show]
WEB - CSS