Skip to content

Instantly share code, notes, and snippets.

@adimancv
Last active March 2, 2018 10:58
Show Gist options
  • Save adimancv/6bbba0157637f0c59c18f0cadd4afd6b to your computer and use it in GitHub Desktop.
Save adimancv/6bbba0157637f0c59c18f0cadd4afd6b to your computer and use it in GitHub Desktop.
Contoh Berkas CSS
<html>
<head>
<style type="text/css">
body {
background-color: #d0e4fe;
}
h1 {
color: orange;
text-align: center;
}
p {
font-family: "Times New Roman";
font-size: 20px;
}
</style>
</head>
<body>
<h1>CSS example!</h1>
<p>This is a paragraph.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment