Link inline with the text

Place to talk about website HTM elements, CSS style and design, and get help with HTML, CSS codes.
Marconist
Posts: 1

Link inline with the text

Hi members I'm looking for the script for a link <href> to another URL.

I give part of my text and the link as it is now on my page:

Code: Select all

and there where useful, supplemented with comments, tips and many explanatory images. The original site of fj0abr can be found at:
  <a href='//www.fj0abr.de/german/technik/limaSDR/10W_PA.htm'> <p>fj0abr</p>
</a>

The word fj0ab that activates the link will appear separately on the next line.
What I want is the word fj0abr in a line, for example, piece of text:

"where useful, supplemented with comments, tips and many explanatory images. The original site of fj0abr can be found at"


The word fj0abr that triggers the link is then embedded in the line

is there a script for that?

MarPlo Posts: 186
Hello,
In your case, put both the text and the link inside the <p> tag.

Code: Select all

<p>and there where useful, supplemented with comments, tips and many explanatory images. The original site of fj0abr can be found at:
  <a href='//www.fj0abr.de/german/technik/limaSDR/10W_PA.htm'>fj0abr</a>
</p>
- The <p> tag adds the text inside on a new paragraph.

Similar Topics