SlideShare a Scribd company logo
1 of 7
HTML
Myrella Martins
Tags (etiquetas)
Palavras que servem justamente como uma
etiqueta e ajudam na hora de organizar
informações, agrupando aquelas que
receberam a mesma marcação, facilitando
encontrar outras relacionadas.
Tags headings(cabeçalhos)
• <h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
Tags para listas
Listas ordenadas
• <ol>
• <li>Coffee</li>
• <li>Tea</li>
• <li>Milk</li>
• </ol>
Listas não-ordenadas
• <ul>
• <li>Coffee</li>
• <li>Tea</li>
• <li>Milk</li>
• </ul>
Tags importantes
• <header></header>
<meta charset="UTF-8">
<meta name="description" content="Free Web tutorials">
<meta name="author" content="Hege Refsnes">
• <body></body>
• <section></section>
• <div></div>
• <footer></footer>
• <img src="smiley.gif" alt="Smiley
face" height="42" width="42">
• <a href=https://twitter.com/?lang=pt></a>
• <form action="demo_form.asp">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<input type="submit" value="Submit">
</form>
Sites para aprofundamento:

More Related Content

Viewers also liked (11)

2 html,xhtml e css
2   html,xhtml e css2   html,xhtml e css
2 html,xhtml e css
 
HTML5, JAVASCRIPT E JQUERY
HTML5, JAVASCRIPT E JQUERYHTML5, JAVASCRIPT E JQUERY
HTML5, JAVASCRIPT E JQUERY
 
3Com 3C10402B / 655-0342
3Com 3C10402B / 655-03423Com 3C10402B / 655-0342
3Com 3C10402B / 655-0342
 
Sherif Gomaa C V
Sherif Gomaa C VSherif Gomaa C V
Sherif Gomaa C V
 
Sunil sss
Sunil sssSunil sss
Sunil sss
 
Resume_Jaswinder
Resume_JaswinderResume_Jaswinder
Resume_Jaswinder
 
Michael Lutz Resume
Michael Lutz ResumeMichael Lutz Resume
Michael Lutz Resume
 
Mi pc
Mi pcMi pc
Mi pc
 
Aleksandra Marcinkowska
Aleksandra MarcinkowskaAleksandra Marcinkowska
Aleksandra Marcinkowska
 
3Com 3C16610
3Com 3C166103Com 3C16610
3Com 3C16610
 
Aula 08 sistema nervoso ok
Aula 08   sistema nervoso okAula 08   sistema nervoso ok
Aula 08 sistema nervoso ok
 

Recently uploaded

Recently uploaded (8)

ATIVIDADE 1 - ESTRUTURA DE DADOS II - 52_2024.docx
ATIVIDADE 1 - ESTRUTURA DE DADOS II - 52_2024.docxATIVIDADE 1 - ESTRUTURA DE DADOS II - 52_2024.docx
ATIVIDADE 1 - ESTRUTURA DE DADOS II - 52_2024.docx
 
ATIVIDADE 1 - GCOM - GESTÃO DA INFORMAÇÃO - 54_2024.docx
ATIVIDADE 1 - GCOM - GESTÃO DA INFORMAÇÃO - 54_2024.docxATIVIDADE 1 - GCOM - GESTÃO DA INFORMAÇÃO - 54_2024.docx
ATIVIDADE 1 - GCOM - GESTÃO DA INFORMAÇÃO - 54_2024.docx
 
Luís Kitota AWS Discovery Day Ka Solution.pdf
Luís Kitota AWS Discovery Day Ka Solution.pdfLuís Kitota AWS Discovery Day Ka Solution.pdf
Luís Kitota AWS Discovery Day Ka Solution.pdf
 
Programação Orientada a Objetos - 4 Pilares.pdf
Programação Orientada a Objetos - 4 Pilares.pdfProgramação Orientada a Objetos - 4 Pilares.pdf
Programação Orientada a Objetos - 4 Pilares.pdf
 
Padrões de Projeto: Proxy e Command com exemplo
Padrões de Projeto: Proxy e Command com exemploPadrões de Projeto: Proxy e Command com exemplo
Padrões de Projeto: Proxy e Command com exemplo
 
ATIVIDADE 1 - LOGÍSTICA EMPRESARIAL - 52_2024.docx
ATIVIDADE 1 - LOGÍSTICA EMPRESARIAL - 52_2024.docxATIVIDADE 1 - LOGÍSTICA EMPRESARIAL - 52_2024.docx
ATIVIDADE 1 - LOGÍSTICA EMPRESARIAL - 52_2024.docx
 
ATIVIDADE 1 - CUSTOS DE PRODUÇÃO - 52_2024.docx
ATIVIDADE 1 - CUSTOS DE PRODUÇÃO - 52_2024.docxATIVIDADE 1 - CUSTOS DE PRODUÇÃO - 52_2024.docx
ATIVIDADE 1 - CUSTOS DE PRODUÇÃO - 52_2024.docx
 
Boas práticas de programação com Object Calisthenics
Boas práticas de programação com Object CalisthenicsBoas práticas de programação com Object Calisthenics
Boas práticas de programação com Object Calisthenics
 

HTML - Desvendando TAGS

  • 2. Tags (etiquetas) Palavras que servem justamente como uma etiqueta e ajudam na hora de organizar informações, agrupando aquelas que receberam a mesma marcação, facilitando encontrar outras relacionadas.
  • 3. Tags headings(cabeçalhos) • <h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3> <h4>This is heading 4</h4> <h5>This is heading 5</h5> <h6>This is heading 6</h6>
  • 4. Tags para listas Listas ordenadas • <ol> • <li>Coffee</li> • <li>Tea</li> • <li>Milk</li> • </ol> Listas não-ordenadas • <ul> • <li>Coffee</li> • <li>Tea</li> • <li>Milk</li> • </ul>
  • 5. Tags importantes • <header></header> <meta charset="UTF-8"> <meta name="description" content="Free Web tutorials"> <meta name="author" content="Hege Refsnes"> • <body></body> • <section></section> • <div></div> • <footer></footer>
  • 6. • <img src="smiley.gif" alt="Smiley face" height="42" width="42"> • <a href=https://twitter.com/?lang=pt></a> • <form action="demo_form.asp"> First name: <input type="text" name="fname"><br> Last name: <input type="text" name="lname"><br> <input type="submit" value="Submit"> </form>