Skip to content

Instantly share code, notes, and snippets.

@adimancv
Created March 16, 2018 04:13
Show Gist options
  • Save adimancv/0e895ab3a95ab1f0ba7195e14439c930 to your computer and use it in GitHub Desktop.
Save adimancv/0e895ab3a95ab1f0ba7195e14439c930 to your computer and use it in GitHub Desktop.
Border bulat / rounded
<!DOCTYPE html>
<html>
<head>
<style>
p {font-family:verdana;}
p.normal {
border: 2px solid red;
}
p.bulat1 {
border: 2px solid red;
border-radius: 5px;
}
p.bulat2 {
border: 2px solid red;
border-radius: 8px;
}
p.bulat3 {
border: 2px solid red;
border-radius: 12px;
}
</style>
</head>
<body>
<p class="normal">Border Normal</p>
<p class="bulat1">Border Sedikit bulat</p>
<p class="bulat2">Border Cukup bulat</p>
<p class="bulat3">Border bulat</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment