SlideShare une entreprise Scribd logo
1  sur  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

Contenu connexe

Tendances

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
 

Tendances (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
 

En vedette

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
 

En vedette (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
 

Similaire à HTML Training Course in Persian

Similaire à 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
 

Dernier

How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Scott Andery
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Hiroshi SHIBATA
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentPim van der Noll
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationKnoldus Inc.
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 

Dernier (20)

How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog Presentation
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 

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