Skip to content

Instantly share code, notes, and snippets.

@adimancv
Created March 3, 2018 02:29
Show Gist options
  • Save adimancv/a4b79b2230a529a2654888f0a2979dae to your computer and use it in GitHub Desktop.
Save adimancv/a4b79b2230a529a2654888f0a2979dae to your computer and use it in GitHub Desktop.
Contoh Penggunaan CSS Sederhana
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: lightblue;
}
h1 {
color: white;
text-align: center;
}
p {
font-family: verdana;
font-size: 20px;
}
</style>
</head>
<body>
<h1>Belajar Code CSS cssx.xyz</h1>
<p>Ini isi paragrap Belajar Code CSS cssx.xyz</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment