Skip to content

Instantly share code, notes, and snippets.

@1Firsts
Created October 8, 2021 06:04
Show Gist options
  • Save 1Firsts/bd42a05f52f78b28dccbf1e835dda3c7 to your computer and use it in GitHub Desktop.
Save 1Firsts/bd42a05f52f78b28dccbf1e835dda3c7 to your computer and use it in GitHub Desktop.
Design Kotak
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<title>Hello, world!</title>
</head>
<body>
<style>
.kotak {
border: 1 px solid black;
border-radius: 8 px;
box-shadow: 16 px 16 px 0 px 0 px;
}
</style>
<h1 class="kotak">Hello, world!</h1>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous">
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment