HTML & CSS
380 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
πŸ“Œ Computer science is
the study of computers 
and computing as well as their theoretical and practical applications.

πŸ“Œ Computer science applies the principles of mathematics, engineering, and logic to a plethora of functions, including algorithm formulation, software and hardware development, and artificial intelligence.

@Computer_science_course
"www.britannica. com"
#SEO
Search engine optimization is the process of improving the quality and quantity of website traffic to a website or a web page from search engines. SEO targets unpaid traffic rather than direct traffic or paid traffic. 

@SilentLesson
1. <!DOCTYPE html>

You'll need this tag at the beginning of every HTML document you create. It ensures that a browser knows that it's reading HTML, and that it expects HTML5, the latest version.
2. <html>

This is another tag that tells a browser that it's reading HTML. The <html> tag goes straight after the DOCTYPE tag, and you close it with a
</html> tag right at the end of your file. Everything else in your document goes between these tags.