HTML--Hyper Text Markup Language
--HTML code can be written in any text editor
--HTML code can be executed in any browser.browser will contain html parser the html code
TAG--A TAG is a html keyword enclosed with angular bracts like
<keyword> -->opening tag
</keyword> --->closing tag
HTML code can be divided into 3parts
1)CONTAINER TAGS
---it contains both opening & closing tags
---ex) <html> </html>,<head> </head>
2)NONCONTAINER TAGS
---it will contain only opening tags & doesn't contain closing tag.
--ex) <br> , <hr>,<img>
3)SPECIAL ENTITIES
--it indicates special meaning to the HTML parser
--ex)  (space),<,>
ATTRIBUTE:
-----An option that can be used along with any html tag is known as an attribute.every attribute can contain one or more values always attribute value should be enclosed with double quotes.
ex)--<H1 align="left">
Division:
---Division tag is used to group the related things togeather i.e.., if we want to perform common settings for group of things then we will use division tag.
HYPERLINK:
----A link that diverts the user request from current location to other location is known as hyperlink..
2types of hyperlinks
1) INTERNAL HYPERLINK:
--A hyperlink created with in the same page or a hyperlink for which source are target location are present with inthe same web pages is known as internal hyperlink.
at source) <A href="#linkname:>Displaytext</A>
at target) <A name="linkname>Dosplaytext</A>
2) EXTERNAL HYPERLINK:
--A hyperlink craedted in b/w te web page or in b/w sites is known as external yperlink
TAGS
<MARQUEE> displaying te data with scrolling effect
<marquee direction="value" behaviour="value">
display data
</marquee>
<FRAME> we can divide the page into required no.of parts. Each frame is identified with a name & with out name.
- to divide the page into frames we use a tag known as frameset
---frameset will contain 2attributes
1)row attribute
2) cols attribute
CSS:Cascading Style Sheets
--CSS are used to apply the different styles to the controls or data
--css are introduced in the year of 1975 in html
-- styles are give very good and diff look for the controls or page
HTML supports 3 types of stylesheets
1)inline stylesheets
2)internal stylesheets
3)external stylesheets
--INLINE stylesheeta are used to write the styles cose with in the same tag for which we want to apply the style.
-INTERNAL stylesheets are written in headpart by using a separate tag style.
like
<style type="text/css">
style code
</style>
EXTERNAL stylesheeta sre stored in a separate file with a default extension of .css and will be linked to the html files
No comments:
Post a Comment