SlideShare ist ein Scribd-Unternehmen logo
1 von 69
HTML -
•
     Web 2 –
 HTTP      –
           –
HTTPS      –
  FTP      –
           –
       HTML    •
World Wide Web                   •

               Web Browser                               •
  HyperText Markup Language     HTML                     •

                                                         •
                         Hyperlink                       •
World Wide Web Consortium (W3C)                          •
                Internet Engineering Task Force (IETF)
                                                         •
Web 2

        •
        •




        •

        •

        •
        •
HTTP

 HyperText Transfer Protocol HTTP          •
          Request-Responce      -   HTTP   •


                Stateless           HTTP   •

     GET POST                              •
                  HTML                     •

                            HTML           •
Web Browser   •

  HTTP                        •

HTML                          •
                HTML
                              •

   Internet Explorer          •
             Firefox
         Google Chrome
HTTPS

                                         HTTP          •
       HTTP

     Secure HTTP HTTPS                                 •
 Secure Sockets Layer SSL
                      Transport Layer Security TLS

                               HTTPS                   •
                                 Digital Certificate


       HTTPS                                           •
FTP

         File Transfer Protocol   FTP   •
  HTTP
                                  FTP
                           FTP          •

                                   –
                                   –
                      FTP               •
                 HTTP   HTML
•


•
HTML
HTML

                                                        •

                                            HTML        •
          Word   PDF                                    •

    Markup Language             Tag              HTML   •
                                         XML
                                         HTML           •
                                                        •
                                /
<tagName>tagdata here, as mush as you want </tagName>
•

                                                          –
                                                          –
                                                          –
                                                                 •

                                                                 •
<tag attribute1=“attributeValue” attribute2=“attributeValue2”>
<innerTag> some data <anotherInnerTag /> </innerTag>
</tag>
                                                                 •
XML                  •
    <html>         HTML

HTML                                 XML                  •


HTML 4.01 Strict
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
   "http://www.w3.org/TR/html4/strict.dtd">
HTML 4.01 Transitional
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
   Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"
HTML 4.01 Frameset
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
   Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
XHTML 1.0 Strict
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
XHTML 1.0 Transitional
<!DOCTYPE         html PUBLIC      "-//W3C//DTD     XHTML    1.0
   Transitional//EN"    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
   transitional.dtd">
XHTML 1.0 Frameset
<!DOCTYPE         html PUBLIC      "-//W3C//DTD     XHTML    1.0
   Frameset//EN"        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
   frameset.dtd">
XHTML 1.1 (strict)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
   "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
Head                                         HTML              •
                                                          Body

<html>
<head>
   <title> Sample Webpage </title>
</head>
<body>
   <p> hello there this is a paragraph </p>
   <p> hello again another paragraph with <b> bold </b> text! </p>
</body>
</html>
HTML             •

                            .1
          ASCII        .1

                       .2

        Unicode        .3

UTF-8
                            .2
                   Enter
HTML

  Space   whitespace                      .1
           <>&                            .2

                           &lt; <    .1
                           &gt; >    .2
                        &amp;        .3


                 HTML                     .3

              Microsoft Frontpage    .1
              Adobe Dreamweaver      .2
            ZendStudio for Eclipse   .3
HTML
HTML    •


                              HTML              •
     CSS

                                         HTML   •
                                     Comments
<!-- this is a comment! -->
                                       HTML     •
<html>

                                      HTML    •
                               HTML
                  HTML



                                              •
  “ltr”   “rtl”                       Dir –
                         rtl
 “en”     “fa”                   Lang –
<html>

<html dir='rtl' lang='fa'>
<head></head>
<body>

</body>
</html>



<html><head></head>
<body>
Hello, World! </body></html>
<head>

                              Head




                       Html

  body          head                 •
         head
<title>

                 Title




          Head

                         •
<title>

<html lang='fa'>
<head>
   <title>         </title>
</head>
<body>

</body>
</html>
<p>

                        P




                        Align –
                     Left    •
                    Right    •
                   Center    •
                   Justify   •
      RTL
            Body
<br>

       Br
<img>

                                               Img




                                                   src –
                                                   Alt –

    top, bottom, middle, left , right            Align    –
                                        Width , Height    –
                             Tooltip              Title   –
                                             Usemap       –
        Title       HTML

                                        Body
<img>

<html>
<head>
   <title>          title>
</head>
<body>
<p>                                 <br/>

<img src='image1.jpg' width='200'
align='middle'/></p>
<p>                </p>
<img src='image1.jpg' width='200'
height='200' />
</body>
</html>
<a>

                  A




      URL         href –
                 Name –
                Target –
             _blank •
            _parent •
               _self •
                     •
      Body
<a>
<html>
<body>
   <p> This is a sample paragraph. Click
   <a href='http://www.google.com'>Here</a>
   to visit Google website.
   <br/>
   <a href='http://hackersite.com/hack.html'
         title='Click me to die!'>Yahoo!</a>
   <br/><br/>
   <a href='http://somesite.com/somepage.html#anchor'>
         <img src='img.gif' />
   </a>
</body>
</html>
<b>

                                 B
                          Bold



                     Body

      small   big     i
                    css
<sup>,<sub>

                                  Sup, Sub




                             Body

              small   big     i
                            css
<hr>

                                     Hr
       Horizontal Line



                         Body

  hr                            br
<sub>,<sup>
<html>
<body>
   Some text with
   <sup>super</sup>
   text.
   <hr/>
   Some more text with
   <sub>sub</sub>
   text.
</body>
</html>
<ol>,<ul>

                                     OL,UL
  Unordered List   Ordered List



                              Body



                                          li



                                     li
<li>

                     LI
       List Item



             UL OL
<html>
<body>
   <ol>
   <li>           li>
   <li>           li>
   <li>            li>
   </ol>

   <ul>
   <li> List 1</li>
   <li> List 2</li>
   <li> List 3</li>
   </ul>
</body>
</html>
Span, Div




HTML                            •
       HTML
                        Span    •

                         Div    •
              Div
                        CSS     •
HTML

        HTML                                 •

                                         –
                                         –
                                         –


                        Table                •
 Body          Header                        •
                                Footer
                                             •
<Table>

                 Table




                 Border   –
            Cellpadding   –
            Cellspacing   –
                  Width   –


          Body
<Tr>

                                  Tr
            Table Row



                                  Align –
                                 VAlign –
                                Top    •
                             Middle    •
                             Bottom    •
                            Baseline   •


       Table,Tbody,Thead,Tfoot
<Td>

                               Td
       Table Data



                               Align   –
                              VAlign   –
                             Colspan   –
                            Rowspan    –


                    tr,th
<html>
<body>
    <table border='1'>
    <tr> <td>Cell 11</td>
           <td>Cell 12</td>
    </tr><tr>
           <td>Cell 21</td>
           <td>Cell 22</td>
    </tr></table>
    <hr/>
    <table border='1'>
    <tr> <td rowspan='2'>Cell 11 <br/>Cell 21</td>
           <td>Cell 12</td>
    </tr><tr>
           <!-- Cell 21 ommited -->
           <td>Cell 22</td>
    </tr></table>
</body>
</html>
<Tbody>

                               Tbody
          Table Body



                                  Align –
                                 VAlign –


                       Table
<Thead>

                                 Thead
          Table Header



                                    Align –
                                   VAlign –


                         Table
<Tfoot>

                                 Tfoot
          Table Footer



                                   Align –
                                  VAlign –


                         Table
<Th>

                                Th
 Table Header Data



                                 Align –
                                VAlign –


                     Thead>Tr
<html>
<body>
    <table border="1">
    <thead><tr>
           <th>Month</th>
           <th>Pays</th>
    </tr></thead><tbody><tr>
           <td>January</td>
           <td>$100</td>
    </tr><tr>
           <td>February</td>
           <td>$80</td>
    </tr></tbody><tfoot><tr>
           <td>Sum</td>
           <td>$180</td>
    </tr></tfoot></table>
</body>
</html>
Border                      •

                      CSS   •
                            •
         DOCTYPE            •

             bazitab.com    •
HTML

                             HTTP                             •
        HTML

   Submit                    HTML                             •

                       Get                                    •
                        Post Get                              •
                       URL                      Get       –

                                               Post       –

                                           Get Post           •
http://hosting.pershe.com/viewticket.php?tid=109338&c=X4jQ3Ukc
                                               c , tid Get
<form>

                            Form               HTML         •
                                   Submit
                                                  Enter

                                                            •
                      Get/Post                  Method –
                                                 Action –
                                                            •
<form></form>
<form action=„getData.php‟ method=„get‟></form>
<form action=„http://google.com/‟ method=„get‟></form>
<input>

                                   •
type

                     Button    –
                  Checkbox     –
                        File   –
                    Hidden     –
                  Password     –
          Radio       Radio    –
                       Text    –
                    Submit     –
                      Reset    –
<input>

<html><body>

<form method='get'>
<input type='checkbox'> I am a checkbox! <br/>
<input type='file'> <br/>
<input type='password' value='sth'> <br/>
<input type='radio'> Radio button! <br/>
<input type='text' value='Normal!'> <br/>
<input type='submit'> | <input type='button'>
</form>
</body></html>
<input>

    input                                        •
                                input
         Checkbox Radio           Checked –
 Checked=„Checked‟ or else
                                  Disabled   –
                password text   MaxLength    –
            password text        Readonly    –
                                      Size   –
                                     Value   –


                                    Name –
<input>

<html><body>
<form method='get'
action='http://google.com/search'>

                                   <br/>
<input text' value='Search String' />
<br/>
<input type='submit' value='Search'><br/>
</form>

</body></html>
<textarea>

                                        <textarea>        •

                                           readonly       •
                                        cols rows         •

                                                          •

                                               textarea
<textarea rows=„5‟ cols=„10‟>Hello
There</textarea>
                             textarea
                               <br/>                  HTML
<select>

               Dropdown Combo       Select       •


               Select    Mutiple                 •


           Option              Select            •
                    Selected            Option   •

 Value                  Value           Option   •
<select>

<html><body>
<select>
   <option value='Wood'>    </option>
   <option value='Iron'> </option>
   <option value='Stone'>   </option>
</select>
</body></html>
<label>,<fieldset>

                                                       •
                                             Label
                                     For Label         •
<label for=„myname‟>Enter your name:</label>
<input type=„text‟ name=„myname‟ />

        fieldset                                       •
                        Radio
<fieldset>
<input type=„radio‟><input type=„radio‟>
</fieldset><fieldset>
<input type=„radio‟><input type=„radiou‟></fieldset>
HTML                                        •
                                                         –
             CSS                              Class •
               HTML                              Id •
                              CSS
CSS                                           Style •

                                               Title •
                                                         –
                               RTL   LTR        Dir •
                                                         –
                                           Tabindex •
  Tabindex              TAB
HTML                          •

                                              CSS            Style –
                                     Javascript             Script –
                                    Head                     Meta –
                                                HTTP
                        Header                   Content       •
                        Header                 http-equiv      •
                                                    Name       •
                                                             Link –
                                                          Rel •
                                                         Href •
                                                        Type •
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
HTML   .1
                     SBCE          .2
      IE   Firefox

                                   .3

            Download.com           .4




                                   .5
IMG                                .6

Weitere ähnliche Inhalte

Was ist angesagt?

Webapp security testing
Webapp security testingWebapp security testing
Webapp security testingTomas Doran
 
Fii Practic Frontend BeeNear - laborator 1
Fii Practic Frontend BeeNear - laborator 1Fii Practic Frontend BeeNear - laborator 1
Fii Practic Frontend BeeNear - laborator 1BeeNear
 
Mongodb and Totsy - E-commerce Case Study
Mongodb and Totsy - E-commerce Case StudyMongodb and Totsy - E-commerce Case Study
Mongodb and Totsy - E-commerce Case StudyMitch Pirtle
 
Training HTML5 CSS3 Ilkom IPB
Training HTML5 CSS3 Ilkom IPBTraining HTML5 CSS3 Ilkom IPB
Training HTML5 CSS3 Ilkom IPBWahyu Putra
 
Origins and evolution of HTML and XHTML
Origins and evolution of HTML and XHTMLOrigins and evolution of HTML and XHTML
Origins and evolution of HTML and XHTMLHowpk
 
ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)
ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)
ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)Clément Wehrung
 
Hacking iBooks and ePub3 with JavaScript!
Hacking iBooks and ePub3 with JavaScript!Hacking iBooks and ePub3 with JavaScript!
Hacking iBooks and ePub3 with JavaScript!Jim McKeeth
 
Choose Your Own Adventure: SEO For Web Developers | Unified Diff
Choose Your Own Adventure: SEO For Web Developers | Unified DiffChoose Your Own Adventure: SEO For Web Developers | Unified Diff
Choose Your Own Adventure: SEO For Web Developers | Unified DiffSteve Morgan
 
Intro to html revised2
Intro to html revised2Intro to html revised2
Intro to html revised2mmvidanes29
 
LIS3353 SP12 Week 8
LIS3353 SP12 Week 8LIS3353 SP12 Week 8
LIS3353 SP12 Week 8Amanda Case
 

Was ist angesagt? (13)

Webapp security testing
Webapp security testingWebapp security testing
Webapp security testing
 
Fii Practic Frontend BeeNear - laborator 1
Fii Practic Frontend BeeNear - laborator 1Fii Practic Frontend BeeNear - laborator 1
Fii Practic Frontend BeeNear - laborator 1
 
Mongodb and Totsy - E-commerce Case Study
Mongodb and Totsy - E-commerce Case StudyMongodb and Totsy - E-commerce Case Study
Mongodb and Totsy - E-commerce Case Study
 
Training HTML5 CSS3 Ilkom IPB
Training HTML5 CSS3 Ilkom IPBTraining HTML5 CSS3 Ilkom IPB
Training HTML5 CSS3 Ilkom IPB
 
HTML5
HTML5 HTML5
HTML5
 
Origins and evolution of HTML and XHTML
Origins and evolution of HTML and XHTMLOrigins and evolution of HTML and XHTML
Origins and evolution of HTML and XHTML
 
Introduction to WEB HTML, CSS
Introduction to WEB HTML, CSSIntroduction to WEB HTML, CSS
Introduction to WEB HTML, CSS
 
ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)
ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)
ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)
 
Class1slides
Class1slidesClass1slides
Class1slides
 
Hacking iBooks and ePub3 with JavaScript!
Hacking iBooks and ePub3 with JavaScript!Hacking iBooks and ePub3 with JavaScript!
Hacking iBooks and ePub3 with JavaScript!
 
Choose Your Own Adventure: SEO For Web Developers | Unified Diff
Choose Your Own Adventure: SEO For Web Developers | Unified DiffChoose Your Own Adventure: SEO For Web Developers | Unified Diff
Choose Your Own Adventure: SEO For Web Developers | Unified Diff
 
Intro to html revised2
Intro to html revised2Intro to html revised2
Intro to html revised2
 
LIS3353 SP12 Week 8
LIS3353 SP12 Week 8LIS3353 SP12 Week 8
LIS3353 SP12 Week 8
 

Andere mochten auch

Secure Web Application Development Framework (Persian)
Secure Web Application Development Framework (Persian)Secure Web Application Development Framework (Persian)
Secure Web Application Development Framework (Persian)Abbas Naderi
 
GUI Programming Concepts in Persian
GUI Programming Concepts in PersianGUI Programming Concepts in Persian
GUI Programming Concepts in PersianAbbas Naderi
 
HTML Tutorial in Persian
HTML Tutorial in PersianHTML Tutorial in Persian
HTML Tutorial in PersianAbbas Naderi
 
University Ranking Systems
University Ranking SystemsUniversity Ranking Systems
University Ranking SystemsAbbas Naderi
 
CSS 2 Quick-start Tutorial in Persian
CSS 2  Quick-start Tutorial in PersianCSS 2  Quick-start Tutorial in Persian
CSS 2 Quick-start Tutorial in PersianAbbas Naderi
 
CodeIgniter i18n Security Flaw
CodeIgniter i18n Security FlawCodeIgniter i18n Security Flaw
CodeIgniter i18n Security FlawAbbas Naderi
 

Andere mochten auch (6)

Secure Web Application Development Framework (Persian)
Secure Web Application Development Framework (Persian)Secure Web Application Development Framework (Persian)
Secure Web Application Development Framework (Persian)
 
GUI Programming Concepts in Persian
GUI Programming Concepts in PersianGUI Programming Concepts in Persian
GUI Programming Concepts in Persian
 
HTML Tutorial in Persian
HTML Tutorial in PersianHTML Tutorial in Persian
HTML Tutorial in Persian
 
University Ranking Systems
University Ranking SystemsUniversity Ranking Systems
University Ranking Systems
 
CSS 2 Quick-start Tutorial in Persian
CSS 2  Quick-start Tutorial in PersianCSS 2  Quick-start Tutorial in Persian
CSS 2 Quick-start Tutorial in Persian
 
CodeIgniter i18n Security Flaw
CodeIgniter i18n Security FlawCodeIgniter i18n Security Flaw
CodeIgniter i18n Security Flaw
 

Ähnlich wie HTML Training Course in Persian

Ähnlich wie HTML Training Course in Persian (20)

Html5 shubelal
Html5 shubelalHtml5 shubelal
Html5 shubelal
 
HTML5 History & Features
HTML5 History & FeaturesHTML5 History & Features
HTML5 History & Features
 
Web技術の現状と将来 (Open Source Conference 2011 Tokyo Spring)
Web技術の現状と将来 (Open Source Conference 2011 Tokyo Spring)Web技術の現状と将来 (Open Source Conference 2011 Tokyo Spring)
Web技術の現状と将来 (Open Source Conference 2011 Tokyo Spring)
 
Super quick introduction to html5
Super quick introduction to html5Super quick introduction to html5
Super quick introduction to html5
 
Doctype
DoctypeDoctype
Doctype
 
HTML5, just another presentation :)
HTML5, just another presentation :)HTML5, just another presentation :)
HTML5, just another presentation :)
 
Intro to-html5
Intro to-html5Intro to-html5
Intro to-html5
 
Html 5
Html 5Html 5
Html 5
 
Looking into HTML5 + CSS3
Looking into HTML5 + CSS3Looking into HTML5 + CSS3
Looking into HTML5 + CSS3
 
Introduction to HTML5 and CSS3 (revised)
Introduction to HTML5 and CSS3 (revised)Introduction to HTML5 and CSS3 (revised)
Introduction to HTML5 and CSS3 (revised)
 
Html5 Primer
Html5 PrimerHtml5 Primer
Html5 Primer
 
Webapp security testing
Webapp security testingWebapp security testing
Webapp security testing
 
Html and Xhtml
Html and XhtmlHtml and Xhtml
Html and Xhtml
 
The web context
The web contextThe web context
The web context
 
Html
HtmlHtml
Html
 
Html5 public
Html5 publicHtml5 public
Html5 public
 
Html5
Html5Html5
Html5
 
Html5 Brown Bag
Html5 Brown BagHtml5 Brown Bag
Html5 Brown Bag
 
[2010]我有一个梦想
[2010]我有一个梦想[2010]我有一个梦想
[2010]我有一个梦想
 
Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3
 

Kürzlich hochgeladen

Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
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
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
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
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
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
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdfChristopherTHyatt
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
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
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 

Kürzlich hochgeladen (20)

Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
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)
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
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
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
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
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdf
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
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
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 

HTML Training Course in Persian

  • 2. Web 2 – HTTP – – HTTPS – FTP – – HTML •
  • 3.
  • 4. World Wide Web • Web Browser • HyperText Markup Language HTML • • Hyperlink • World Wide Web Consortium (W3C) • Internet Engineering Task Force (IETF) •
  • 5. Web 2 • • • • • •
  • 6. HTTP HyperText Transfer Protocol HTTP • Request-Responce - HTTP • Stateless HTTP • GET POST • HTML • HTML •
  • 7. Web Browser • HTTP • HTML • HTML • Internet Explorer • Firefox Google Chrome
  • 8. HTTPS HTTP • HTTP Secure HTTP HTTPS • Secure Sockets Layer SSL Transport Layer Security TLS HTTPS • Digital Certificate HTTPS •
  • 9. FTP File Transfer Protocol FTP • HTTP FTP FTP • – – FTP • HTTP HTML
  • 11. HTML
  • 12. HTML • HTML • Word PDF • Markup Language Tag HTML • XML HTML • • / <tagName>tagdata here, as mush as you want </tagName>
  • 13. – – – • • <tag attribute1=“attributeValue” attribute2=“attributeValue2”> <innerTag> some data <anotherInnerTag /> </innerTag> </tag> •
  • 14. XML • <html> HTML HTML XML • HTML 4.01 Strict <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> HTML 4.01 Transitional <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd" HTML 4.01 Frameset <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
  • 15. XHTML 1.0 Strict <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> XHTML 1.0 Transitional <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1- transitional.dtd"> XHTML 1.0 Frameset <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1- frameset.dtd"> XHTML 1.1 (strict) <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  • 16. Head HTML • Body <html> <head> <title> Sample Webpage </title> </head> <body> <p> hello there this is a paragraph </p> <p> hello again another paragraph with <b> bold </b> text! </p> </body> </html>
  • 17. HTML • .1 ASCII .1 .2 Unicode .3 UTF-8 .2 Enter
  • 18. HTML Space whitespace .1 <>& .2 &lt; < .1 &gt; > .2 &amp; .3 HTML .3 Microsoft Frontpage .1 Adobe Dreamweaver .2 ZendStudio for Eclipse .3
  • 19. HTML
  • 20. HTML • HTML • CSS HTML • Comments <!-- this is a comment! --> HTML •
  • 21. <html> HTML • HTML HTML • “ltr” “rtl” Dir – rtl “en” “fa” Lang –
  • 23. <head> Head Html body head • head
  • 24. <title> Title Head •
  • 25. <title> <html lang='fa'> <head> <title> </title> </head> <body> </body> </html>
  • 26. <p> P Align – Left • Right • Center • Justify • RTL Body
  • 27. <br> Br
  • 28. <img> Img src – Alt – top, bottom, middle, left , right Align – Width , Height – Tooltip Title – Usemap – Title HTML Body
  • 29. <img> <html> <head> <title> title> </head> <body> <p> <br/> <img src='image1.jpg' width='200' align='middle'/></p> <p> </p> <img src='image1.jpg' width='200' height='200' /> </body> </html>
  • 30. <a> A URL href – Name – Target – _blank • _parent • _self • • Body
  • 31. <a> <html> <body> <p> This is a sample paragraph. Click <a href='http://www.google.com'>Here</a> to visit Google website. <br/> <a href='http://hackersite.com/hack.html' title='Click me to die!'>Yahoo!</a> <br/><br/> <a href='http://somesite.com/somepage.html#anchor'> <img src='img.gif' /> </a> </body> </html>
  • 32. <b> B Bold Body small big i css
  • 33. <sup>,<sub> Sup, Sub Body small big i css
  • 34. <hr> Hr Horizontal Line Body hr br
  • 35. <sub>,<sup> <html> <body> Some text with <sup>super</sup> text. <hr/> Some more text with <sub>sub</sub> text. </body> </html>
  • 36. <ol>,<ul> OL,UL Unordered List Ordered List Body li li
  • 37. <li> LI List Item UL OL
  • 38. <html> <body> <ol> <li> li> <li> li> <li> li> </ol> <ul> <li> List 1</li> <li> List 2</li> <li> List 3</li> </ul> </body> </html>
  • 39. Span, Div HTML • HTML Span • Div • Div CSS •
  • 40.
  • 41. HTML HTML • – – – Table • Body Header • Footer •
  • 42. <Table> Table Border – Cellpadding – Cellspacing – Width – Body
  • 43. <Tr> Tr Table Row Align – VAlign – Top • Middle • Bottom • Baseline • Table,Tbody,Thead,Tfoot
  • 44. <Td> Td Table Data Align – VAlign – Colspan – Rowspan – tr,th
  • 45. <html> <body> <table border='1'> <tr> <td>Cell 11</td> <td>Cell 12</td> </tr><tr> <td>Cell 21</td> <td>Cell 22</td> </tr></table> <hr/> <table border='1'> <tr> <td rowspan='2'>Cell 11 <br/>Cell 21</td> <td>Cell 12</td> </tr><tr> <!-- Cell 21 ommited --> <td>Cell 22</td> </tr></table> </body> </html>
  • 46. <Tbody> Tbody Table Body Align – VAlign – Table
  • 47. <Thead> Thead Table Header Align – VAlign – Table
  • 48. <Tfoot> Tfoot Table Footer Align – VAlign – Table
  • 49. <Th> Th Table Header Data Align – VAlign – Thead>Tr
  • 50. <html> <body> <table border="1"> <thead><tr> <th>Month</th> <th>Pays</th> </tr></thead><tbody><tr> <td>January</td> <td>$100</td> </tr><tr> <td>February</td> <td>$80</td> </tr></tbody><tfoot><tr> <td>Sum</td> <td>$180</td> </tr></tfoot></table> </body> </html>
  • 51. Border • CSS • • DOCTYPE • bazitab.com •
  • 52.
  • 53.
  • 54.
  • 55. HTML HTTP • HTML Submit HTML • Get • Post Get • URL Get – Post – Get Post • http://hosting.pershe.com/viewticket.php?tid=109338&c=X4jQ3Ukc c , tid Get
  • 56. <form> Form HTML • Submit Enter • Get/Post Method – Action – • <form></form> <form action=„getData.php‟ method=„get‟></form> <form action=„http://google.com/‟ method=„get‟></form>
  • 57. <input> • type Button – Checkbox – File – Hidden – Password – Radio Radio – Text – Submit – Reset –
  • 58. <input> <html><body> <form method='get'> <input type='checkbox'> I am a checkbox! <br/> <input type='file'> <br/> <input type='password' value='sth'> <br/> <input type='radio'> Radio button! <br/> <input type='text' value='Normal!'> <br/> <input type='submit'> | <input type='button'> </form> </body></html>
  • 59. <input> input • input Checkbox Radio Checked – Checked=„Checked‟ or else Disabled – password text MaxLength – password text Readonly – Size – Value – Name –
  • 60. <input> <html><body> <form method='get' action='http://google.com/search'> <br/> <input text' value='Search String' /> <br/> <input type='submit' value='Search'><br/> </form> </body></html>
  • 61. <textarea> <textarea> • readonly • cols rows • • textarea <textarea rows=„5‟ cols=„10‟>Hello There</textarea> textarea <br/> HTML
  • 62. <select> Dropdown Combo Select • Select Mutiple • Option Select • Selected Option • Value Value Option •
  • 63. <select> <html><body> <select> <option value='Wood'> </option> <option value='Iron'> </option> <option value='Stone'> </option> </select> </body></html>
  • 64. <label>,<fieldset> • Label For Label • <label for=„myname‟>Enter your name:</label> <input type=„text‟ name=„myname‟ /> fieldset • Radio <fieldset> <input type=„radio‟><input type=„radio‟> </fieldset><fieldset> <input type=„radio‟><input type=„radiou‟></fieldset>
  • 65.
  • 66. HTML • – CSS Class • HTML Id • CSS CSS Style • Title • – RTL LTR Dir • – Tabindex • Tabindex TAB
  • 67. HTML • CSS Style – Javascript Script – Head Meta – HTTP Header Content • Header http-equiv • Name • Link – Rel • Href • Type • <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
  • 68.
  • 69. HTML .1 SBCE .2 IE Firefox .3 Download.com .4 .5 IMG .6