Skip to content

Instantly share code, notes, and snippets.

@desawarna
Created October 24, 2018 14:36
Show Gist options
  • Save desawarna/a8a0d3fd1c1d4d3ac0192da8e87fe71f to your computer and use it in GitHub Desktop.
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>
<!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