HTML & CSS
384 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
#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.
3. <head>

The <head> tag starts the header section of your file. The stuff that goes in here doesn't appear on your webpage. Instead, it contains metadata for search engines, and info for your browser.
4. <title>

This tag sets the title of your page. All you need to do is put your title in the tag and close it, like this (I've included the header tags, as well):
πŸ‘‡πŸ‘‡
That's the name that will be displayed as the tab title when it's opened in a browser.
5. <meta>

Like the title tag, metadata is put in the header area of your page. Metadata is primarily used by search engines, and is information about what's on your page. There are a number of different meta fields, but these are some of the most commonly used:

description---A basic description of your page.keywords---A selection of keywords applicable to your page.author---The author of your page.viewport---A tag for ensuring that your page looks good on all devices.
6. <body>

After you close the header section, you get to the body. You open this with the <body> tag, and close it with the </body> tag. That goes right at the end of your file, just before the </html> tag.

All of the content of your webpage goes in between these tags. It's as simple as it sounds:
7. <h1>

The <h1> tag defines a level-one header on your page. This will usually be the title, and there will ideally only be one on each page.

<h2> defines level-two headers such as section headers, <h3> level-three sub-headers, and so on, down to <h6>. As an example, the names of the tags in this article are level-two headers.
8. <p>
The paragraph tag starts a new paragraph. This usually inserts two line breaks.

Look, for example, at the break between the previous line and this one. That's what a <p> tag will do.
9. <br>
The line break tag inserts a single line break: