From b6588b005ca8908e46efb6cc3be34eb3c7a2c740 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Giftea=20=E2=98=95?= Date: Fri, 10 Oct 2025 22:06:04 +0100 Subject: [PATCH] feat(curriculum): Add interactive example to address element lesson (#62698) --- .../672995e43674fb3775b9ec5d.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lecture-working-with-text-and-time-semantic-elements/672995e43674fb3775b9ec5d.md b/curriculum/challenges/english/blocks/lecture-working-with-text-and-time-semantic-elements/672995e43674fb3775b9ec5d.md index 080058b667d..d2c252a220c 100644 --- a/curriculum/challenges/english/blocks/lecture-working-with-text-and-time-semantic-elements/672995e43674fb3775b9ec5d.md +++ b/curriculum/challenges/english/blocks/lecture-working-with-text-and-time-semantic-elements/672995e43674fb3775b9ec5d.md @@ -5,7 +5,7 @@ challengeType: 19 dashedName: how-do-you-display-addresses-in-html --- -# --description-- +# --interactive-- The contact address element is used to represent contact information for a section on a web page. The `address` element is versatile and can be used for business pages, author pages, personal sites, and more. @@ -13,6 +13,8 @@ When it comes to building out your website's contact sections, you should use th Here is an example of using the `address` element for a company contact page: +:::interactive_editor + ```html

Company Name

@@ -26,6 +28,8 @@ Here is an example of using the `address` element for a company contact page:
``` +::: + In this example, there is the company name, physical address, phone, and email information. For the physical address, the line break element, `br`, is used to show the division between the street name, city, and country. For the phone number, we have an anchor element with the `href` value set for telephone numbers. The `tel:+` value inside the `href` attribute creates a clickable link to initiate a phone call on certain devices that support that.