Front End Technology
Front End Technology
pages. Here are some of the essential HTML tags you might need:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
</body>
</html>
HTML (HyperText Markup Language) is the standard markup language used to create web
pages. Here are some of the essential HTML tags you might need:
Basic Structure
Text Content
● <h1> to <h6>: Header tags, with <h1> being the highest level.
● <p>: Paragraph.
● <pre> : Presized Text
● <br>: Line break.
● <hr>: Horizontal rule.
● <span>: Inline container for text.
● <div>: Block-level container for content.
Formatting
Lists
● <table>: Table.
● <caption>: Table caption.
● <tr>: Table row.
● <th>: Table header cell.
● <td>: Table data cell.
● <thead>: Group header content in a table.
● <tbody>: Group body content in a table.
● <tfoot>: Group footer content in a table.
Forms
Multimedia
● <img>: Image.
● <audio>: Audio content.
● <video>: Video content.
● <source>: Multiple media resources for <audio> or <video>.
● <track>: Text tracks for <video> or <audio>.
Embedded Content
Scripting
Interactive Elements
Document Metadata
● <base>: Specifies the base URL for all relative URLs in a document.
● <link>: Defines a relationship between the current document and an external resource
(commonly used to link to stylesheets).
Semantic Elements
Web Components
● <template>: Container for content that should be hidden when the page loads.
● <slot>: Placeholder inside a web component that you can fill with your own markup.
● <shadow>: Shadow DOM.
Embedded Content
These tags cover a broad spectrum of HTML capabilities, from basic structure and content to
complex interactions and multimedia handling.