Created
March 3, 2018 02:29
-
-
Save adimancv/a4b79b2230a529a2654888f0a2979dae to your computer and use it in GitHub Desktop.
Contoh Penggunaan CSS Sederhana
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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