jdfjds Flashcards
The standard language for creating web pages.
HTML
is the standard language for creating webpages. It is used to structure content on the web and to add elements like text, images, links, and more.
HTML
not a programming language but a markup language that defines the structure of web pages.
HTML
allows us to display content on a web browser, making it essential for any website.
It is the foundation of every webpage you visit.
HTML
Declares the document type and version of HTML being used (HTML5).
<!-- Declares the document type -->
<!DOCTYPE html>:
<!-- Contains the content of the page -->
<body>
</body>
This contains the content of the webpage that will be visible to users.
<body>
</body>
Contains metadata (e.g., title, character encoding) and is not directly visible on the page.
<head>
</head>
HTML element represents tabular data—that is, information presented in a two-dimensional table comprised of rows and columns of cells containing data.
<table>
</table>
<a>Link text</a>
Used to create hyperlinks.
Linking
img src=”image.jpg” alt=”Description”>:
Embeds an image into the webpage.
Images
element represents a list (or sequence) of items; that is, a list in which the items are intentionally ordered, such that changing the order would change the meaning of the list.
Order List (ol)
element defines a table row
<tr>
</tr>
lement defines a table header,
<th>
</th>