Creating your own tags affects something?

1

I'm creating a web page creation system for people who do not have programming experience, but the organization of the page is done through tags.

For example:

<conteudo>
    <artigo class="flex quebra">
        <postagem class="completo">
            <h1>Lorem ipsum dolor.</h1>
            <h2>Lorem ipsum dolor sit amet, consectetur.</h2>
            <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Veniam corrupti atque natus.</p>
        </postagem>
        <postagem class="metade">
            <h1>Lorem ipsum dolor.</h1>
            <h2>Lorem ipsum dolor sit amet, consectetur.</h2>
            <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Veniam corrupti atque natus.</p>
        </postagem>
    </artigo>
    <lado>
        <widget>
            <h1>Lorem ipsum.</h1>
            <conteudo>
                Lorem ipsum dolor sit amet, consectetur adipisicing elit. Totam neque itaque dolor sunt, illo!
            </conteudo>
        </widget>
    </lado>
</conteudo>

I know I should have a div for each item, but as it is intended for people who have no experience, it would be easier that way. Would this in the future affect much positioning of pages in search engines?

    
asked by anonymous 14.06.2016 / 01:14

1 answer

2

There are several factors that interfere with the relevance of your page relative to others.

Starting with the "Doctype" document type, which is the first tag to be parsed in marking documents.

As quoted by @bacco, your document, as it stands, will have negative relevance, as not even one type of document has been declared.

If you declare the doctype to be html, it will not help either, since html has its own tag pattern.

In this way, you can use the tags you are using, however when thinking about relevance in search engines, you should structure your document according to the standards adopted for each type and variation of "doctype".

    
17.06.2016 / 05:53