To create a button users can click on, we need the opening <button>
and closing </button>
tags.
<body>
<p>Subscribe to our Newsletter</p>
<button>Subscribe</button>
</body>
Writing text like login
between the tags changes the text appearing on the button.
<body>
<h1>Facebook</h1>
<p>Log in to your account to get started</p>
<button>login</button>
</body>