Skip to content

Commit 1c4ff33

Browse files
committed
Update readme
1 parent 68e64df commit 1c4ff33

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: 04-html-links/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ We can also link to an email address to open the user's default mail app:
3737

3838
Links can take a relative path or an absolute path:
3939
1. **relative path**: Is a local link to your application
40-
- Example: <a href="/04-html-links/example.html">HTML Links Example</a> <!-- / is the root of your application -->
41-
- Example: <a href="../03-html-text/example.html">HTML Text Example</a> <!-- ../ goes back a directory to reach a level up from where this tag is declared -->
40+
- Example: `"/04-html-links/example.html"`: <a href="/04-html-links/example.html">HTML Links Example</a> <!-- / is the root of your application -->
41+
- Example: `../03-html-text/example.html`: <a href="../03-html-text/example.html">HTML Text Example</a> <!-- ../ goes back a directory to reach a level up from where this tag is declared -->
4242
2. **absolute**: Is a link to a full website with http:// or https://
43-
- Example: <a href="https://www.example.com/">Example website</a>
43+
- Example: `https://www.example.com/`: <a href="https://www.example.com/">Example website</a>
4444

4545
<!-- [Next Lesson: HTML ](../05-html-/README.md) -->

0 commit comments

Comments
 (0)