answersLogoWhite

0


Best Answer

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you code a big pound sign using javascript and HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How to make a Show Hide HTML?

You cannot make an html for show hide, one can simply use javascript to create the show hide code that you are looking for. Depending on what you want, the code is fairly simple using a javascript html code resources.


Does HTML code work in java script?

Yes it does. That is how client side validation of html control is possible using javascript


How do you create a simple JavaScript message inside the HTML?

You need to type the following code to create a simple JavaScript message inside the HTML


Calculations in HTML?

HTML is a static language, you cannot do any math using only HTML. To do math, you need a scripting language such as JavaScript. Try this code: <script type="text/javascript"> document.write((2+3)*2); </script> put this in your HTML page and it should display as 10


How you can use jquery in HTML?

jQuery is like JavaScript, you can code inside your html file using the <script> tag. Or you can use an include tag and call an external sheet with your jQuery code.


How do you write HTML codes and javascript events together in your HTML kit?

You need to write the HTML code in the tag format. If you want to write JavaScript put it in <script> tag.


How do you put java script into HTML?

Javascript inside html <html> <head> <script type="text/javascript" language="javascript"> // Java script code here </script> <body> // html code here </body> </html> Via External Link: <html> <head> <script type="text/javascript" language="javascript" src="location of js file"> </script> <body> // html code here </body> </html>


Difference between HTML and dhtml - point wise?

Dynamic HTML is basically using HTML and some other things to enhance it, usually Javascript and Styles. All HTML really does is format your page. To get your page to do things, you need more than just plain HTML. The following code will create a button that you can click on and it will pop up a message. It uses Javascript. Copy and paste it or type it exactly as it is into your code and it will work.The onClick="alert('Hello');" piece is Javascript. Without it you would still have the button, but when it was clicked, it would not do anything. The Javascript makes your page come alive as it were. That is the idea of Dynamic HTML.


Can you use JavaScript within the form tag?

You can call an external javascript file or javascript code located inside the head or body tag from a form using event handlers. I am not sure if you can or cannot use javascript code inside form tags but am sure that it is not a good programming practise to put code of two different language (js & html) together


What is the HTML code for a tab?

Not so much Html as Javascript. Two different things. If this helps any the code would probably be \t.


What is HTML-only?

All websites use HTML, but some sites use HTML in conjunction with one or more other coding languages like Javascript or CSS. HTML-only means it uses just the basic coding.


How can you insert javascript into an HTML document?

Here are two examples of internal and external calling of javascriptInternal Calling (Not Recommended)// Your javascript code ehreExternal Calling (Recommended)