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
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
1. Open a text editor such as Notepad or Sublime Text.

2. Type the following code:

<!DOCTYPE html>
<html>
<body>

<h2>My First JavaScript Program</h2>

<button onclick="myFunction()">Click me</button>

<p id="demo"></p>

<script>
function myFunction() {
  document.getElementById("demo").innerHTML = "Hello World!";
}
</script>

</body>
</html>


3. Save the file with a .html extension.

4. Open the file in a web browser.

5. Click the "Click me" button.

6. You should see the text "Hello World!" appear on the screen.

This program uses JavaScript to change the text of an HTML element when a button is clicked. It's a simple example, but it demonstrates the basic structure of a JavaScript program and how it can interact with HTML elements on a web page. From here, you can continue to learn and experiment with JavaScript to create more complex and interactive programs.
@javascript_tut
HTML & CSS.pdf
18.9 MB
HTML and CSS Book πŸ“š
Dear amazing subscribers of "Coding with Elias,"πŸš€πŸ‘¨β€πŸ’»

I am thrilled and grateful to announce that our YouTube channel has reached a significant milestone of 20k subscribers! This achievement would not have been possible without your incredible support, engagement, and enthusiasm for coding and programming.

Thank you for being a part of our growing community and for joining us on this exciting journey of learning and exploring the world of coding together. Your dedication and passion for this field have been truly inspiring, and it motivates us to continue creating valuable content for you.

We started this channel with the goal of making coding accessible and enjoyable for everyone, and your unwavering support has shown us that we are on the right track. Your comments, likes, shares, and feedback have been invaluable in shaping the direction of our content and helping us improve.

We are committed to providing you with high-quality tutorials, tips, and resources to enhance your coding skills and empower you to achieve your goals. Your trust in us is something we deeply appreciate, and we will continue to work hard to deliver content that meets your expectations.

As we celebrate this milestone together, I want to express my heartfelt gratitude to each and every one of you. Your presence in our community has created an environment of collaboration, learning, and growth. I am honored to have such dedicated and passionate subscribers like you.

Please know that your support means the world to us, and we are excited to continue this journey with you. Stay tuned for more exciting content, challenges, and opportunities to expand your coding knowledge and skills.

Once again, thank you for being a part of "Coding with Elias" and for helping us reach 20k subscribers. Let's keep coding, learning, and achieving great things together!

With sincere appreciation,

Elias Yasin,
Founder of "Coding with Elias"
https://youtube.com/@CodingwithElias
Animated Login Form using HTML & CSS only | No JavaScript or jQuery
https://youtu.be/3C2cB_i9nJk?si=hQuWDsshyMvKYamv
How To Create A Complete Personal Portfolio Website Just using HTML And CSS
https://youtu.be/tjkIMVHMxDs
#HTML5 input types