You are on page 1of 11

WEB

DESIGNING &
DEVELOPMENT
INTRODUCTION

Web development is a broad term for


the work involved in developing a
website for the Internet.
Web design encompasses many
different skills and disciplines in the
production and maintenance of
websites.
TAGS
HTML tags are the hidden keywords within a web page that define how your web browser must format and display the content.
Most tags must have two parts, an opening and a closing part. For example, <html> is the opening tag and </html> is the closing tag.
TYPES OF TAGS
1.EMPTY TAGS
2.IMPLICIT TAGS
3. EXPLICIT TAGS
4.FORMATTING TAGS
EMPTY TAGS
Empty tags are also known as void or
unpaired tags. HTML elements with no
content are called empty elements. <br> is
anempty element without a closing tag (the
<br> tag defines a line break). Empty
elements can be "closed" in the
opening tag like this: <br />.
EXAMPLES
 BASEFONT. Base font size.
 BR. Forced line break.
 COL. Table column.
 FRAME. Subwindow.
 HR. Horizontal rule.
 IMG. Embedded image.....
IMPLICIT TAGS
Implicit tags are those that allow the browser
to choose, within limitations, how the
marked-up text will be displayed.
Header tags are actually an example of
an implicit tag, since the HTML designer has
no control over how much bigger or smaller
a header tag will be
EXPLICIT TAGS
The explicit tags are designed to do
something specific to the text, such as turn
it bold or italic. If a browser can't do what's
asked, it doesn't do anything. Explicit tags
are also often called physical tags, since
they very specifically tell the Web browser
how you want the text to physically appear.
The browser is given no choice in the
matter.
Tags Meaning
<B>, </B> Bold text
<I>, </I> Italic text
<U>, </U> Underlined text
FORMATTING TAGS
IT INCLUDE
<font>
The <font> tag is used to change the

format of the text on the web page


The <b> tag will bold the text inside the

tag.<i>
The <i> tag will italicize the text inside

the tag.<u>
The <u> tag will underline the text inside

the tag.
THANK YOU

You might also like