Posts

Advanced Web Designing

 Advanced Web Designing We have been introduced to basic  terminologies related to creation of web  pages. The Hypertext Mark-up Language  (HTML) is an evolving language, withdifferent versions supporting different  features. HTML5 is currently used  because it supports mobile technology. The major browsers are Google Chrome,  MozillaFirefox, Microsoft Edge, Safari,  Opera and Apple support the features of  HTML5. 1.2 Forms in HTML5 In eleventh standard we have studied  different controls related to form like text,  radio, checkbox, submit, reset, select and  textarea. These controls are used to collect  different kinds of user inputs, such as  contact details like name, address, single  or multiple options from group of options,  as well as clearing and submitting data  etc. HTML5 has introduced additional  form controls which can also be used for  validation purpose.    HTML5 advan...

Multi level list

 Multi level list : <!DOCTYPE html> <html > <head> <title>nested list</title> </head> <body> <h3> Multi-level list Nested List</h3> <ul> <li>Daily computing</li> <li>Web design</li> <ol> <li>html 5</li> <li>hyperlink</li> <li>Inserting Images</li> </ol> <li>Javascript</li> <ul style="list-style-type:circle"> <li>conditional structure</li> <ul style="list-style-type:square"> <li>If statment</li> <li>If else statement</li> <li>case statement</li> </ul> <li>loop statement</li> </ul> </ul> </body> </html>

Let's see an example

   Let's see an example : <!DOCTYPE html> <html><head><style> p.intro {text-align: center;color: blue} </style></head> <body> <h1 class="intro">This heading is not  affected</h1> <p class="intro">This paragraph is  blue and center-aligned.</p> </body></html>