answersLogoWhite

0

How can insert image on title of an HTML page?

Updated: 8/20/2019
User Avatar

Wiki User

11y ago

Best Answer

You call it an HEADER and you put it in the upper most part of the <body> .

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How can insert image on title of an HTML page?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you insert picture from desktop to HTML page?

You don't actually insert an image into an HTML page. An HTML page can display an image from any location where the browser has access to the file. Let us assume that the image you want to display on your HTML page is image.jpg. You use the tag to tell the browser to display your image. The person looking at your HTML page needs to be able to access the file on your desktop. You normally would upload your image to the Web server, so the visiting browser can see your image. If the image is on your desktop and the browser has access to your desktop content, here is the code you would use to display your image on the Web page:


What do you first do to do HTML?

Open notepad or Dreamweaver and start typing &lt;head&gt; &lt;title&gt;Name of page&lt;/title&gt; &lt;/head&gt; &lt;body&gt; Insert Content here. &lt;/body&gt; That is your basic HTML page For more info on the subject : http://www.htmldog.com/


What is meant by title in HTML?

The title in HTML would be referring to the HTML title tag. This is a meta tag that sits at the top of your web page. The title tag is displayed at the top of your browser to indicate the name of the page you are viewing. The page title tag is also used by the search engines to label a specific page. Example: &lt;HTML&gt; &lt;head&gt; &lt;title&gt;This Page Title&lt;/title&gt; &lt;/head&gt; &lt;/HTML&gt;


What tag do you use to insert wording into the top bar of a browser?

This is done using the &lt;title&gt;&lt;/title&gt; tag set, which must appear inside a &lt;head&gt;&lt;/head&gt; tag-set: e.g. &lt;HTML&gt; &lt;head&gt; &lt;title&gt; Here is a title to display at the top of the browser. You can put anything here that explains or otherwise has relevance to your page&lt;/title&gt; &lt;/head&gt; &lt;body&gt; A bog standard HTML page &lt;/body&gt; &lt;/HTML&gt;


What are ten tag found in HTML?

Ten tags are: &lt;html&gt; Opens and closes all HTML pages. &lt;title&gt; Tells what the title of the page is. The title of this page is WikiAnswers - What are ten tag found in HTML &lt;body&gt; Encloses what you see on a web page. &lt;br&gt; Goes to the next line. &lt;p&gt; Skips a line. &lt;hr&gt; Creates a line across the page. &lt;img&gt; Inserts an image. &lt;frame&gt; Puts two or more pages into one window. &lt;a&gt; Creates a hyperlink. &lt;b&gt; Makes text bold.


How do you get handle of title of another HTML page in my page?

You can link that page into yours by anchor. Get the value into JavaScript and get it into your title.


How can you insert an image as a background if it is stored anywhere in the system?

You can display an image with HTML as long as you know the location of the image. You use the image tag like this: &lt;img src="...\anywhere\image.jpg" width="100" height="100" alt="My Image" /&gt;.


Can you insert a HTML on your profile page on WikiAnswers?

Yes however not all html tags will work.


Title in HTML?

A HTML document's title refers to the text that appears in the tabs on a surfer's browser, basically it is the name of the page. The tag to set the title goes in the HEAD section of the HTML document, you add the tag: &lt;title&gt;Your Title Goes Here&lt;/title&gt; Again, this belongs in the head, so like this: &lt;!doctype HTML&gt; &lt;HTML&gt; &lt;head&gt; &lt;title&gt;Your Title Goes Here&lt;/title&gt; &lt;/head&gt; &lt;body&gt; Page content here &lt;/body&gt; &lt;/HTML&gt;


What will be the HTML syntax of the image after copying it to a CD?

An image does not have an HTML syntax. If you copy an image from a Webpage, you save just the image file (e.g. image.jpg). You do not save any of the HTML code used to tell the browser where to locate the image to display on the page.


Example of webpage in HTML?

If you want to see an example HTML code for a web page, you can simply right click on any web page and select "display source code". In Microsoft Internet Explorer, you can click View Source in the toolbar. A Quick Example: &lt;html&gt; &lt;head&gt; &lt;title&gt;THE TITLE OF THE PAGE&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;p&gt;Hello, This Is An Example Page&lt;/p&gt; &lt;br&gt; &lt;br&gt; &lt;p&gt;This Is Another Paragraph&lt;/p&gt; &lt;p&gt;And So Is This&lt;/p&gt; &lt;/body&gt; &lt;/html&gt; As you can see, HTML pages work around tags. (E.g. &lt;html&gt; and &lt;/html&gt;) ---------------------------------- Some basic tags: &lt;html&gt; &amp; &lt;/html&gt; -- start and end of the page &lt;head&gt; &amp; &lt;/head&gt; -- properties hidden to the user, such as page title &lt;body&gt; &amp; &lt;/bdoy&gt; -- the page's body, the actual website the user will see &lt;title&gt; &amp; &lt;/title&gt; -- page title, this has to be inside the &lt;head&gt; section &lt;br&gt; -- line break (like pressing enter) &lt;p&gt; &amp; &lt;/p&gt; -- a paragraph of text ---------------------------------- For examples with clear HTML code, see related links.


How do you convert an image into an HTML page?

you don't actually make an image into a page you need to save it as a .jpeg or .gif image and then use it in an HTML document such as a Word document saved as an HTML page, or using a web design program like Dreamweaver for instance using the jpeg as a background or a gif as a web site button