Practical Exercise 3: Implementing Paragraphs and Links
In this HTML practical exercise, you will learn how to correctly implement paragraphs and links using the tags<p>to structure the text and tags<a>to link content effectively.
Paragraphs and Links
Activity
Create an HTML document with several paragraphs<p>and links<a>that point to different websites.
Interactive Solution
Solution with complete HTML code
HTML
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<title>Párrafos y Enlaces</title>
</head>
<body>
<p>
Este es un párrafo.
<a href="https://www.google.com" target="_blank">Google</a>
</p>
<p>
Otro párrafo con un
<a href="https://www.bing.com" target="_blank">enlace a Bing</a>
</p>
</body>
</html>
info
🔎Explore all the details in this section👉 Fundamental elements in HTML.