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

Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your BudgetHyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your BudgetEnjoy Anytime
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxnull - The Open Security Community
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsHyundai Motor Group
 

Recently uploaded (20)

Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your BudgetHyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptxVulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
 

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>