forked from kokonior/HTML-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRGBBackground.html
More file actions
15 lines (13 loc) · 802 Bytes
/
RGBBackground.html
File metadata and controls
15 lines (13 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<body>
<h1 style="text-align: center; background-color:black; color:white; padding:1%">Membuat Warna RGB di HTML</h1>
<br>
<h2 style="background-color:rgb(255, 0, 0); padding:0.5%; text-align: center">rgb(255, 0, 0)</h2>
<h2 style="background-color:rgb(0, 255, 0); padding:0.5%; text-align: center">rgb(0, 255, 0)</h2>
<h2 style="background-color:rgb(0, 0, 255); padding:0.5%; text-align: center">rgb(0, 0, 255)</h2>
<h2 style="background-color:rgb(238, 130, 238); padding:0.5%; text-align: center">rgb(238, 130, 238)</h2>
<h2 style="background-color:rgb(255, 165, 0); padding:0.5%; text-align: center">rgb(255, 165, 0)</h2>
<h2 style="background-color:rgb(106, 90, 205); padding:0.5%; text-align: center">rgb(106, 90, 205)</h2>
</body>
</html>