Tuesday, July 15, 2014

Enough CSS, Lets see Lists

i think its enough for now for beginners  to know more about css now its time for you to go and search for more stuff about styles you know now how to use them its not a problem anymore so if you know the key nothing will be difficult anymore but if you have any problem i dont mind to give more stuff about css and styles so for now lets start with something new which is lists they are very important if we want to show some of our products or information about our website
Lists:

  • lists has 2 types ordered lists and un-ordered list the difference between them that the ordered list is like a list with numbers 1,2,3.....etc but the ordered list is just a dot points just like what i'm using now.
  • just like always lets do it in a example :
          <html>
          <head>
          </head>
          <body>
              <ul> */this tag is used to initialize an un-ordered list
                      <li> */this tag means list item the dot and the sentence with it
                        Hi this is un-ordered list
                      </li>
               </ul>
          </body>
          </html>

  • its the same of ordered list but you should change the tag it'll be <ol> and the <li> stay the same
  • i hope you get it well :)

No comments:

Post a Comment