Last active
May 2, 2020 01:39
-
-
Save aacassandra/74b5df8a13f73a17e39287218fe40d1a to your computer and use it in GitHub Desktop.
Belajar HTML: Membuat Heading (7/33)
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>sahabatcoding</title> | |
</head> | |
<body> | |
<h1>Ini heading 1</h1> | |
<h2>Ini heading 2</h2> | |
<h3>Ini heading 3</h3> | |
<h4>Ini heading 4</h4> | |
<h5>Ini heading 5</h5> | |
<h6>Ini heading 6</h6> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment