HTML and CSS Tags - Genuine Technology

HTML tags:
- <html>: Defines the beginning and end of an HTML document.
- <head>: Contains the metadata of the HTML document.
- <title>: Defines the title of the HTML document.
- <body>: Contains the content of the HTML document that is visible on the web page.
- <header>: Defines a header section for a document or a section.
- <nav>: Defines a set of navigation links for a document or a section.
- <main>: Defines the main content of a document or a section.
- <article>: Defines an article or a section of an article in a document.
- <section>: Defines a section of a document.
- <aside>: Defines a section that is related to the main content of a document.
- <footer>: Defines a footer section for a document or a section.
- <h1> - <h6>: Defines headings of different levels.
- <p>: Defines a paragraph.
- <a>: Defines a hyperlink.
- <img>: Defines an image.
- <ul>: Defines an unordered list.
- <ol>: Defines an ordered list.
- <li>: Defines a list item.
- <table>: Defines a table.
- <tr>: Defines a table row.
- <td>: Defines a table cell.
- <form>: Defines a form for user input.
- <input>: Defines an input field for user input.
- <button>: Defines a clickable button.
- <div>: Defines a section of a document for styling and manipulation purposes.
CSS TAGS
- Selector: Selects an HTML element to apply CSS styles to.
- Property: Defines the property to be modified.
- Value: Sets the value of the property.
- color: Sets the color of the text.
- font-size: Sets the size of the font.
- font-family: Sets the font family of the text.
- background-color: Sets the background color of an element.
- margin: Sets the margin of an element.
- padding: Sets the padding of an element.
- border: Sets the border of an element.
- text-align: Sets the horizontal alignment of text.
- display: Sets the display property of an element.
- height: Sets the height of an element.
- width: Sets the width of an element.
- float: Sets the floating behavior of an element.
- position: Sets the positioning behavior of an element.
- top: Sets the top position of an element.
- left: Sets the left position of an element.
- z-index: Sets the stacking order of an element.
- opacity: Sets the opacity of an element.
- transition: Sets the transition properties of an element.
- box-shadow: Sets the shadow properties of an element.
- text-shadow: Sets the shadow properties of text.
- border-radius: Sets the rounded corners of an element.
- background-image: Sets the background image of an element.