SlideShare a Scribd company logo
1 of 17
Download to read offline
             Web Development 




                      BY : 
                      KARTIK       :  http://kar2905.wordpress.com
                      PRATIK       : http://pratik3d.blogspot.com
                      SAURABH  : saurabh­suman@hotmail.com
                   
<html>
<body>
<ul>
<li>HTML ( A Fast run through) </li>
<li>MYSQL </li>
<li>PHP </li>
<li>Login Script Demonstration </li>
</ul>
</body>
</html>
   HYPER TEXT MARKUP LANGAUGE
   DEVELOPED BY  : World Wide Web 
    Consortium & WHATWG
   Type code : TEXT
   Extended from :  SGML
   Extended to :  XHTML
   Standard(s) :  W3C HTML 4.01                          
                                 W3C HTML 3.2
   In short it is the language used to design Web 
    Pages
   Use any text editor 
   Gedit, Notepad++, Notepad,..
   Save as .htm or .html extension
 A tag is : Non­hierarchical 
  keyword or term assigned to a 
  piece of information 
 <  >  ­  Opening Tag


 </ >  ­ Closing Tag
   The element content is everything 
    between the start and the end tag  
    ( <p>Hello</p> )
   Some HTML elements have empty 
    content( <br /> )
   Most HTML elements can have attributes
   Its not case sensitive  eg <p> means the 
    same as <P> . But W3C (?) recommends 
    lower case 
   <html>
   <head>
   <title>  My first web page </title>
   </head>
   <body>
   <h1>Hello everyone </h1>
   </body>
   </html>
   The <html> element defines the 
    whole HTML document.
   The element has a start tag <html> 
    and an end tag </html>
   The element content is another 
    HTML element (the body)
   The <head> element defines the 
    head of the HTML document
   The element has a start tag <head> 
    and an end tag </head>
   The element content is another 
    HTML element (title of the webpage)
   The <body> element defines the 
    body of the HTML document
   The element has a start tag <body> 
    and an end tag </body>
   The element content is another 
    HTML element (a paragraph)
   <p> This is a paragraph </p>
   <h1>This is a heading </h1>
   <h2 ,3 .. 6 > Various headings </h2,3..6>
   < a href=“google.com”>This is a link </a>
   <img src=“the source” width=“104” />
   <br/> : is used to give a line break
   <hr/> : is used to give a horizontal line
   <!­­  this is a comment ­­> 
   <b> BOLD </b>
   <i> ITALICS </i>
   <big> Big Text </big>
   This is<sub> subscript</sub> and 
    <sup>superscript</sup>
   <code>This is computer output</code>
   <strong>BOLD </strong >
   Many more tags .. 
    http://www.w3schools.com/tags/default.asp
Attributes

          HTML elements can have attributes
         Attributes provide additional information
        about the element
         Attributes are always specified in the start
        tag
         Attributes come in name/value pairs like:
        name="value"
         Standard attributes :
         class ,id , style ,title

                                  
Style Attribute

         style="background-color:yellow"
         style="font-size:10px"
         style="font-family:Times"
         style="text-align:center”
         Examples :
         <body style="background-color:yellow">
         <p style="font-family:courier new; color:red;
        font-size:20px">
         <a href=“url" style="background-
        color:red">Last Page</a>
                              
Tables

<table border="1">
  <tr>
    <th>Heading</th>
    <th>Another Heading</th>
    </tr>
    <tr>
    <td>row 1, cell 1</td>
    <td>row 1, cell 2</td>
    </tr>                    H ead in g           A n o th er H ead in g
    <tr>                     r o w 1 , c e ll 1   r o w 1 , c e ll 2
    <td>row 2, cell 1</td>
    <td>row 2, cell 2</td>   r o w 2 , c e ll 1   r o w 2 , c e ll 2
                          
    </tr> </table>
LIST
UNORDERED LIST
<ul>
                   Windows
                   Linux

<li>Windows</li>
<li>Linux</li>
</ul> 
ORDERED LIST 
<ol>               1.Windows
                   2.Linux
<li>Windows</li>
<li>Linux</li>
</ol> 
What it can do?

DEFINITION LIST
<dl>               Windows 
<dt>Windows</dt>         Vista 
                   Linux 
<dd>Vista</dd>           Fedora 
<dt>Linux</dt>
<dd>Fedora</dd>
</dl> 

More Related Content

What's hot (20)

PHPTAL with CakePHP
PHPTAL with CakePHPPHPTAL with CakePHP
PHPTAL with CakePHP
 
Html
HtmlHtml
Html
 
Base HTML & CSS
Base HTML & CSSBase HTML & CSS
Base HTML & CSS
 
3. tutorial html web desain
3. tutorial html web desain3. tutorial html web desain
3. tutorial html web desain
 
Basics tags for HTML
Basics tags for HTMLBasics tags for HTML
Basics tags for HTML
 
[Basic HTML/CSS] 0. introduction
[Basic HTML/CSS] 0. introduction[Basic HTML/CSS] 0. introduction
[Basic HTML/CSS] 0. introduction
 
HTML | Computer Science
HTML | Computer ScienceHTML | Computer Science
HTML | Computer Science
 
HTML
HTMLHTML
HTML
 
Htmlppt
Htmlppt Htmlppt
Htmlppt
 
HTML Introduction, HTML History, HTML Uses, HTML benifits
HTML Introduction, HTML History, HTML Uses, HTML benifitsHTML Introduction, HTML History, HTML Uses, HTML benifits
HTML Introduction, HTML History, HTML Uses, HTML benifits
 
Html basic
Html basicHtml basic
Html basic
 
HTML Tags
HTML TagsHTML Tags
HTML Tags
 
basic introduction of html tags
basic introduction  of html tagsbasic introduction  of html tags
basic introduction of html tags
 
HTML for Education
HTML for EducationHTML for Education
HTML for Education
 
Xml p5 Lecture Notes
Xml p5 Lecture NotesXml p5 Lecture Notes
Xml p5 Lecture Notes
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
[Basic HTML/CSS] 1. html - basic tags
[Basic HTML/CSS] 1. html - basic tags[Basic HTML/CSS] 1. html - basic tags
[Basic HTML/CSS] 1. html - basic tags
 
Html beginner
Html beginnerHtml beginner
Html beginner
 
Hyper Text Mark-up Language
Hyper Text Mark-up Language Hyper Text Mark-up Language
Hyper Text Mark-up Language
 
Jquery
JqueryJquery
Jquery
 

Similar to Web Developement Workshop (Oct 2009 -Day 1)

Similar to Web Developement Workshop (Oct 2009 -Day 1) (20)

Unit 1wt
Unit 1wtUnit 1wt
Unit 1wt
 
Unit 1wt
Unit 1wtUnit 1wt
Unit 1wt
 
Practicals it
Practicals itPracticals it
Practicals it
 
Caracteristicas Basicas De Htlm
Caracteristicas Basicas De HtlmCaracteristicas Basicas De Htlm
Caracteristicas Basicas De Htlm
 
HTML
HTMLHTML
HTML
 
Html
HtmlHtml
Html
 
Getting into HTML
Getting into HTMLGetting into HTML
Getting into HTML
 
Comp 111chp iv vi
Comp 111chp iv viComp 111chp iv vi
Comp 111chp iv vi
 
Intodcution to Html
Intodcution to HtmlIntodcution to Html
Intodcution to Html
 
INTRODUCTION FOR HTML
INTRODUCTION  FOR HTML INTRODUCTION  FOR HTML
INTRODUCTION FOR HTML
 
HTML Tutorials
HTML TutorialsHTML Tutorials
HTML Tutorials
 
HTML&CSS_notes.pdf
HTML&CSS_notes.pdfHTML&CSS_notes.pdf
HTML&CSS_notes.pdf
 
HTML.pptx
HTML.pptxHTML.pptx
HTML.pptx
 
HTML
HTMLHTML
HTML
 
utsav1.pptxjxnclbshjdcn;kJDucbnsD>NVzljfbmlzl
utsav1.pptxjxnclbshjdcn;kJDucbnsD>NVzljfbmlzlutsav1.pptxjxnclbshjdcn;kJDucbnsD>NVzljfbmlzl
utsav1.pptxjxnclbshjdcn;kJDucbnsD>NVzljfbmlzl
 
Html
HtmlHtml
Html
 
Html ppt
Html pptHtml ppt
Html ppt
 
Html 5
Html 5Html 5
Html 5
 
HyperTextMarkupLanguage.ppt
HyperTextMarkupLanguage.pptHyperTextMarkupLanguage.ppt
HyperTextMarkupLanguage.ppt
 
HTML Web design english & sinhala mix note
HTML Web design english & sinhala mix noteHTML Web design english & sinhala mix note
HTML Web design english & sinhala mix note
 

Recently uploaded

🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesBoston Institute of Analytics
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 

Recently uploaded (20)

🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 

Web Developement Workshop (Oct 2009 -Day 1)

  • 1.              Web Development  BY :  KARTIK       :  http://kar2905.wordpress.com PRATIK       : http://pratik3d.blogspot.com SAURABH  : saurabh­suman@hotmail.com    
  • 3. HYPER TEXT MARKUP LANGAUGE  DEVELOPED BY  : World Wide Web  Consortium & WHATWG  Type code : TEXT  Extended from :  SGML  Extended to :  XHTML  Standard(s) :  W3C HTML 4.01                                                   W3C HTML 3.2  In short it is the language used to design Web  Pages
  • 4. Use any text editor   Gedit, Notepad++, Notepad,..  Save as .htm or .html extension
  • 5.  A tag is : Non­hierarchical  keyword or term assigned to a  piece of information   <  >  ­  Opening Tag  </ >  ­ Closing Tag
  • 6. The element content is everything  between the start and the end tag   ( <p>Hello</p> )  Some HTML elements have empty  content( <br /> )  Most HTML elements can have attributes  Its not case sensitive  eg <p> means the  same as <P> . But W3C (?) recommends  lower case 
  • 7. <html>  <head>  <title>  My first web page </title>  </head>  <body>  <h1>Hello everyone </h1>  </body>  </html>
  • 8. The <html> element defines the  whole HTML document.  The element has a start tag <html>  and an end tag </html>  The element content is another  HTML element (the body)
  • 9. The <head> element defines the  head of the HTML document  The element has a start tag <head>  and an end tag </head>  The element content is another  HTML element (title of the webpage)
  • 10. The <body> element defines the  body of the HTML document  The element has a start tag <body>  and an end tag </body>  The element content is another  HTML element (a paragraph)
  • 11. <p> This is a paragraph </p>  <h1>This is a heading </h1>  <h2 ,3 .. 6 > Various headings </h2,3..6>  < a href=“google.com”>This is a link </a>  <img src=“the source” width=“104” />  <br/> : is used to give a line break  <hr/> : is used to give a horizontal line  <!­­  this is a comment ­­> 
  • 12. <b> BOLD </b>  <i> ITALICS </i>  <big> Big Text </big>  This is<sub> subscript</sub> and  <sup>superscript</sup>  <code>This is computer output</code>  <strong>BOLD </strong >  Many more tags ..  http://www.w3schools.com/tags/default.asp
  • 13. Attributes HTML elements can have attributes  Attributes provide additional information about the element  Attributes are always specified in the start tag  Attributes come in name/value pairs like: name="value"  Standard attributes :  class ,id , style ,title    
  • 14. Style Attribute  style="background-color:yellow"  style="font-size:10px"  style="font-family:Times"  style="text-align:center”  Examples :  <body style="background-color:yellow">  <p style="font-family:courier new; color:red; font-size:20px">  <a href=“url" style="background-   color:red">Last Page</a>  
  • 15. Tables <table border="1"> <tr> <th>Heading</th> <th>Another Heading</th> </tr> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> H ead in g A n o th er H ead in g <tr> r o w 1 , c e ll 1 r o w 1 , c e ll 2 <td>row 2, cell 1</td> <td>row 2, cell 2</td> r o w 2 , c e ll 1 r o w 2 , c e ll 2     </tr> </table>
  • 16. LIST UNORDERED LIST <ul> Windows Linux <li>Windows</li> <li>Linux</li> </ul>  ORDERED LIST  <ol> 1.Windows 2.Linux <li>Windows</li> <li>Linux</li> </ol> 
  • 17. What it can do? DEFINITION LIST <dl> Windows  <dt>Windows</dt> Vista  Linux  <dd>Vista</dd> Fedora  <dt>Linux</dt> <dd>Fedora</dd> </dl>