iOption

Advertise here
  • Amused
  • Angry
  • Annoyed
  • Awesome
  • Bemused
  • Cocky
  • Cool
  • Crazy
  • Crying
  • Depressed
  • Down
  • Drunk
  • Embarrased
  • Enraged
  • Friendly
  • Geeky
  • Godly
  • Happy
  • Hateful
  • Hungry
  • Innocent
  • Meh
  • Piratey
  • Poorly
  • Sad
  • Secret
  • Shy
  • Sneaky
  • Tired
  • Wtf
  • Results 1 to 15 of 15
    1. #1
      shopuz is offline MTV Newbie
      This user has no status.
       
      I am:
      ----
       
      Join Date
      Jul 2012
      Posts
      8
      MTV$
      12

      Types of StyleSheet with examples

      Stylesheet information can be presented in a webpage in three forms:
      1. Internal
      2. Document
      3. External

      Internal Style
      The syling codes are given along with the html element.
      eg: <a href="#" style="color:red;">Click Here</a>


      Document Style
      The style information are given in the head section of the document in the following form
      <style type ="text/css">

      h1{color:red;}
      a{text-decoration: none;}|

      </style>


      External Style
      All the css codes are kept in a file with extension .css and then a link to the file is given in the head section of the webpage.
      <head>
      <link rel="stylesheet" type="text/css" href="style.css" />
      </head>

    2. # ADS
      Advertise here Circuit advertisement
      Join Date
      My Birthday
      Posts
      Million and counting
       
    3. #2
      prabinshr4u is offline Banned
      is stay cool
       
      I am:
      Cool
       
      Join Date
      Aug 2012
      Posts
      158
      MTV$
      326

      Re: Types of StyleSheet with examples

      here is a example of how to use style sheet. remeber css file has to be created and saved then it should be called in the new page..
      <style type =”text/css”>
      H1{font-family=arial,font color=red background-color=blue}
      H2{font-family=arial,font color=black background-color=blue}
      H3{font-family=arial,font color=red background-color=black}
      </style>
      Than ,save and open new file.
      <head>
      <link tel=”style sheet” href=”directory path where the style sheet is saved” type=”text/css”>
      </head>
      <body>
      <h1>.............................................. </h1>
      <h2>.............................................. </h2>
      <h3>.............................................. </h3>
      </body>

    4. #3
      prabinshr4u is offline Banned
      is stay cool
       
      I am:
      Cool
       
      Join Date
      Aug 2012
      Posts
      158
      MTV$
      326

      Re: Types of StyleSheet with examples

      Meta tag will put in transition effect that appears on logging in or logging out of a page “page-enter” attribute will apply the transition on opening the page and “page-out” transition will apply the transition on leaving the page.
      The attribute transition =8 will create a vertical blinding transition, as you have already observed it. The attribute duration=3.5 specifies the time for the transition effect to exist.
      Ex:-
      <meta http-equiv="Page-Enter" content="RevealTrans(Draration=3.5, transition=8)" />

    5. #4
      temple760 is offline Banned
      This user has no status.
       
      I am:
      ----
       
      Join Date
      Aug 2012
      Posts
      169
      MTV$
      465

      Re: Types of StyleSheet with examples

      while talking about the style sheet there are mainly the internal and external and the document types and all are important having the features and there are many more features inside it and also there are style sheet and also there are more and more happy and more and more things whicch make the style sheet more effective

    6. #5
      Basantraj48 is offline Banned
      This user has no status.
       
      I am:
      ----
       
      Join Date
      Aug 2012
      Posts
      428
      MTV$
      556

      Re: Types of StyleSheet with examples

      A style sheet is a list of style rules that describe the style and appearance of an html document. Styles are used in a webpage to control the font size, color, etc. The Style assignment process is accomplished with the <STYLE> …</STYLE> tags. The <STYLE> …</STYLE> tags are written with in the <HEAD> …</HEAD> tags. You can group more than one style rule using the <style>……</style>tag pair unlike of applying it individually in inline Style. Each of these tags when used in the BODY of HTML code will apply the style rules.
      1. Inline Style Sheet:-
      It is applied to individual elements in the webpage.
      Syntax
      <html tag style=”property:value”>

      Example
      <HTML>
      <BODY>
      <H1 STYLE="font-family:vardana;color:red;font-style:italic">Kathmandu is the capital of Nepal</H1>
      <p style="font-family:monotype corsiva;font-size:20pt;font-weight:bold;color:green">Nepal is a beautiful country</p>
      </BODY>
      </HTML>

      2. Embedding Style Sheet:-
      We can group more than one style rule using the <style>….</style> tag within HTML code inside the head section.
      Syntax
      <Style type=“text /css”>
      tag {attribute: value; attribute:value;…..…..}
      </style>
      3. Css (Cascading style sheet):-
      It is a separate file with the extension of ‘.css’ that contains different style rules and linked to the page with <link> tag inside the <head> part of an html page.
      Syntax
      <head>
      <link rel=stylesheet href=”filename.css” type=”text/css”>
      </head>

    7. #6
      benmoriz is offline Banned
      is who wander are lost!!!
       
      I am:
      Amused
       
      Join Date
      Sep 2012
      Posts
      1,704
      MTV$
      5,031

      Re: Types of StyleSheet with examples

      Example
      <HTML>
      <BODY>
      <H1 STYLE="font-family:vardana;color:red;font-style:italic">Kathmandu is the capital of Nepal</H1>
      <p style="font-family:monotype corsiva;font-size:20pt;font-weight:bold;color:green">Nepal is a beautiful country</p>
      </BODY>
      </HTML>

      2. Embedding Style Sheet:-
      We can group more than one style rule using the <style>….</style> tag within HTML code inside the head section.
      Syntax
      <Style type=“text /css”>
      tag {attribute: value; attribute:value;…..…..}
      </style>
      3. Css (Cascading style sheet):-
      It is a separate file with the extension of ‘.css’ that contains different style rules and linked to the page with <link> tag inside the <head> part of an html page.
      Syntax
      <head>
      <link rel=stylesheet href=”filename.css” type=”text/css”>
      </head>

    8. #7
      njtboy is offline Banned
      This user has no status.
       
      I am:
      ----
       
      Join Date
      Sep 2012
      Posts
      1,129
      MTV$
      3,336

      Re: Types of StyleSheet with examples

      Stylesheet information can be presented in a webpage in three forms:
      1. Internal
      2. Document
      3. External

      Internal Style
      The syling codes are given along with the html element.
      eg: <a href="#" style="color:red;">Click Here</a>


      Document Style
      The style information are given in the head section of the document in the following form
      <style type ="text/css">

    9. #8
      Rajiv Rai is offline MTV Senior
      is www.investorposts.com
       
      I am:
      ----
       
      Join Date
      Jul 2012
      Posts
      1,890
      MTV$
      617

      Re: Types of StyleSheet with examples

      yes these three are the types of style sheet and i have use these all style sheet but let me know me can you please tell me among these three style sheet which style sheet is commonly used ?? for me i guess external so what abut you ?

    10. #9
      fshakya is offline MTV Regular
      is $*_*$
       
      I am:
      ----
       
      Join Date
      Jul 2012
      Posts
      422
      MTV$
      85

      Re: Types of StyleSheet with examples

      These style sheets makes our page more stylish and easier as well. These codes are very important and it would be great help if we remember these codes. This is easy way to put styles on the page and can be more effective as well. Thanks for sharing these style sheets types with its example as well.

    11. #10
      bimal chand is offline Banned
      is is banned for copy pasting
       
      I am:
      ----
       
      Join Date
      Oct 2012
      Posts
      340
      MTV$
      1,000

      Re: Types of StyleSheet with examples

      Stylesheet definitions created with CSS can be inserted into an HTML document in a few different ways.

      This tutorial focuses on:
      The three types of stylesheets
      Creating an internal stylesheet
      Creating an external stylesheet
      Creating an inline stylesheet
      Multiple stylesheets
      The three types of stylesheets

      There are three types of stylesheets:

      Internal - Placed right on the page whose interface it will affect.
      External - Placed in a separate file.
      Inline - Placed inside a tag it will affect.
      Creating an internal stylesheet

      Use an internal stylesheet when you want an HTML document to have a unique style. An internal stylesheet is defined using the <style> tag and goes in the head section of an HTML document.

      The <style> tag specifies the content type of a stylesheet with its type attribute which should be set to "text/css".

      Syntax:
      <style type="text/css">
      styles go here
      </style>
      Example:
      <html>
      <head>
      <style type="text/css">
      p {color: green}
      </style>
      </head>
      <body>
      <p>
      The text in this paragraph will be green.
      </p>
      <p>
      This paragraph too.
      </p>
      </body>
      </html>
      The above stylesheet definition specifies that all text declared with the <p> tag should be green.

    12. #11
      bimal chand is offline Banned
      is is banned for copy pasting
       
      I am:
      ----
       
      Join Date
      Oct 2012
      Posts
      340
      MTV$
      1,000

      Re: Types of StyleSheet with examples

      Introduction to style sheets

      Style sheets represent a major breakthrough for Web page designers, expanding their ability to improve the appearance of their pages. In the scientific environments in which the Web was conceived, people are more concerned with the content of their documents than the presentation. As people from wider walks of life discovered the Web, the limitations of HTML became a source of continuing frustration and authors were forced to sidestep HTML's stylistic limitations. While the intentions have been good -- to improve the presentation of Web pages -- the techniques for doing so have had unfortunate side effects. These techniques work for some of the people, some of the time, but not for all of the people, all of the time. There are two types of stylesheet:

      1) Internal stylesheet.
      2) External stylesheet.

    13. #12
      bimal chand is offline Banned
      is is banned for copy pasting
       
      I am:
      ----
       
      Join Date
      Oct 2012
      Posts
      340
      MTV$
      1,000

      Re: Types of StyleSheet with examples

      Cascading Style Sheets
      Style sheets fulfill the promise of separating presentation from content on the web because the visual presentation of a web page can be prescribed with style sheets while the content can rest in HTML. Although there are problems with browser implementation of CSS, style sheets are everywhere. When this course was originally written in 2000, the use of style sheets was fairly rare and <font> tags ruled. Not any more. CSS is everywhere.
      1. Internal Stylesheet.
      2. External Stylesheet

    14. #13
      sadjoker's Avatar
      sadjoker is offline MTV Regular
      is paid by mtv again
       
      I am:
      Drunk
       
      Join Date
      Sep 2012
      Location
      bhaktapur/nepal
      Posts
      416
      MTV$
      196

      Re: Types of StyleSheet with examples

      i think document style is also known as inline style sheet and the style information are given in the head section of the document in the following form
      <style type ="text/css">

      h1{color:red;}
      a{text-decoration: none;}|

      </style>

    15. #14
      paudelsonu88 is offline MTV Regular
      This user has no status.
       
      I am:
      ----
       
      Join Date
      Nov 2012
      Posts
      323
      MTV$
      863

      Re: Types of StyleSheet with examples

      Types of style sheet are classified into three categories which are differentiated depending upon its file location like internal style sheet is an HTML file which is linked with the <a href> tag, document style sheet is imported in the format o document style whereas external style sheet is created by linking with external files having the extension as .css

    16. #15
      ravi1gupta is offline MTV Regular
      This user has no status.
       
      I am:
      ----
       
      Join Date
      Jun 2013
      Posts
      456
      MTV$
      1,090

      Re: Types of StyleSheet with examples

      Types of StyleSheet is one of the part of the link element that is used to specify a style sheet and so many other stylesheet things. they are used to allow one of the type attribute such that one of the type is considered to be text,css and so many other stylesheet things.

    Thread Information

    Users Browsing this Thread

    There are currently 1 users browsing this thread. (0 members and 1 guests)

    Tags for this Thread

    Bookmarks

    Posting Permissions

    • You may not post new threads
    • You may not post replies
    • You may not post attachments
    • You may not edit your posts
    •