0 added
0 removed
Original
2026-01-01
Modified
2026-03-09
1
<p>In between business meetings, Muffin decided to look at the “Blog of a Beginning Coder”. He opened the main page, and he was unable to go from it to the other blog pages.<em>He was so confused!</em></p>
1
<p>In between business meetings, Muffin decided to look at the “Blog of a Beginning Coder”. He opened the main page, and he was unable to go from it to the other blog pages.<em>He was so confused!</em></p>
2
<p>And it’s all because there are absolutely no links on the site! And until we fix this, the boss will not read the blog: he is too busy to open each page separately.</p>
2
<p>And it’s all because there are absolutely no links on the site! And until we fix this, the boss will not read the blog: he is too busy to open each page separately.</p>
3
<p>What is a link?</p>
3
<p>What is a link?</p>
4
<p>Usually a link looks like an underlined fragment of text. When you click on it, you go to another page, open an image, start downloading a file, or move to some place on the current page. If we imagine that the Internet is a huge network with many nodes, then the links are the threads connecting all of the nodes in this network together.</p>
4
<p>Usually a link looks like an underlined fragment of text. When you click on it, you go to another page, open an image, start downloading a file, or move to some place on the current page. If we imagine that the Internet is a huge network with many nodes, then the links are the threads connecting all of the nodes in this network together.</p>
5
<p>Links are created using a very short <a> tag (which is short for “anchor”). For example, it looks like this:</p>
5
<p>Links are created using a very short <a> tag (which is short for “anchor”). For example, it looks like this:</p>
6
<a href="https://htmlacademy.org">HTML Academy</a><p>The link address is specified in the<a>URL</a>format using the href attribute (which is short for “hyper reference”).</p>
6
<a href="https://htmlacademy.org">HTML Academy</a><p>The link address is specified in the<a>URL</a>format using the href attribute (which is short for “hyper reference”).</p>
7
<p>Let’s try to create a link in our blog and to click on it!</p>
7
<p>Let’s try to create a link in our blog and to click on it!</p>