1/20
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
HTML (Hypertext Markup Language)
Standard language used to create and structure web pages
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
HTML structure
<html>
root element of an HTML page
<head>
contains meta info about the document
<title>
specifies title for the document
<body>
visible page content
<p>
defines a paragraph
<h1>
a large heading
elements
foundation or defining
attributes
modifying
Values
specific setting or size
<hr>
horizontal line, separates elements
<a>
hyperlink
<audio></audio>
used to embed audio files
<ol></ol>
ordered list, ordered by numbers
<ul></ul>
unordered lists, bullet points
<dl>
description list, aka definition list
<tr>
table row
<th>
table header
<td>
table cell (table data)
<table>
defines the table itself