Apa itu CSS?
CSS (Cascading Style Sheets) mengatur tampilan elemen HTML. Ada 3 cara:
- Inline — atribut style
- Internal — tag <style> di <head>
- External — file .css terpisah
CSS (Cascading Style Sheets) mengatur tampilan elemen HTML. Ada 3 cara:
.box {
background: linear-gradient(135deg, #6DD5C4, #7EB8F0);
color: white;
padding: 20px;
border-radius: 12px;
text-align: center;
}