프로그래밍 언어/html

[HTML] 폰트색설정, 배경색설정, 폰트설정, 글씨위치조절

반응형

문자열 색 설정

<h1 style="color:blue">h1 tag color</h1>

h1 tag color


배경색 설정

<h2 style="background-color: #00ff00">h2 tag color green</h2>

h2 tag color green


글씨체 설정

<h3 style="font-family: verdana">h3 tag font</h3>

h3 tag font


글씨 크기 설정

<h4 style="font-size: 300%">h4 tag</h4>

h4 tag


글씨 위치 조절

<p style="text-align: center;">여기가 p tag입니다</p>

여기가 p tag입니다


<pre style="font-size:200%; background-color: #ffff00; font-family: verdana">
1. 컴퓨터시스템
2. 프로그래밍 언어활용 part1
3. 응용SW기초 기술 활용part1
4. 화면구현 part2
5. SQL 활용
</pre>
1. 컴퓨터시스템
2. 프로그래밍 언어활용 part1
3. 응용SW기초 기술 활용part1
4. 화면구현 part2
5. SQL 활용
반응형