HTML Flashcards
what is this used for <!DOCTYPE html>
to signal the browser this html is modern
what is this used for <HTML>
everything that appears on the page
what is this used for <head>
everything you do not see on the page
what is this used for <body>
everything on the page
what is this used for <h1-h6></h1-h6>
the headlines, h1 being the most important and h6 being the least
what is this used for <p>
paragraphs
what is this used for <em>, <strong></strong></em>
words in italic and in bold
what is this used for <ul>, <ol>, <li>
unordered lists, ordered lists, the subjects in the list
how do you insert images
<img></img>
how to insert links
<a> write what you want instead of the links</a>
what is the tables structure
table, thead, tr, th, header info, /th, /tr,/thead, tbody, tr, td, info, /td,/tr/tbody, /table
how to insert comments
<!--hello!-->
what is id and class
id is for specific paragraph, but class is for every paragraph,
id: inside a tag, then in style use a # and write the same thing you wrote on the tag.
class: inside a tag, then in style use a . and write the same thing you wrote on the tag.