lesson 3
lesson 3
HTML can make text clickable using links.
HTML can make text clickable using links.
The <a> element creates a link. The href attribute tells the browser where the link should go.
<a href="https://example.com">Visit Example</a>
<a> = creates a link
href = tells the link where to go
Visit Example = the text the user clicks
Change the link text and the website it goes to, then press Run to test it.
Next - Lesson 4: Images