Q1 HTML Flashcards
HTML
HyperText Markup Language
how to start html
<!DOCTYPE html>
<html>
<head>
<title>\_\_\_\_\_</title>
</head>
<body>
</body>
</html>
how to start a heading, which one is the biggest which one is the smallest?
<h1></h1>
- biggest <h6></h6> - smallest
normal text, also known as paragraph
<p>
</p>
line break
<br></br>
this attribute means list item, do you use it to start listing?
<li>, no should be used as
<ol>
<li>hi</li>
</ol>
</li>
ordered list, numbered list
<ol></ol>
unordered list, bulleted list
<ul></ul>
how to add pic
<img src= ‘paldo.jpg’>
to decrease or increase the size the pic
<img src= ‘paldo.jpg’ width= ‘250’ height= ‘250’>
to create a link to another website
<a href= ‘html’>title</a>
anchor
<a></a>
table head
<th></th>
<img ___ =>
src
to put data inside the table
<td></td>