
bold heading with various size
unordered list using with "li"
ordered list (1,2,3...) using with "li"
has an href attribute and represents a hyperlink
contains URL
a href="http://google.com"
Go to google.com
opens within the same page
a href="http://google.com" target="_self"
opens in new page
a href="http://google.com" target="_blank"
self closing tag
<!DOCTYPE html>
<html>
<head>
<title>Home - My first website.</title>
</head>
<body>
<h1>
Hello!
</h1>
<a href="http://google.com" target="_blank"> Go</a>
<img src="https://upload.wikimedia.org/wikipedia/ko/c/cd/Doraemon.PNG" />
</body>
</html>