Questions tagged as 'html'

5
answers

How to set the border color of a table without CSS?

Is there any way? I do not want CSS neither external, nor internal, just plain html. Follow my code. <table widths="30;60" cellpadding="1.5" border="1"> <tr> <td> <p >Data:</p>...
asked by 28.03.2014 / 21:27
6
answers

How can I highlight the radio button that is selected?

I have this radio group in which it is used to specify the severity level of a certain occurrence, using the colors to classify the level. See: <html lang="en"> <head> <meta charset="UTF-8"> <meta na...
asked by 06.12.2017 / 19:30
2
answers

What are the functions of form tags in HTML5?

The question refers to tags not so commonly used, such as <fieldset> , <legend> , <label> and <optgroup> . Recently I needed to do extensive work involving registration forms and I noticed th...
asked by 25.11.2015 / 19:54
3
answers

How do you join data from another table

How to merge data from another table. On the downstairs bank I have 3 tables: dados: id, nome, end, tel... etc.... cidades: id, nome_cidade status: id, nome_status $sql = "SELECT * FROM dados "; $resultado = mysql_query($sql) or di...
asked by 26.01.2015 / 02:21
2
answers

HTML equivalent markup language?

Just for the sake of curiosity, I've been researching and found nothing at all. HTML is a text-marking language, and there are others like XML which is the only one with a clear explanation that I have found, but I have never seen / found oth...
asked by 08.08.2017 / 18:20
3
answers

Is an TR anchoring possible?

Is it possible for outside of a tr element to link any address as below? <a href="www.enderecodesejado.com.br"></a> If it is not possible, would JavaScript solve this or is it better to forget? I have the following tab...
asked by 11.01.2014 / 21:13
3
answers

Executing external application with JavaScript

What code should I use to start an external application from a computer from an HTML page? One more time I was told that this code would be in JavaScript: var shwll = new ShellObject(); var hproc="C:\Windows\notepad.exe"; shwll.exec(hproc);...
asked by 17.08.2014 / 04:31
4
answers

Pros and Cons of a 100% HTML / JavaScript Web Application

I'm seriously thinking of developing a web application, using only HTML / JavaScript in the client-side for performance gain and whereby any and all communication needed with the server is done through requests to a WebService (yes, it will con...
asked by 09.06.2015 / 19:08
6
answers

How do I use a database in an HTML site?

I am interested in making a website that will use database, many told me that if you use MySQL to do this, however I have no knowledge about it, installation, use etc. I have knowledge in PHP, HTML, CSS and JavaScript, I do not know if it interf...
asked by 04.02.2014 / 19:57
2
answers

Can I write in JavaScript within PHP?

Can I write the HTML tag <script> in PHP and write the script </script> using echo here? If I do for example echo("<script> var a = 'texto';</script>"); This is my code but JS does not wo...
asked by 30.09.2015 / 13:27