answersLogoWhite

0

Example of webpage in HTML

User Avatar

Anonymous

15y ago
Updated: 8/17/2019

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:

<html>

<head>

<title>THE TITLE OF THE PAGE</title>

</head>

<body>

<p>Hello, This Is An Example Page</p>

<br> <br>

<p>This Is Another Paragraph</p>

<p>And So Is This</p>

</body>

</html>

As you can see, HTML pages work around tags. (E.g. <html> and </html>)

----------------------------------

Some basic tags:

<html> & </html> -- start and end of the page

<head> & </head> -- properties hidden to the user, such as page title

<body> & </bdoy> -- the page's body, the actual website the user will see

<title> & </title> -- page title, this has to be inside the <head> section

<br> -- line break (like pressing enter)

<p> & </p> -- a paragraph of text

----------------------------------

For examples with clear HTML code, see related links.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is basic HTML code?

Below is an example of a very basic webpage: &lt;html&gt; &lt;head&gt; &lt;title&gt;My First Webpage&lt;/title&gt; &lt;/head&gt; &lt;body bgcolor="yellow"&gt; &lt;p&gt;This is a yellow webpage&lt;/p&gt; &lt;/body&gt; &lt;/html&gt;


What is a HTML webpage?

A HTML Webpage is a page created on HTML. It runs on browser and co-ordinates with web.


How do you publish a webpage made of HTML codes?

it is very simple only you have to do is after writing html codes save the file with the extension .html example=web.html


What is an HTML webpage?

An HTML webpage is a collection of HTML tags. The tags are arranged in a proper way to create a web page.


What is the code of HTML of webpage?

HTML in a webpage is the basis of formation of it. It uses tags to define it's usage.


How do you add HTML code into a webpage?

HTML codes could be easily added to a webpage for the functionality. Dynamic web pages can made with HTML only.


How do you evaluate the design of a webpage?

You can evaluate the design of a webpage by it's HTML code. HTML provides all the designing of the page.


Where does webpage save?

it is saved as a html


How can create webpage?

First you have to start with the basic layout of a webpage: from this you can do most things such as change the background colour or add text to the webpage. &lt;html&gt; &lt;body bgcolor="blue"&gt; &lt;font face="Arial" color="white" size="8"&gt; &lt;p&gt;This is a piece of example text&lt;/P&gt;&lt;/font&gt; &lt;/body&gt; &lt;/html&gt;


How do you upload html webpage to domain?

To upload HTML webpage to domain , you have to purchase a server. Purchasing it will give you the authority to make it live.


How HTML tags needed to create a basic webpage?

HTML tags can be made to create a basic webpage. The basic tags with some text can make a webpage in basic format.


How does hmtl function?

HTML basically tells the computer what to do. it does this by using codes embedded in the &lt;&gt; To start out an HTML command you have to type &lt;HTML&gt; to end an HTML command you have to type the same command as the first, but put a / in front of the command &lt;/HTML&gt;. other than that its basically English, if you want to title you page, you type &lt;title&gt;. Example: &lt;HTML&gt; &lt;Title&gt;Basic Webpage&lt;/Title&gt; &lt;body&gt; &lt;p&gt; Hello World, this is a basic webpage using HTML &lt;/p&gt; &lt;/body&gt; &lt;/HTML&gt;