Pemrograman Web
About Lesson
<!DOCTYPE html>
<html>
<head>
<style>
body {
  background-color: #aabbcc;
}
 
h1 {
  color: maroon;
  margin-left: 40px;
}

p { font-size:24px; color:red; }
#tkuning { background: yellow; }
.k2 { background:#000000; color:#ffffff; }
</style>
</head>
<body>

<h1>This is a heading</h1>
<p class="k2">Baris-1.</p>
<p id="tkuning">Baris-2.</p>
<p style="color:blue">Baris-3.</p>
<p class="k2">Baris-4.</p>

</body>
</html>
Scroll to Top