Created
October 24, 2018 14:38
-
-
Save desawarna/68d2b1024b753af1cf79c922ec559e6b to your computer and use it in GitHub Desktop.
Yaitu menuliskan CSS dengan menggunkan atribut style yang langsung dituliskan di dalam tag HTML.
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>Inline</title> | |
</head> | |
<body> | |
<p style="color: red"> Tulisan ini berwarna merah </p> | |
<p style="font-weight: bold"> 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