Skip to main content

Featured

How to write a article for better response and neat and clean code. Blogging tutorial.

How to create an awesome blog post with neat and clean code.

You can write an awesome blog post with very neat and clean code.

First of all you look for the code below.

    <main>
      <h1>Most Popular Browsers</h1>
      <p>Chrome, Firefox, and Edge are the most used browsers today.</p>
      <article>
        <h2>Google Chrome</h2>
        <p>Google Chrome is a web browser developed by Google, released in 2008. Chrome is the world's most popular web browser today!</p>
      </article>
      <article>
        <h2>Mozilla Firefox</h2>
        <p>Mozilla Firefox is an open-source web browser developed by Mozilla. Firefox has been the second most popular web browser since January, 2018.</p>
      </article>
      <article>
        <h2>Microsoft Edge</h2>
        <p>Microsoft Edge is a web browser developed by Microsoft, released in 2015. Microsoft Edge replaced Internet Explorer.</p>
      </article>
    </main>

I am not showing you preview now because you will get it soon.

First of all notice the tags used in above code. These tags are not creating a bold effect in your website but can make your website's code amazing and you can access it from css and js very easily.

Tags::--

    <main>
    <article>
    <h1>
    <p>
    <h2>

 


Tips for creating such websites.

  1. You can use div tag or main tag to cover an all website's article.
  2. The next is you can use article tag to cover all the posts.
  3. The next is you can use H1 tag for your heading.
  4. The next is you can use H2 tag for important texts.
  5. You can use p tag to cover your post's article at all.

Check our another blog post for getting another knowledge.


So let's preview the above block of code.

Most Popular Browsers

Chrome, Firefox, and Edge are the most used browsers today.

Google Chrome

Google Chrome is a web browser developed by Google, released in 2008. Chrome is the world's most popular web browser today!

Mozilla Firefox

Mozilla Firefox is an open-source web browser developed by Mozilla. Firefox has been the second most popular web browser since January, 2018.

Microsoft Edge

Microsoft Edge is a web browser developed by Microsoft, released in 2015. Microsoft Edge replaced Internet Explorer.


Comments

Popular Posts