From c2778cbecb1296764bf5de611f90c72942c92910 Mon Sep 17 00:00:00 2001 From: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> Date: Sat, 19 Jan 2019 16:01:09 -0800 Subject: [PATCH] fix: corrected url examples (#34639) --- .../html/attributes/a-href-attribute/index.md | 30 ++++--------------- 1 file changed, 5 insertions(+), 25 deletions(-) diff --git a/guide/english/html/attributes/a-href-attribute/index.md b/guide/english/html/attributes/a-href-attribute/index.md index 108e2d843c..824590df1e 100644 --- a/guide/english/html/attributes/a-href-attribute/index.md +++ b/guide/english/html/attributes/a-href-attribute/index.md @@ -23,36 +23,16 @@ For instance: ``` The `` attribute is supported by all browsers. -Different URL Forms -The URL may be: - -Fully Qualified (include a protocol) -https://html.com -https://html.com -URL with a relative (unspecified) protocol -//html.com -Browser-specific protocol -chrome://settings/ -Relative to the current page -next -Relative to the current domain -/ -/wp-content/uploads/flamingo.jpg -Values of the href Attribute -Value Name Notes -url The URL (URI) of the linked resource. - - -Read more: https://html.com/attributes/a-href/#ixzz5VX8eY5eg ### Syntax - +`` URL: The URL of the link. + Possible values: - - An absolute URL - points to another web site (like ) - - A relative URL - points to a file within a web site (like href="index.html") - - Link to an element with a specified id within the page (like hred="#id-name") + - An absolute URL - points to another web site (like `link text`) + - A relative URL - points to a file within a web site (like `link text`) + - Link to an element with a specified id within the page (like `link text`) #### More attributes: `hreflang` : Specifies the language of the linked resource.