Front-End-Web/html+css

제15강_CSS 텍스트, 폰트, 목록, 주석다루기

jsBae 2022. 10. 8. 00:23

1.텍스트 스타일


텍스트 정렬 및 텍스트 방향

<!DOCTYPE html>
<html>
<head>
<style>
h1 {
  text-decoration: underline red double 5px;
}
a {
  text-decoration: none;
}

</style>
</head>
<body>

<h1>Using text-decoration: none</h1>

<p>A link with no underline: <a href="https://www.w3schools.com">W3Schools.com</a></p>

</body>
</html>



 



 

728x90
반응형
댓글수2