Skip to content

Commit 041844a

Browse files
authored
Merge pull request github#18527 from paulshryock/patch-2
Lowercase HTML elements
2 parents 9100fad + 74c6eb1 commit 041844a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/pages/getting-started-with-github-pages/securing-your-github-pages-site-with-https.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ Assets are commonly found in the following locations:
6767
|:----------:|:-----------------------------------------:|:---------------------------------:|
6868
| CSS | `<link rel="stylesheet" href="http://example.com/css/main.css">` | `<link rel="stylesheet" href="https://example.com/css/main.css">`
6969
| JavaScript | `<script type="text/javascript" src="http://example.com/js/main.js"></script>` | `<script type="text/javascript" src="https://example.com/js/main.js"></script>`
70-
| Image | `<A HREF="http://www.somesite.com"><IMG SRC="http://www.example.com/logo.jpg" alt="Logo"></a>` | `<A HREF="https://www.somesite.com"><IMG SRC="https://www.example.com/logo.jpg" alt="Logo"></a>`
70+
| Image | `<a href="http://www.somesite.com"><img src="http://www.example.com/logo.jpg" alt="Logo"></a>` | `<a href="https://www.somesite.com"><img src="https://www.example.com/logo.jpg" alt="Logo"></a>`

0 commit comments

Comments
 (0)