SlideShare uma empresa Scribd logo
1 de 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:

Mais conteúdo relacionado

Destaque

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

Tags HTML guia

  • 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>