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
-
Link Script Users Register, Login with other script
Scripts from this website
First post
Hello I would like to know how I can link the user script with other script like that of the Script comments with pagination for the user space thank...
Last post
Hello ok thank you very much for your help
-
How to get text from javascript alert box
JavaScript - jQuery - Ajax
First post
Good evening (dutch-time) I have a javascript what can copy text to a clip-board + it has a button to show the item-list in a alert-box.
But can`t...
Last post
Thanks for the support I tried already things with history + f_print
also studied those a little before I asked coursesweb but I shall
when my head...
-
Javascript add different text to each minute of hour
JavaScript - jQuery - Ajax
First post
Hello Coursesweb I`m unknown with javascripts ????
I would like to add function minutes to this script
on each minute an diferent text added to...
Last post
Hello,
Try the following script.
<div id='addtxtmin' style='color:#00d; font-size:20px; font-weight:700'></div>
<script>
const...
-
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>...