Skip to content

Instantly share code, notes, and snippets.

@josikie
Created April 20, 2020 01:53
Show Gist options
  • Save josikie/7871d39e9ee6b3a9950d96f015a24173 to your computer and use it in GitHub Desktop.
Save josikie/7871d39e9ee6b3a9950d96f015a24173 to your computer and use it in GitHub Desktop.
Membuat Tabel Menggunakan HTML dan CSS
table, th, td{
border-width: 1px;
border-style: solid;
border-color: pink;
border-collapse: collapse;
margin: 10px;
padding: 10px;
text-align: center;
}
th{
background-color: rgb(255, 206, 197);
color: black;
}
td{
background-color: plum;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment