<meta name="viewport" content="width=device-width, initial-scale=1/> <link rel="style sheet" href="mystyles.css"> [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 yesterday.
Improve this question
I ran the above code on the validator and this was the result- Attribute sheet" not allowed on element meta at this point. obviously new to this I hope I get answers
I tried adding semi colons

Related

Not showing the image of img tag [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 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".

Why am I failing to use a font-family I've downloaded? [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
The .html I’m editing is ‘thrway2.html’.
This is taking place in a style tag in my .html.
The problem was I was using smart quotes around “fonts/Ahem.ttf”.

My html page won't show my stylesheet [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 4 years ago.
Improve this question
My html page doesn't show the edits that should be made with my css page. I have tried to fix the problem for over an hour now and done everything I can think of. The page is linked with
link href="stlyes/css-ba.css" type="text/css" rel="stylesheet"
Which i believe is correct. I've checked and rechecked the name and any other things. It is saved in the folder styles as css-ba.css.
Replace:
link href="stlyes/css-ba.css" type="text/css" rel="stylesheet"
With:
link href="styles/css-ba.css" type="text/css" rel="stylesheet"
You have a spelling mistake "stlyes"
check spellings for "styles" in href="stlyes/css-ba.css"
try deleting cache files and restart the browser

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).

Favicon not showing up sometimes [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 7 years ago.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
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.
Improve this question
I can not find a solution to my issue with the favicon. I have searched everywhere. I have a test site and the header is driven by php and inserts the same html header code on all the pages. I can confirm this just by looking at the source code of the pages in question. I have tried about all I know what to do
Here is my code in the html header. http://new.franmar.com/confirmation/980
<link rel='icon' href='/favicon.png' type='image/png'>
<link rel='shortcut icon' href='/favicon.png' type='image/png'>
<link rel="icon" type="image/ico" href="/favicon.ico" />
When I go to the home page (http://new.franmar.com/) I get the icon to show. And its the same code.
And ideas?
Thanks!
http://new.franmar.com/favicon.ico
You have a 404 error there. Where is this file located?