color
by rootjang
HTML
<!DOCTYPE html>
<html lang="ko-KR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>배경 및 색상</title>
<style>
body {
background: #222222;
}
.text1 {
color: rgb(255, 255, 255);
}
.text2 {
color: rgba(255,255,255,0.8);
}
.text3 {
color: rgba(255,255,255,.5);
}
.text4 {
color: rgba(255,255,255,0.2)
}
</style>
</head>
<body>
<h1 class="text1">HTML5 + CSS3</h1>
<h1 class="text2">HTML5 + CSS3</h1>
<h1 class="text3">HTML5 + CSS3</h1>
<h1 class="text4">HTML5 + CSS3</h1>
</body>
</html>