answersLogoWhite

0


Best Answer

Sorry I tried to answer ur q, then I realized i messed up, I went back and tried to edit it, it thought my HTML code was for it to read, and not you. but if you want me to discuss the topic with you, I might be able to do that in email. if u want to discuss the subject with me, leave me a message on wiki answers.

User Avatar

Wiki User

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

Wiki User

12y ago

If you want to know how to make a webpage in HTML then I've made these before but it does take some time. You need to type it (It's what I did) on wordpad or other applications for text. This is the tags that you have to type to make a webpage:

<html>

<head>

<title>Title of Page</title>

</head>

<body>

Text or other things of the page...

</body>

</html>

Notice that (1) each formatting tag appears between "less than" (<) and "greater than" (>) signs, and (2) the tags often appear in pairs, with the second tag in the pair beginning with a "slash" (/).

Here's a list of some of the basic formatting tags in HTML:

<h1>...</h1>

header, level 1 (the largest size type for a header, usually used at the beginning of a page or the start of a new section). Smaller headers are tagged with <h2>...</h2>, <h3>...</h3>, etc.

<b>...</b>

boldface text

<i>...</i>

italic text

<center>...</center>

centered text

<p>

paragraph return (inserts an extra line space between paragraphs)

Note: Any paragraph returns that you insert in your document by simply hitting the Return key on your keyboard will be ignored by a Web browser. You must use the tag <p> to create a paragraph break on the screen.

<br>

line break (no extra space)

<hr>

horizontal rule (a line running left-to-right across the page, to separate one section from the next)

<ol>...</ol>

ordered, or numbered, list. Each list item begins with the tag <li> and falls somewhere between the <ol>...</ol> tags.

<ul>...</ul>

unordered, or bulleted, list. Again, each list item begins with the tag <li>.

<a href="filename.html">...</a>

a hotlink to another file in the same folder

<a href="http://URL">...</a>

a hotlink to another site. You will have to know the Uniform Resource Locator (URL), or Web address, of any site to which you want to link your page.

<img src="image.gif">

This tag would insert an image with the filename "image.gif" on the far left side of your page.

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

You can make a webpage by some scripting language. HTML is one of the best scripting language.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you design a webpage using HTML code?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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.


How can you design a webpage using HTML since you are a begginer?

If you want to write the HTML code yourself, you'll have to take a tutorial. There are plenty tutorials available online.


How do you navigate to other page in webpage while writing code in HTML?

You can easily navigate to other page in webpage while writing code in HTML. It is done by using &lt;a&gt; tag before the element.


What is the HTML code for bullets for a webpage?

Code Example:ThisisalistThisisalist


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.


What allows us to see the html code as a webpage?

The browser is used to parse an HTML file and return a visual representation of the code as a webpage.


What code is a webpage typically written in?

HTML.


What is the basic code for creating a webpage?

HTML?


What are the tools in webpage design?

For designing a web page you must know HTML. You must also have a proper IDE to run the code.


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.


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;


Are Hyperlink not allowed in HTML files?

I'm not entirely sure what you mean because the hyperlink code itself is HTML. It will fit in an HTML webpage by using something like the code below; &lt;a href="www.example.com" target="Blank"&gt;Your Web Page&lt;/a&gt;