Questions tagged as 'html'

1
answer

In what language was HTTP written when implemented on the Web?

I want to know in which language HTTP was developed.     
asked by 15.01.2017 / 13:38
4
answers

What is the modern alternative to framesets?

I know that the frame that used to load a few pages into one is no longer used, on the internet there is a lot of content saying that this is obsolete. But what would be the ideal alternative for this purpose? Load a page in a given size and...
asked by 08.05.2014 / 06:46
4
answers

How to generate indented code?

How to print indented code when I give echo to PHP? let's say the structure looks like this: echo '<div>'. '<table>'. '<tr>'. '<td>'. '</td>'. '</tr>'....
asked by 21.07.2015 / 22:41
3
answers

Save or not browser cache?

Hello, I tested a site I'm doing on PageSpeed Insights from Google, and it suggests "Leverage Browser Cache". I wanted to know if it is really necessary and advantageous to store cached files, or if I only put this tag? <meta http-equiv=...
asked by 24.10.2015 / 20:09
2
answers

Simple pagination in jQuery / Javascript

I'm looking for a simple pagination, no CSS styles, or anything like that. Only with the buttons below to change the page and with the elements on top. I'm asking, because the examples I find are a bit complex for me. I'm loading the data usi...
asked by 20.02.2014 / 18:58
2
answers

What does "region above the fold" mean?

On the developers google page there are several quotes to this term: "Structure your HTML to load only the critical content of the region above the fold first " What would this region be like above the fold? what part of the HTML would it be?...
asked by 13.07.2015 / 16:37
4
answers

Force javascript file update without disabling cache

In a large-scale web application that develops, an upset occurs every time updates occur, because browsers, especially Google Chrome, cache JavaScript files and, sometimes, incompatibilities occur between the server code and the client code, l...
asked by 10.06.2015 / 02:49
2
answers

How to make a gif run only once?

I have a GIF and I want it to only run once, without any repetitions. Is there any way to do this? How?     
asked by 16.12.2015 / 16:54
5
answers

How to make a circle in CSS without Border-Radius 100%?

I can circle the css with border-radius . .circle{ border-radius:100%; border:10px solid red; width:100px; height:100px; background-color:purple; } <div class="circle"></div> However,...
asked by 01.12.2015 / 16:43
3
answers

Why is it wrong / bad to repeat an HTML ID?

I think the title says it all, why is it wrong to repeat HTML IDs? I notice lots of people doing things like: <div id="foo">bar</div> <div id="foo">baz</div> To apply CSS and understand the problems that this caus...
asked by 27.07.2018 / 17:10