Codecademy/HTML

HTML Basics

polar_bear_20 2020. 11. 18. 14:42

Grammar

<body></body>

<div></div>

<p></p>

 

<span></span>

-Inline element

 

<br>

-Next line

 

<!--Description-->

-Comment

 

Unordered List

<ul>
  <li>Limes</li>
  <li>Tortillas</li>
  <li>Chicken</li>
</ul>

 

Ordered List

<ol>
  <li>Preheat the oven to 350 degrees.</li>
  <li>Mix whole wheat flour, baking soda, and salt.</li>
  <li>Cream the butter, sugar in separate bowl.</li>
  <li>Add eggs and vanilla extract to bowl.</li>
</ol>

 

Alternative Text in images

<img src="#" alt="A field of yellow sunflowers" />

 

Videos

<video src="myVideo.mp4" width="320" height="240" controls>
  Video not supported
</video>

 

Images in new page

<a href="https://en.wikipedia.org/wiki/Brown_bear" target="_blank">The Brown Bear</a>

- target="_blank"

 

Anchor usage

Link with images

HTML lang

접근성을 높이기 위함.