
<!doctype html>
<html>
<head>
<title>PHX SUNS - DB</title>
<meta charset="utf-8">
</head>
<body>
<h1><a href="index.html">PHOENIX SUNS BIG 3</a></h1>
<ol>
<li><a href="1.html">Chris Paul</a></li>
<li><a href="2.html">Devin Booker</a></li>
<li><a href="3.html">Deandre Ayton</a></li>
</ol>
<h2>Devin Booker</h2>
<p>
Devin Armani Booker (born October 30, 1996) is an
American professional basketball player for the Phoenix Suns of the
National Basketball Association (NBA).
</p>
</body>
</html>
a 태그와 h1 태그에 CSS 적용
<!doctype html>
<html>
<head>
<title>PHX SUNS - DB</title>
<meta charset="utf-8">
</head>
<!-- CSS 속성 추가 -->
<style>
a { /* a 태그에 적용 */
color:black; /* 파란 글씨 검정으로 */
text-decoration: none; /* 밑줄 제거 */
}
h1 { /* h1 태그에 적용 */
font-size: 45px;
text-align: center;
}
</style>
<body>
<h1><a href="index.html">PHOENIX SUNS BIG 3</a></h1>
<ol>
<li><a href="1.html">Chris Paul</a></li>
<li><a href="2.html">Devin Booker</a></li>
<li><a href="3.html">Deandre Ayton</a></li>
</ol>
<h2>Devin Booker</h2>
<p>
Devin Armani Booker (born October 30, 1996) is an
American professional basketball player for the Phoenix Suns of the
National Basketball Association (NBA).
</p>
</body>
</html>
.class명 으로 적용active 클래스가 saw 클래스보다 나중에 적용됐으므로 폰트 색상 purple 이 적용됨.saw class 를 생성하여 들어가본 페이지(1, 2 페이지)의 폰트 색상을 orange 색으로 적용하기active class 를 생성하여 현재 페이지(2 페이지)의 폰트 색상을 purple 색으로 적용하기.<!doctype html>
<html>
<head>
<title>PHX SUNS - DB</title>
<meta charset="utf-8">
</head>
<!-- CSS 속성 추가 -->
<style>
.saw { /* saw class 에 적용 */
color: orange;
}
.active { /* active class 에 적용 */
color: purple;
}
a { /* a 태그에 적용 */
color:black; /* 파란 글씨 검정으로 */
text-decoration: none; /* 밑줄 제거 */
}
h1 { /* h1 태그에 적용 */
font-size: 45px;
text-align: center;
}
</style>
<body>
<h1><a href="index.html">PHOENIX SUNS BIG 3</a></h1>
<ol>
<li><a href="1.html" class="saw">Chris Paul</a></li>
<li><a href="2.html" class="saw active">Devin Booker</a></li>
<li><a href="3.html">Deandre Ayton</a></li>
</ol>
<h2>Devin Booker</h2>
<p>
Devin Armani Booker (born October 30, 1996) is an
American professional basketball player for the Phoenix Suns of the
National Basketball Association (NBA).
</p>
</body>
</html>
#id값 으로 적용현재 페이지에 active id 값을 적용해 폰트 색상 purple 적용하기
<!doctype html>
<html>
<head>
<title>PHX SUNS - DB</title>
<meta charset="utf-8">
</head>
<!-- CSS 속성 추가 -->
<style>
#active { /* active id 값 적용 */
color: purple;
}
.saw { /* saw class 에 적용 */
color: orange;
}
a { /* a 태그에 적용 */
color:black; /* 파란 글씨 검정으로 */
text-decoration: none; /* 밑줄 제거 */
}
h1 { /* h1 태그에 적용 */
font-size: 45px;
text-align: center;
}
</style>
<body>
<h1><a href="index.html">PHOENIX SUNS BIG 3</a></h1>
<ol>
<li><a href="1.html" class="saw">Chris Paul</a></li>
<li><a href="2.html" class="saw" id="active">Devin Booker</a></li>
<li><a href="3.html">Deandre Ayton</a></li>
</ol>
<h2>Devin Booker</h2>
<p>
Devin Armani Booker (born October 30, 1996) is an
American professional basketball player for the Phoenix Suns of the
National Basketball Association (NBA).
</p>
</body>
</html>