WEB.HTML
chapter09 : special_char
GAWON
2023. 5. 18. 09:16
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h1>특수 문자</h1>
<h3>공백 문자 : </h3>
<h3>큰따옴표 : "</h3>
<h3>앰퍼샌드 : &</h3>
<!-- 비교 표현식 -->
<h3>작다 : <</h3> <!-- little -->
<h3>작거나 같다 : ≤</h3> <!-- little or equal -->
<h3>크다 : ></h3> <!-- greater -->
<h3>크거나 같다 : ≥</h3> <!-- greater -->
</body>
</html>