html content not showing, tried everything [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 last month.
Improve this question
Basically, the content of an html document isn't showing whatsoever on the browser.
This HTML document I made was linked from another html file.
When I open this HTML file on the browser, it is blank, not showing a thing when there is clearly code in it.
I have saved a couple of times and still has not been showing content with every update.
I tried updating and saving before opening, searched on google what is the problem and the solution.
Still there was nothing relevant to my issue. I was expecting for the browser to finally execute the
HTML code but still there was nothing. So I looked at Stack Overflow and here I am now.
Any solutions?
<!doctype html>
<html>
<head>
<title>Aa
<title>
</head>
<body>
<h1><i>Aa<i></h1>
<p>Aa</p>
</body>
</html>

The <title> tag is not closed properly, you are missing an /:
<title>Aa</title>

Related

Why does Chrome hide part of the dropdowns input? [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 3 years ago.
Improve this question
I've been developing angular apps for a while now, but recently I found an issue in displaying a basic input with type=date in chrome, and I wonder if there is a css trick that I don't know about to let it work.
As you can see, the Monday column is entirely missing.
The code is as simple as it should be, it's basic HTML:
<input type="date">
And the funny fact is that as soon as I resize the window (for example opening and closing the developers console) it starts working fine.
Do you have any idea on how to solve this?
EDIT:
I don't think the issue is with my code at all.
(Link to the question)
It looks like the issue is more related to my second monitor than to chrome itself.
If I open my app or any dropdown on the web from my laptop monitor it shows correctly.
Thank you everybody for the help.

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

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?

Copy to clipboard button on website not working [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
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.
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.
Improve this question
I used the code from this website:
http://www.htmlgoodies.com/beyond/javascript/article.php/3458851
and modified the code to fit what I need:
<div align="center">
<font size="5"><b><SPAN ID="copytext">[show_ip]</SPAN></b></font>
<br />
<TEXTAREA ID="holdtext" STYLE="display:none;"></TEXTAREA>
<BUTTON onClick="ClipBoard();">Copy to Clipboard</BUTTON>
</div>
The code doesn't give any errors and it formats correctly but it's just not copying to the clipboard.
I am putting this in a TEXT WIDGET on Wordpress so I am limited on what I can do.
Anyone have any suggestions?
Thank you!
The site you copied from, in the link, also has the JS code for ClipBoard(); It's a little ways down the page. Looks like you missed it.
<SCRIPT LANGUAGE="JavaScript">
function ClipBoard()
{
holdtext.innerText = copytext.innerText;
Copied = holdtext.createTextRange();
Copied.execCommand("Copy");
}
</SCRIPT>
^^ From the site you linked.

Some <a> links just stopped working on my site [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
I've ran into some weird problem that didn't exist before. The code is perfect, and all links are defined with LINK. However, many links won't work when on an article post - on the homepage, all links works fine, as far as I can tell.
Here's a link to an article - try clicking on the four top links, for example: http://dedanseglade.no/2014/dd-anmelder-video-ingemars-de-saliges-kvarter/
This has been a problem on all the PC's we tested (and with different, modern web browsers), and it worked before with the same code. Suddenly, some links work, but some don't. I've never experienced anything like this before, and I'm quite experienced with HTML. I'm using the latest version of Wordpress, 3.9.
In your lightbox.js you've got this:
jQuery(document).on('click', 'nav a', function(e) {
e.preventDefault();
//some other code here
});
The links that are not working have been disabled by this lighbox.js so you need to either change the selector in your js file or change the nav element to a div element but this is just a workaround and I don't recommend it.