Frontend basics -Html & CSS (1)
Frontend development involves HTML, CSS, and JavaScript. HTML is the foundation or structure of a webpage CSS improves the design, making pages visually appealing. JavaScript makes it more interactive and dynamic. Frequently used HTML tags - – Declares the document type and version of HTML. - – The root element that wraps all content on the page. - – Contains metadata like title, styles, and scripts. - – Holds all visible content, including text, images, and links. - – Defines the webpage’s title, displayed on the browser tab. - – Creates hyperlinks to other pages or sections. - – Defines an unordered (bulleted) list. - – Defines an ordered (numbered) list. CSS properties - – A tag to include CSS rules within an HTML document. - Selectors – picks specific elements using class (.), ID (#), or element names. - color – Sets the text color (color: blue;). - background-color – Defines the background color (background-color: yellow;). - margin – Controls space around an element (margin: 10px;). - border – Adds a border around an element (border: 2px solid black;). - padding – Adds space inside an element, between content and its border (e padding: 5px;).

Frontend development involves HTML, CSS, and JavaScript.
- HTML is the foundation or structure of a webpage
- CSS improves the design, making pages visually appealing.
- JavaScript makes it more interactive and dynamic.
Frequently used HTML tags
- – Declares the document type and version of HTML.
- – The root element that wraps all content on the page.
- – Contains metadata like title, styles, and scripts.
- – Holds all visible content, including text, images, and links.
- – Defines the webpage’s title, displayed on the browser tab.
- – Creates hyperlinks to other pages or sections.
- – Defines an unordered (bulleted) list.
- – Defines an ordered (numbered) list.
CSS properties
-