HTML & CSS
388 subscribers
728 photos
1 video
4 files
54 links
πŸ‘Œ HTML & CSS
@html_css_tut

πŸ‘ŒJavaScript
@javascript_tut

πŸ‘Œ PHP
@php_tut


πŸ‘ŒAll About Coding
@codingWithElias
Download Telegram
πŸš€ Thanks, guys πŸ‘¨β€πŸ’»

https://youtube.com/@CodingwithElias
How to create HTML page

1. Open a text editor: Open a text editor such as Notepad or Sublime Text.

2. Start with the HTML tag: Begin your HTML document by typing "<html>" at the top of your document.

3. Add the head section: Within the HTML tags, add the head section by typing "<head>" and "</head>".

4. Add the title: Within the head section, add the title of your webpage by typing "<title>" and "</title>".

5. Add the body section: Within the HTML tags, add the body section by typing "<body>" and "</body>".

6. Add content: Within the body section, add the content of your webpage using HTML tags such as "<h1>" for headings, "<p>" for paragraphs, and "<img>" for images.

7. Save the file: Save your file with a .html extension.

8. Open the file in a web browser: Open your HTML file in a web browser to view your webpage.

This is just a basic summary of how to create an HTML webpage. There are many more HTML tags and attributes that you can use to create more complex webpages.
@html_css_tut
Here are all the HTML5 tags with a short summary:

1. <!DOCTYPE html>: Defines the document type and version of HTML.

2. <html>: Defines the root element of an HTML document.

3. <head>: Contains metadata about the document, such as the title and links to stylesheets.

4. <title>: Defines the title of the document, which appears in the browser's title bar.

5. <body>: Contains the visible content of the document.

6. <header>: Defines a header section for a document or section.

7. <nav>: Defines a set of navigation links.

8. <main>: Defines the main content of a document.

9. <section>: Defines a section of a document.

10. <article>: Defines an independent, self-contained piece of content.

11. <aside>: Defines content that is tangentially related to the main content.

12. <footer>: Defines a footer section for a document or section.

13. <h1> to <h6>: Defines headings of different levels.

14. <p>: Defines a paragraph of text.

15. <a>: Defines a hyperlink.
@html_css_tut
16. <img>: Defines an image.

17. <ul>: Defines an unordered list.

18. <ol>: Defines an ordered list.

19. <li>: Defines a list item.

20. <table>: Defines a table.

21. <tr>: Defines a table row.

22. <td>: Defines a table cell.

23. <form>: Defines a form for user input.

24. <input>: Defines an input field.

25. <label>: Defines a label for an input field.

26. <select>: Defines a drop-down list.

27. <option>: Defines an option in a drop-down list.

28. <textarea>: Defines a multi-line input field.

29. <button>: Defines a clickable button.

30. <audio>: Defines an audio file.
@html_css_tut