codeharborhub.github.io icon indicating copy to clipboard operation
codeharborhub.github.io copied to clipboard

HTML Tutorials

Open ajay-dhangar opened this issue 1 year ago • 10 comments

  • [ ] Introduction to HTML

    • [x] #27
    • [x] #28
    • [x] #29
    • [x] #31
  • [ ] 2. HTML Basics

    • [x] #37
    • [x] #36
    • HTML attributes and values
    • [ ] HTML document structure: <!DOCTYPE>, <html>, <head>, <title>, <body>
  • [x] #105

    • [ ] Headings (<h1> to <h6>)
    • [ ] Paragraphs (<p>)
    • [ ] Text formatting: bold (<strong>), italic (<em>), underline (<u>), strikethrough (<s>)
  • [x] #106

    • [ ] Ordered lists (<;ol>)
    • [ ] Unordered lists (<ul>)
    • [ ] Definition lists (<dl>)
    • [ ] List item attributes
  • [x] #104

    • [ ] Creating hyperlinks (<a>)
    • [ ] Linking to external and internal resources
    • [ ] Link attributes: href, target, rel
  • [x] #46

    • [x] #43
    • [x] #45
    • [x] #44
  • [x] #47

    • [ ] Creating tables (<table>)
    • [ ] Table structure: rows (<tr>), columns (<td>), headers (<th>)
    • [ ] Table attributes: border, cellpadding, cellspacing
    • [ ] Table captions and summaries
  • [x] #48

    • [ ] Building forms (<form>)
    • [ ] Form input elements: text, password, checkbox, radio, select, textarea
    • [ ] Form attributes: action, method, enctype
    • [ ] Form validation techniques
  • [x] #49

    • [ ] Understanding semantic HTML
    • [ ] Semantic HTML5 elements: header, footer, nav, section, article, aside
    • [ ] Benefits of using semantic HTML for accessibility and SEO
  • [x] #50

    • [ ] Adding audio and video (<audio>, <video>)
    • [ ] Embedding multimedia content from external sources
    • [ ] Multimedia attributes and controls
  • [x] #51

    • [ ] Geolocation API
    • [ ] Local Storage and Session Storage
    • [ ] Canvas and SVG graphics
  • [x] #52

    • [ ] Introduction to responsive design
    • [ ] Media queries and breakpoints
    • [ ] Flexbox and Grid layout
  • [x] #53

    • [ ] Importance of validating HTML code
    • [ ] Using W3C Validator
    • [ ] Common HTML errors and how to fix them
  • [x] #54

    • [ ] Writing clean and maintainable HTML code
    • [ ] Performance optimization techniques
    • [ ] Accessibility best practices
  • [x] #55

    • [ ] Further learning resources
    • [ ] Advanced HTML topics to explore
    • [ ] Community forums and support networks

Basic Structure For Suggestions how to write...

📁 HTML Tutorials
|
├── 📁 01_Introduction_to_HTML
|   ├── 📄 01_What_is_HTML.md
|   ├── 📄 02_Why_Learn_HTML.md
|   ├── 📄 03_Setting_up_Your_Environment.md
|   └── ...
|
├── 📁 02_HTML_Basics
|   ├── 📄 01_HTML_Syntax_and_Structure.md
|   ├── 📄 02_HTML_Elements_and_Tags.md
|   ├── 📄 03_HTML_Attributes_and_Values.md
|   └── ...
|
├── 📁 03_Text_Formatting
|   ├── 📄 01_Headings.md
|   ├── 📄 02_Paragraphs.md
|   ├── 📄 03_Text_Formatting_Bold_and_Italic.md
|   └── ...
|
├── 📁 04_Lists
|   ├── 📄 01_Ordered_Lists.md
|   ├── 📄 02_Unordered_Lists.md
|   ├── 📄 03_Definition_Lists.md
|   └── ...
|
├── 📁 05_Links_and_Anchors
|   ├── 📄 01_Creating_Hyperlinks.md
|   ├── 📄 02_Linking_to_External_and_Internal_Resources.md
|   ├── 📄 03_Link_Attributes.md
|   └── ...
|
├── 📁 06_Images
|   ├── 📄 01_Inserting_Images.md
|   ├── 📄 02_Image_Attributes.md
|   ├── 📄 03_Image_Formats_and_Optimization.md
|   └── ...
|
├── 📁 07_Tables
|   ├── 📄 01_Creating_Tables.md
|   ├── 📄 02_Table_Structure.md
|   ├── 📄 03_Table_Attributes.md
|   └── ...
|
├── 📁 08_Forms
|   ├── 📄 01_Building_Forms.md
|   ├── 📄 02_Form_Input_Elements.md
|   ├── 📄 03_Form_Attributes.md
|   └── ...
|
├── 📁 09_Semantic_HTML
|   ├── 📄 01_Understanding_Semantic_HTML.md
|   ├── 📄 02_Semantic_HTML5_Elements.md
|   └── ...
|
├── 📁 10_Multimedia
|   ├── 📄 01_Adding_Audio_and_Video.md
|   ├── 📄 02_Embedding_Multimedia_Content.md
|   └── ...
|
├── 📁 11_HTML5_APIs
|   ├── 📄 01_Geolocation_API.md
|   ├── 📄 02_Local_Storage_and_Session_Storage.md
|   ├── 📄 03_Canvas_and_SVG_Graphics.md
|   └── ...
|
├── 📁 12_Responsive_Web_Design
|   ├── 📄 01_Introduction_to_Responsive_Design.md
|   ├── 📄 02_Media_Queries_and_Breakpoints.md
|   ├── 📄 03_Flexbox_and_Grid_Layout.md
|   └── ...
|
├── 📁 13_HTML_Validation_and_Debugging
|   ├── 📄 01_Importance_of_Validating_HTML_Code.md
|   ├── 📄 02_Using_W3C_Validator.md
|   ├── 📄 03_Common_HTML_Errors_and_How_to_Fix_Them.md
|   └── ...
|
├── 📁 14_Best_Practices_and_Optimization
|   ├── 📄 01_Writing_Clean_and_Maintainable_HTML_Code.md
|   ├── 📄 02_Performance_Optimization_Techniques.md
|   ├── 📄 03_Accessibility_Best_Practices.md
|   └── ...
|
└── 📁 15_Next_Steps_and_Resources
    ├── 📄 01_Further_Learning_Resources.md
    ├── 📄 02_Advanced_HTML_Topics_to_Explore.md
    ├── 📄 03_Community_Forums_and_Support_Networks.md
    └── ...

ajay-dhangar avatar May 06 '24 16:05 ajay-dhangar

hii I want to work on the 6th Task of Images!! Can you assign it to me under GSCo'S 24

AryanAg08 avatar May 11 '24 11:05 AryanAg08

hii I want to work on the 6th Task of Images!! Can you assign it to me under GSCo'S 24

Of course! Could you please provide the description that you'd like? of #46

ajay-dhangar avatar May 11 '24 11:05 ajay-dhangar

@Ajay-Dhangar Can you assign me this task?

PrathicaShettyM avatar May 13 '24 18:05 PrathicaShettyM

@Ajay-Dhangar Can you assign me this task?

choose any topic if issue is available and not assigned anyone

ajay-dhangar avatar May 14 '24 02:05 ajay-dhangar

hii I want to work on the 5th Task of Links and Anchors!! Can you assign it to me under GSCo'S 24

AryanAg08 avatar May 14 '24 18:05 AryanAg08

hii I want to work on the 5th Task of Links and Anchors!! Can you assign it to me under GSCo'S 24

Now work on https://github.com/CodeHarborHub/codeharborhub/issues/104

ajay-dhangar avatar May 14 '24 21:05 ajay-dhangar

hii I want to work on the 5th Task of Links and Anchors!! Can you assign it to me under GSCo'S 24

Now work on #104

Hii, I guess you assigned it to someone else ?

AryanAg08 avatar May 15 '24 12:05 AryanAg08

I can work on 3,4,7th tasks under gssoc ?? Can you assign them separately to me ?

AryanAg08 avatar May 15 '24 12:05 AryanAg08

I can work on 3,4,7th tasks under gssoc ?? Can you assign them separately to me ?

can you try other as you wish because we have full Java Tutorial empty you can try any topic first create issues and then work on it

ajay-dhangar avatar May 15 '24 13:05 ajay-dhangar

hey i can work on the problem #105 and #106 kindly assign me!!

chanc2206 avatar May 16 '24 17:05 chanc2206

Hello @Ajay-Dhangar! Your issue #24 has been closed. Thank you for your contribution!

github-actions[bot] avatar Jun 05 '24 08:06 github-actions[bot]