Skip to content

Commit

Permalink
Fix for Issue - Font link is invalid #26387 (#657)
Browse files Browse the repository at this point in the history
Issue: Font link is invalid #26387
Invalid character in URL "|"

link : mdn/content#26387

Fix: Encoded the '|' according to W3 standard.

Co-authored-by: Brian Thomas Smith <[email protected]>
  • Loading branch information
letsbecometechie and bsmth authored Aug 28, 2023
1 parent e5a3a8e commit 9a2db56
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion accessibility/aria/website-aria-roles/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width">

<title>Example website with ARIA roles</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Sonsie+One" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300%7CSonsie+One" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="style.css">
</head>

Expand Down
2 changes: 1 addition & 1 deletion accessibility/aria/website-no-roles/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width">

<title>Example website structure</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Sonsie+One" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300%7CSonsie+One" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="style.css">
</head>

Expand Down
2 changes: 1 addition & 1 deletion accessibility/assessment-finished/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width">

<title>Accessibility assessment</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Sonsie+One" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300%7CSonsie+One" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="style.css">
</head>

Expand Down
2 changes: 1 addition & 1 deletion accessibility/assessment-finished/transcript.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width">

<title>Transcript</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Sonsie+One" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300%7CSonsie+One" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="style.css">
</head>

Expand Down
2 changes: 1 addition & 1 deletion accessibility/assessment-start/assessment-files/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width">

<title>Accessibility assessment</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Sonsie+One" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300%7CSonsie+One" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="style.css">
</head>

Expand Down
2 changes: 1 addition & 1 deletion accessibility/assessment-start/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width">

<title>Accessibility assessment</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Sonsie+One" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300%7CSonsie+One" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="style.css">
</head>

Expand Down
2 changes: 1 addition & 1 deletion accessibility/html/table-layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width">

<title>My page title</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Sonsie+One" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300%7CSonsie+One" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="style.css">
</head>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">

<title>My page title</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Sonsie+One" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300%7CSonsie+One" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="style.css">
</head>

Expand Down

0 comments on commit 9a2db56

Please sign in to comment.