Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
<!DOCTYPE html>

<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<h1 style="color:white">Ini merupakan judul berwarna coklat diwarnai dengan inline css</h1>
<h2>Judul kedua ini warnanya merah diwarnai dengan internal css</h2>
<p>Kalimat ini berwarna hijau yang diwarnai menggunakan internal css</p>

<p>My first paragraph.</p>
</body>
</html>

</html>
14 changes: 14 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
body {
background-color: black;
}

h1 {
color: blue;
}

h2 {
color:yellow
}
p {
color: red;
}