본문 바로가기
WEB Archive

[HTML] CSS 적용해보기

by universedevelope 2024. 8. 20.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Test005.html</title>
<style type="text/css">
	*
	{
		font_size: 20pt;
		font-weight: bold;
		font-family: 맑은 고딕;
		color: #334433;
	}

</style>
</head>
<body>

<div>
	<h1> 데이터 입력 관련 태그</h1>
	<hr>
</div>

<div>
	<!-- check~!! -->
	<form action="">
		이름<input type = "text"> <br>
		국어<input type = "text"> <br>
		영어<input type = "text"> <br>
		수학<input type = "text"> <br>
		<br>
		
		<input type = "button" value = "결과">
		<input type = "reset" value = "취소">
		<br>
		
		총점<input type = "text"> 평균 <input type = "text"><br>
		
	</form>
</div>

</body>
</html>

갑자기 style을 적용시켜보라시는데..

허허... 어떻게 나올지 모른채로

일단 따라써보았다.

 

전체 선택자 ▶   *   ◀ 이녀석이다.

전부 다 적용을 시켜주는 느낌

728x90

댓글