본문 바로가기

웹 프로그래밍/HTML

[HTML] 특수문자 표현하기('<', '>', ' ')

< : &lt;  (less than)

> : &gt;   (grater than)

공백문자 : &nbsp;

 

 

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
	
	<h2>html 특수문자 표현</h2>
	<br>태그는 줄넘김 태그입니다. <br>  <!-- <br> 태그를 문자로 인식하게 해보자. -->
	&lt; <br> <!-- '<'는 lt(less than) 으로 표현한다.-->
	&lt;br&gt; 태그는 줄넘김 태그입니다. <br>
	[&nbsp;]는 공백문자를 표현합니다. <br>
	[&amp;] <br>
	[&amp;nbsp]는 공백문자를 표현합니다. 
	
	<h2>LottoMain.java</h2>
	
	<pre>
	class Account {
	
	Random r = new Random();
	private String name;
	private int money;
	
	}
	</pre>
	
</body>
</html>