HTML & CSS
390 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
31. <video>: Defines a video file.

32. <canvas>: Defines an area for graphics.

33. <progress>: Defines a progress bar.

34. <meter>: Defines a scalar measurement within a known range.

35. <details>: Defines additional details that the user can view or hide.

36. <summary>: Defines a summary for a <details> element.

37. <time>: Defines a date or time.

38. <datalist>: Defines a list of pre-defined options for an input field.

39. <output>: Defines the result of a calculation.

40. <figure>: Defines a self-contained piece of content, such as an image with a caption.

41. <figcaption>: Defines a caption for a <figure> element.
@html_css_tut
Here are some of the main HTML5 text formatting tags

1. <h1> to <h6>: These tags are used to create headings of different sizes. The <h1> tag is the largest heading, while the <h6> tag is the smallest.

2. <p>: This tag is used to create paragraphs of text.

3. <strong> and <em>: These tags are used to add emphasis to text. The <strong> tag is used for strong emphasis, while the <em> tag is used for emphasis.

4. <u>: This tag is used to underline text.

5. <s>: This tag is used to create strikethrough text.
@html_css_tut
6. <br>: This tag is used to create line breaks within a paragraph.

7. <hr>: This tag is used to create a horizontal line.

8. <sup> and <sub>: These tags are used to create superscript and subscript text, respectively.

9. <blockquote>: This tag is used to create a blockquote, which is a section of quoted text.

10. <cite>: This tag is used to indicate the title of a work, such as a book or article.

11. <code>: This tag is used to indicate code or programming language within a document.

12. <kbd>: This tag is used to indicate keyboard input.

13. <samp>: This tag is used to indicate sample output from a computer program.
@html_css_tut
How To Create A Complete Personal Portfolio Website Just using HTML And CSS

https://youtu.be/tjkIMVHMxDs

Pure HTML And CSS