Not showing the image of img tag [closed] - html

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 1 year ago.
Improve this question
I have a image tag on html code. which is used to generate a pdf. particular image for the image tag is taking from the server. but it is not showing the image. followings code is img tag what I have tried.
<img class="characteristics-image" src="https:://translate.orivet.com/images/last-page-2.png">
What is the wrong with this?

"https:://sales.com/images/img.png" is not a valid URL.
You meant "https://sales.com/images/img.png".

Related

I could not understand what the mistake is? [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 2 years ago.
Improve this question
using ID attribute in html code:
I have added the "id attribute" but the challenge is not accepting it. It is saying that you must use the id attribute.
I have already tried other examples instead of [<p] in id attribute but it is not accepting it. but as I have written the code, when I click on working of code (see below) jump to bottom, it take us to the bottom, as it function.
I couldn't find the mistake plz help
Try and use this:
<footer id="footer"></footer>
It says footer tag should have an id named footer.
So, you should put an id="footer" at the footer tag, not the p tag or any other tag.
And you should edit your current footer tag, not make a new one

absolute root url css [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 6 years ago.
Improve this question
I need to use this image from Images folder.
I use it in Content/style.css
url('background.jpg')
it shows me following error: http://localhost:50260/Content/Images/background.jpg 404 (Not Found)
This should work
background: url('../images/background.jpg');
Your question is a little hard to understand. If you want to reference a image using the root, then something like this will work:
background: url('/images/background.jpg');
The / at the start of the url says to reference the root.

CSS attribute selector with url [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 7 years ago.
Improve this question
Is it valid to use below css:
.myClass[my-url='page.html']
html
<ul class="myClass" my-url="page.html"></ul>
My doubt here is that can we directly use some html page name as a value.
my-url is an actual attribute on element with value of page.html
Yes, that technically works but instead of using my-url you should use data-my-url to make it pass HTML5 validation (if that matters to you at all).

How do I get rid of this little green box on my HTML/CSS page [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 8 years ago.
Improve this question
http://pastebin.com/De29tEAg This is my HTML
http://pastebin.com/88BxpnSM This is my CSS
I just started coding yesterday, so bear with me
I decided to create a button (since it's all I can pretty much do), and underneath it, there's this little green box, that is also part of the link. What is it, and how do I get rid of it?
Delete that full stop/dot/period immediately after the img and before the closing a tag.
I.e.
<img src="http://imgur.com/ukmXAgG.gif /">.
Should be
<img src="http://imgur.com/ukmXAgG.gif /">

DD tag HTML problem [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 7 years ago.
Improve this question
Why effect of DD tag differs in this pages?
[removed]
[removed]
First example also doesn't work in Chrome. Firefox is ok.
I want in node/159 same as in test.htm.
UPDATED: The links removed.
If the goal is to indent the first line of each paragraph then:
Don't use a <dd> element
Do use a <p> element
Do use the CSS text-indent property