HTML BASIC
Here are the basics of HTML:
*HTML Structure:*
1. *DOCTYPE*: Defines the document type and HTML version.
2. *HTML*: The root element, which contains all other elements.
3. *HEAD*: Contains metadata about the document (title, charset, links to external files).
4. *BODY*: Contains the visible content of the web page.
*HTML Elements:*
1. *Tags*: Surround content to define its purpose (e.g., <p> for paragraphs).
2. *Attributes*: Add additional information to tags (e.g., <a href="(link unavailable)">).
3. *Elements*: The combination of tags and content (e.g., <p>This is a paragraph</p>).
*Basic HTML Elements:*
1. *Headings*: h1-h6 (e.g., <h1>Main Heading</h1>)
2. *Paragraphs*: p (e.g., <p>This is a paragraph</p>)
3. *Links*: a (e.g., <a href="(link unavailable)">Visit Google</a>)
4. *Images*: img (e.g., <img src="image.jpg" alt="Image Description">)
5. *Lists*: ul, ol, li (e.g., <ul><li>Item 1</li><li>Item 2</li></ul>)
6. *Forms*: form, input, button (e.g., <form><input type="text" name="name"><button>Submit</button></form>)
*HTML Attributes:*
1. *href*: Specifies the link URL (e.g., <a href="(link unavailable)">)
2. *src*: Specifies the image URL (e.g., <img src="image.jpg">)
3. *alt*: Specifies an alternative text for images (e.g., <img src="image.jpg" alt="Image Description">)
4. *title*: Specifies a tooltip text (e.g., <a href="(link unavailable)" title="Visit Google">)
*HTML Semantic Elements:*
1. *header*: Defines the header section of a web page
2. *nav*: Defines a navigation section
3. *main*: Defines the main content section
4. *section*: Defines a self-contained section
5. *footer*: Defines the footer section
These are just the basics, but it's a good starting point for learning HTML!
Comments
Post a Comment