Please enable JavaScript.
Coggle requires JavaScript to display documents.
HTML (What is HTML? (HTML tells your browser where to position content,…
HTML
What is HTML?
HTML tells your browser where to position content, such as images, text, or videos. (<h>) head | (<p>) paragraph
HTML Element (<) (>) / Opening/closing Tags( <p> | </p>) / Content — The information (text or other elements) contained between the opening and closing tags of an HTML element.
Body - Only content inside the opening and closing body tags can be displayed to the screen <body> </body>
-
-
-
Attributes - Attributes are content added to the opening tag of an element and can be used in several different ways, from providing information to changing styling (id)<p>
Styling Text -
The <em> tag will generally render as italic emphasis.
The <strong> will generally render as bold
-
-
(headings, paragraphs, lists, and spans) = texts
-
Image Alts - he value of alt should be a description of the image.<img src="#" alt="A field of yellow sunflowers" />
Videos - <video src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-1/lesson-2/htmlcss1-vid_brown-bear.mp4" width="320" height="240" controls>Video not supported</video>
-
Hiperlink imagem - <a href="#contact"><img src="https://s3.amazonaws.com/codecademy-content/courses/learn-html/elements-and-structure/profile.jpg"/></a>
-
Link na mesma pagina - <ol><li><a href="#top">Top</a></li>
<li><a href="#bottom">Bottom</a></li><ol>
Tag comentário será ignorado pelo browser é só para deixar cmentário para outra pessoa que vai ver o código- <!-- This is a comment that the browser will not display. -->
-
-
-
-
-
Table Borders - table, td { border: 1px solid black; }
-
-
-
-
-
-