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
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
-
Speech to text without https
General Forum
First post
Pleasant Coursesweb,
Is their anything posible without https for speech to text fill-in ?
Or must I turn my SSL document on the XAMPP-server ?
Last post
Hello,
I don't know about speech to text fill-in.
Anyway, I want to inform you that this forum will be closed for register or posting.
Any...
-
Hide element if data contains specific text
HTML - CSS
First post
Is there a possibility to hide HTML elements if the 'data-' attribute contains a specific piece of text?
For example: Hide the Divs that it's data...
Last post
You can do this with either CSS or Javascript.
CSS:
/* with specified elements */
div {
display: none;
}
/* or global */
{
display: none;...
-
Reverse the characters added in text field
JavaScript - jQuery - Ajax
First post
I have the following html and JavaScript code. An input text box and a button.
<input type='text' id='backwards-input'>
<button...
Last post
Try use and study the following code:
<input type='text' id='backwards-input'>
<button id='backwards-button'>Button</button>...