Web development involves learning how
to create websites and web applications using coding
languages such as HTML, CSS, and JavaScript. Students begin
by understanding the structure and layout of web pages with
HTML, then style those pages with CSS to make them visually
appealing. we also learn how to add interactivity with
JavaScript, making web pages dynamic. As we progress,
we delve into responsive design, back-end development,
and more advanced concepts to build full-fledged websites.
| TAGS |
DEFINITION |
| html |
Defines the root of an HTML document. |
| head |
Contains metadata, links to stylesheets, and other information about the document. |
| body |
Contains the visible content of the HTML document. |
| title |
Sets the title of the document shown in the browser tab. |
| meta |
Provides metadata about the HTML document, such as character encoding or author. |
| link |
Defines the relationship between a document and an external resource (most often used for linking stylesheets). |
| script |
Defines client-side JavaScript or links to an external script file. |
| style |
Defines CSS styles directly in the HTML document. |
| div |
A container used to group content and structure the layout |
| span |
Used to group inline elements or text for styling |
| header |
Represents a header section of a webpage |
| footer |
Defines a footer section of a webpage. |
| section |
Defines a section in the document, often used for grouping content logically. |
| article |
Represents a self-contained, independent piece of content. |
| nav |
Defines navigation links. |
| aside |
Represents content that is tangentially related to the main content. |
| h1-h6 |
defines headings |
| p |
defines paragraph |
| a |
Defines hyperlinks |
| img |
Embeds an image in the page |
| audio |
Embeds an audio file. |
| video |
Embeds a video file. |
| source |
Specifies multiple media resources for elements like audio tags and video tags. |
| ol |
Defines an ordered (numbered) list. |
| ul |
Defines an unordered (bulleted) list. |
| li |
Defines a list item. |
| table |
Defines a table |
| tr |
Defines a row in a table |
| td |
Defines a cell in a table. |
| th |
Defines a header cell in a table |
| form |
Defines an HTML form for user input |
| input |
Defines an input field in a form. |
| button |
Defines a clickable button. |
| textarea |
Defines a multiline text input field. |
| select |
Defines a dropdown menu |
| br |
Defines a line break. |
| hr |
Defines a horizontal rule (line). |