answersLogoWhite

0


Best Answer

The place in which you place JavaScript codes for a website depends entirely on what the code is doing.

If you're going to place the code directly in the website, it is generally advisable to use <SCRIPT> tags to surround the code, and place that code into the HEAD section of the document.

In the old days, we also used the HEAD section for includes ( <script src="blahblahblah.js"...> ) and this is still done if you want to be sure that the script is loaded before the page starts.

However, if the script loading a little later, it's good Search Engine Optimization practice to instead include the script tags at the bottom of the BODY section, just prior to closing.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

You can enter them into a simple text editor, such as Notepad. Once you create the page properly, it can then be saved and opened with a browser to view the webpage.

You can enter them into a simple text editor, such as Notepad. Once you create the page properly, it can then be saved and opened with a browser to view the webpage.

You can enter them into a simple text editor, such as Notepad. Once you create the page properly, it can then be saved and opened with a browser to view the webpage.

You can enter them into a simple text editor, such as Notepad. Once you create the page properly, it can then be saved and opened with a browser to view the webpage.

You can enter them into a simple text editor, such as Notepad. Once you create the page properly, it can then be saved and opened with a browser to view the webpage.

You can enter them into a simple text editor, such as Notepad. Once you create the page properly, it can then be saved and opened with a browser to view the webpage.

You can enter them into a simple text editor, such as Notepad. Once you create the page properly, it can then be saved and opened with a browser to view the webpage.

You can enter them into a simple text editor, such as Notepad. Once you create the page properly, it can then be saved and opened with a browser to view the webpage.

You can enter them into a simple text editor, such as Notepad. Once you create the page properly, it can then be saved and opened with a browser to view the webpage.

You can enter them into a simple text editor, such as Notepad. Once you create the page properly, it can then be saved and opened with a browser to view the webpage.

You can enter them into a simple text editor, such as Notepad. Once you create the page properly, it can then be saved and opened with a browser to view the webpage.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

HTML code generators are found all over the internet and tinypic.com is one of the best. The link below leads to a superb learning resource.

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

There are many places where you could enter a code on your computer including the text bar. You could also enter codes in special boxes on specific web pages.

This answer is:
User Avatar

User Avatar

Wiki User

15y ago

BODY

BACKGROUND="paper.gif"

BGCOLOR="#FFFFFF"

TEXT="#000000"

LINK="#0000FF"

VLINK="#FF66FF"

ALINK="#FF0000"

>

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

You enter a HTML code in a text editor. IDE's can also be used to enter HTML codes.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

You can enter them into a simple text editor, such as Notepad. Once you create the page properly, it can then be saved and opened with a browser to view the webpage.

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

A HTML editor, notepad, or notepad++.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Where do you type in HTML code to make a page?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What does doctype HTML public mean?

In HTML, the &lt;!DOC TYPE&gt; means the type of HTML coding you are using. There are many different versions of HTML. This part of the code tells the web-browser how to format the page.


What is the HTML code for an asterisk?

It depends. In Unicode, its U+002A. If the page is in ASCII, then is 0x2A. But you shouldn't need an HTML entity. You should be about to just type it in *


How do you access HTML?

You don't access HTML as such. You code it and run it. Open Notepad. Type in &lt;html&gt;hello&lt;/html&gt;. Go to save, change the type to all. Name your page index.htm somewhere on your computer. Save it. Now go to the location and click on the webpage. You've just 'accessed' and coded HTML.


What is the HTML code needed for a website that displays Hello World?

No code is needed. If you wanted to, you could just make a blank HTML page and write "Hello world" on it with out any HTML code. Tumudracs improved answer: If you want to be a true HTML coder here is the code: &lt;HTML&gt; &lt;head&gt; &lt;title&gt; Hello World &lt;/title&gt; &lt;/head&gt; &lt;body&gt; Hello World &lt;/body&gt; &lt;/HTML&gt; If you wanna get technical, it would be &lt;! DOCTYPE HTML PUBLIC "-//W3C DTD HTML 4.01//EN" "http://www.w3c.org/TR/html14/strict.dtd"&gt; &lt;HTML&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/HTML; charset=iso-8859-1"&gt; &lt;title&gt;Hello World&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;p&gt; Hello World &lt;/p&gt; &lt;/body&gt; &lt;/HTML&gt;


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.

Related questions

How can you find if your computer is HTML?

HTML is not a type of computer. HTML (HyperText Markup Language) is a common markup language (computer code) that is used to make webpages. Web browsers like Internet Explorer are used to interpret and read these HTML code in an HTML file (a web page) so that the layout of the page with its texts and images is displaced to you.


What does doctype HTML public mean?

In HTML, the &lt;!DOC TYPE&gt; means the type of HTML coding you are using. There are many different versions of HTML. This part of the code tells the web-browser how to format the page.


What is the HTML code for an asterisk?

It depends. In Unicode, its U+002A. If the page is in ASCII, then is 0x2A. But you shouldn't need an HTML entity. You should be about to just type it in *


What type of business uses HTML?

Any business that wants to have a Web page. The people at the business may not actually code the page, but someone does. Every industry on the planet uses HTML for something.


How do you access HTML?

You don't access HTML as such. You code it and run it. Open Notepad. Type in &lt;html&gt;hello&lt;/html&gt;. Go to save, change the type to all. Name your page index.htm somewhere on your computer. Save it. Now go to the location and click on the webpage. You've just 'accessed' and coded HTML.


What is the HTML code needed for a website that displays Hello World?

No code is needed. If you wanted to, you could just make a blank HTML page and write "Hello world" on it with out any HTML code. Tumudracs improved answer: If you want to be a true HTML coder here is the code: &lt;HTML&gt; &lt;head&gt; &lt;title&gt; Hello World &lt;/title&gt; &lt;/head&gt; &lt;body&gt; Hello World &lt;/body&gt; &lt;/HTML&gt; If you wanna get technical, it would be &lt;! DOCTYPE HTML PUBLIC "-//W3C DTD HTML 4.01//EN" "http://www.w3c.org/TR/html14/strict.dtd"&gt; &lt;HTML&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/HTML; charset=iso-8859-1"&gt; &lt;title&gt;Hello World&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;p&gt; Hello World &lt;/p&gt; &lt;/body&gt; &lt;/HTML&gt;


How do you make a HTML tag?

You type a less than sign, then the name of the tag and then a greater than symbol. There are lots of HTML tags, for different purposes. The tag that starts a page is this one: &lt;html&gt;


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.


What is embedding java script?

To embed JavaScript code is to include it in the HTML page. For example, this will embed the code to display an alert: &lt;script type="text/javascript"&gt; alert("Embedded alert!"); &lt;/script&gt;


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: &lt;script type="text/javascript"&gt; document.write((2+3)*2); &lt;/script&gt; put this in your HTML page and it should display as 10


What is the function of webpage design software?

Pretty much, just to make it easier and faster for the web designer to create a web page, or a web network without having to type millions of lines of HTML code, but with most web design software, you can still edited the HTML code if you can't figure out how to do something. I suggest FrontPage. FrontPage provides WYSIWYG formatting along with HTML editing, and page preview. I use it a lot. WYSIWYG is What You See Is What You Get. In other words, it means being able to edit your page while previewing it at the same time.


How do you do a heart in HTML?

To make a heart in HTML, type &amp;hearts;