Cara Membuat Background HTML
Untuk mengatur properti latar belakang (background) untuk seluruh halaman, dapat menerapkan properti untuk elemen body.
Contohnya seperti ini
Untuk mengatur properti latar belakang (background) untuk seluruh halaman, dapat menerapkan properti untuk elemen body.
Contohnya seperti ini
1.
<
html
>
2.
<
head
>
3.
<
title
>Judul</
title
>
4.
</
head
>
5.
<
body
bgcolor
=
"black"
>
6.
Isi halaman
7.
</
body
>
8.
</
html
>
Tetapi jika menggunakan CSS, contoh kodenya seperti berikut.
01.
<
html
>
02.
<
head
>
03.
<
title
>Judul</
title
>
04.
<
style
type
=
"text/css"
>
05.
body { background-color:black; }
06.
</
style
>
07.
</
head
>
08.
<
body
>
09.
Isi halaman
10.
</
body
>
11.
</
html
>
Maka suatu halaman yang menggunakan salah satu kode di atas baik yang menggunakan metode HTML maupun CSS akan memiliki warna latar belakang hitam.
Membuat Background Gambar
Kodenya seperti berikut
01.
<
html
>
02.
<
head
>
03.
<
title
>Judul</
title
>
04.
<
style
type
=
"text/css"
>
05.
body {
06.
background-color:black;
07.
background-image:url(URLGAMBAR);
08.
}
09.
</
style
>
10.
</
head
>
11.
<
body
>
12.
Isi halaman
13.
</
body
>
14.
</
html
>
Post a Comment