HTML Flashcards
What is HTML used for?
Content
What tag is used for a heading?
<h1..6></h1..6>
What tag is used for paragraphs or large blocks of text?
<p>...</p>
What tag is used for short text?
<span>…</span>
What tag is used to stress emphasis?
<em>…</em>
What tag is used to stress importance?
<strong>…</strong>
How would you tag an ordered list?
<ol>
<li> Item1 </li>
<li> Item 2 </li>
</ol>
How would you tag an UNordered list
<ul>
<li> Item1 </li>
<li> Item 2 </li>
</ul>
What tag would you use for a division of text
<div>...</div>
What is nav used for?
Navigation, usually in the form of an unordered list
How would you link another site?
href=”#”
How can you create a line of code that someone can type in on the web page?
<form>
</form>