Hello everyone.
iv noticed that ( Build a Cat Photo App - step 12 ) is the most repetitive topic in here.
so i thought maybe lets save some time and trouble for everyone by making a topic pinned that even if new comers didn’t see it and posted a new topic about step 12, others can easily copy paste from here the explanation or just guide them here.
Now i have this :
<p> Click Here To Read More </p>
which appears like this :
Click Here To Read More
.i want to make the word “Here” a link that goes to Wikipedia page so i wrap the word “Here” in an <a> Element like this:
<p> Click <a> Here </a> To Read More </p>
which appears like this:
Click Here To Read More
.Now <a> element open tag comes with href attribute href="" and inside it, you write the location of your link which is for me Wikipedia.com.
So my new code will be :
<p> Click <a href="https://Wikipedia.com"> Here </a> To Read More </p>
which appears like this:
Click Here To Read More
.Note: if you clicked on the last link you will go to Wikipedia
You can turn the whole sentence or 1 one word of it into a link simply this way!
Hope this helps. Happy coding!