<!DOCTYPE html> <!-- For the website to know what is this type of file -->
<html lang="en">
<head>
<title>Example Of HTML</title>
<style>
p {
background-color: black;
color: white;
}
</style>
</head>
<body>
<p>This is an example of a website</p>
<button>yea, Its my first learning!</button>
<button>no, i already leaned</button>
</body>
</html>