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 (12 loc) · 498 Bytes
/
RGBBackground.html
File metadata and controls
15 lines (12 loc) · 498 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<body>
<h1>Membuat Warna RGB di HTML</h1>
<h2 style="background-color:rgb(255, 0, 0);">rgb(255, 0, 0)</h2>
<h2 style="background-color:rgb(0, 0, 255);">rgb(0, 0, 255)</h2>
<h2 style="background-color:rgb(60, 179, 113);">rgb(60, 179, 113)</h2>
<h2 style="background-color:rgb(238, 130, 238);">rgb(238, 130, 238)</h2>
<h2 style="background-color:rgb(255, 165, 0);">rgb(255, 165, 0)</h2>
<h2 style="background-color:rgb(106, 90, 205);">rgb(106, 90, 205)</h2>
</body>
</html>