 Call Kai
Call Kai Learn
Learn Practice Test
Practice Test Spaced Repetition
Spaced Repetition Match
Match1/28
Looks like no tags are added yet.
| Name | Mastery | Learn | Test | Matching | Spaced | 
|---|
No study sessions yet.
HTML stands for
Hyper text markup language
An visible content
< body> </body>
Biggest heading
< h1 ></h1>
Smallest heading
< h6></h6>
Paragraph
<p> </p>
Split up code
<div> </div>
Italic
< em > </em>
Bold
< strong > </strong>
Breaks
< br >
Numbered list
< ol > </ol>
Bullet list
< u l> </ul>
Images
< img src '‘ “ />
Videos
< video src =“ “> </video>
Let’s the browser know what to expect
<!DOCTYPE html>
Can hold the title and info
<head> </head>
Appears in a browser tab
<title> </title>
Used to link to other pages
<a> </a>
Help get to elements
<div id =“”>
Comment
<!— —>
All code must be between what tags
<html> </html>
New tab or window
<a href = “” target =“_blank”> </a>
Used for any kind of list
<li> </li>
Everything in a table must be in
<table> </table>
Add a row
<tr> </tr>
Add data to a row
<td> </td>
Table heading
<th> </th>
Spam columns
<td colspan=“”>
Spam rows
<td rowspan=“”>
Tables can be split into 3 groups
<thead> <tbody> <tfoot> with closing tags