Questions tagged as 'html'

3
answers

Font-family does not work on my page

I have decided to use the google source "Raleway" with which I have added this to my code: <link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet"> And this in my css: html, body { height:100%; width:100%; fo...
asked by 25.10.2016 / 17:32
2
answers

Apply a style to the single pulsed element

I have a problem, I am using jquery, and I need that when I press an element a style is applied, the problem is that all the elements have the same class and I can evaluate it with the event object that I receive the function, but that's only wh...
asked by 15.03.2018 / 01:19
3
answers

how to put the information of my page on image? [closed]

         Start      <img src="img/programacion.jpg"> <form action="Formulario_submit" method="POST" accept-charset="utf-8"> <center> <h1>Super Mundo Web</h1> <p>"Si puedes imaginar se puede...
asked by 24.03.2018 / 16:51
2
answers

How to style an input="file"?

I would like an input ( <input type='file' > ). Have the appearance of a div with a class which gives it a circle. circle { border-radius: 50%; width: 80%; height: 0; padding-bottom: 80%; border-style: solid;...
asked by 22.03.2018 / 17:52
3
answers

event to control the doubleClick

I have managed to perform a function in the first click function s(){ $('div').addClass('s'); $('div').css({display:"block"}); console.log("click"); } <script src="https://ajax.googleapis.com/aja...
asked by 05.03.2018 / 02:18
2
answers

Why do not you see an image in html?

This is what happens to me. <h1><img src= "Bibliotecas/Imágenes/logo.gif" width="100" height="100">Trabajadores Vigentes</h1>     
asked by 16.02.2018 / 19:41
1
answer

Accept letters and numbers in a text type input

Good morning, I have this code that only allows the use of numbers. $('input[name="39"]').bind('keypress', function(e){ var keyCode = (e.which)?e.which:event.keyCode return !(keyCode>31 && (keyCode<48 || keyCode&g...
asked by 03.12.2018 / 23:10
1
answer

e.preventdefault does not work in submit

I have a simple form with two inputs and a button to send it. I am trying to make the submit not work by default to be able to do things with the data before sending it to the server but, I do not know why, I can not avoid the submit....
asked by 16.04.2018 / 17:03
2
answers

How do I make 2 accordions open at the same time?

I have 2 accordion on a web page, the problem that I have is that I need to make the 2 accordion be open.    Example: The 2 accordions are closed by default Accordion 1 = Cerrado Accordion 2 = Cerrado    at the moment of clicking on...
asked by 21.06.2017 / 16:03
1
answer

PHP form when attaching file turns it into .dat

Good morning, Tengos two quibbles I have made a form in php so that they can attach files and send them to the mail send well the mail but the file calls it like this: Attached data without title 0066.dat giving equal the upload it with....
asked by 21.06.2017 / 10:28