Created
October 24, 2018 14:36
-
-
Save desawarna/a8a0d3fd1c1d4d3ac0192da8e87fe71f to your computer and use it in GitHub Desktop.
Yaitu penulisan CSS menggunakan tag <style> ... </style> yang ditulis di dalam tag <head> ... </head>
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> | |
<title>CSS Internal</title> | |
<style type="text/css"> | |
p{ | |
color: red; | |
font-weight: bold; | |
} | |
</style> | |
</head> | |
<body> | |
<p> Tulisan ini berwarna merah </p> | |
<p> Tulisan ini dicetak tebal </p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment