<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Sanket</title>
    <description>The latest articles on DEV Community by Sanket (@teknas07).</description>
    <link>https://dev.to/teknas07</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F519181%2F821d53cc-9908-47ce-befe-612f4339fd7b.png</url>
      <title>DEV Community: Sanket</title>
      <link>https://dev.to/teknas07</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/teknas07"/>
    <language>en</language>
    <item>
      <title>HTML5 Tags and Global Attributes</title>
      <dc:creator>Sanket</dc:creator>
      <pubDate>Tue, 20 Jul 2021 05:34:46 +0000</pubDate>
      <link>https://dev.to/teknas07/html5-tags-and-global-attributes-5b6l</link>
      <guid>https://dev.to/teknas07/html5-tags-and-global-attributes-5b6l</guid>
      <description>&lt;h2&gt;
  
  
  Overview
&lt;/h2&gt;

&lt;p&gt;In this blog, I will be covering HTML5 tags and attributes which are most commonly used.&lt;/p&gt;

&lt;h2&gt;
  
  
  HTML5 Tags
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Article Tag: &lt;code&gt;&amp;lt;article&amp;gt; &amp;lt;/article&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to describe an article on the webpage, like a Blog post or a News story.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Aside Tag: &lt;code&gt;&amp;lt;aside&amp;gt; &amp;lt;/aside&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to place some content aside from the main content, mostly used to place content in the sidebar of the webpage.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Details Tag: &lt;code&gt;&amp;lt;details&amp;gt; &amp;lt;/details&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to add additional details/content which the user can view(open) or hide(close) on demand.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Dialog Tag: &lt;code&gt;&amp;lt;dialog&amp;gt; &amp;lt;/dialog&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to create a dialog box on a webpage.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Figure Tag: &lt;code&gt;&amp;lt;figure&amp;gt; &amp;lt;/figure&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to add figures like illustrations, diagrams and photos to a webpage.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;FigureCaption Tag: &lt;code&gt;&amp;lt;figcaption&amp;gt; &amp;lt;/figcaption&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to add captions to the figures.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Footer Tag: &lt;code&gt;&amp;lt;footer&amp;gt; &amp;lt;/footer&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to define the footer of the webpage.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Header Tag: &lt;code&gt;&amp;lt;header&amp;gt; &amp;lt;/header&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to define the header of the webpage. You can define multiple &lt;code&gt;&amp;lt;header&amp;gt;&lt;/code&gt; elements in a webpage but it should not be placed inside a &lt;code&gt;&amp;lt;footer&amp;gt;&lt;/code&gt;, &lt;code&gt;&amp;lt;address&amp;gt;&lt;/code&gt; or any other &lt;code&gt;&amp;lt;header&amp;gt;&lt;/code&gt; element.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Main Tag: &lt;code&gt;&amp;lt;main&amp;gt; &amp;lt;/main&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to specify the main content of a webpage and you can only define one &lt;code&gt;&amp;lt;main&amp;gt;&lt;/code&gt; element in a document.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Meter Tag: &lt;code&gt;&amp;lt;meter&amp;gt; &amp;lt;/meter&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to measure data within a known range or a fractional value.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Nav Tag: &lt;code&gt;&amp;lt;nav&amp;gt; &amp;lt;/nav&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to define a set of navigation links in a webpage.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Progress Tag: &lt;code&gt;&amp;lt;progress&amp;gt; &amp;lt;/progress&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to represent the progress of a task.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Section Tag: &lt;code&gt;&amp;lt;section&amp;gt; &amp;lt;/section&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to define a section on the webpage.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Summary Tag: &lt;code&gt;&amp;lt;summary&amp;gt; &amp;lt;/summary&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to define a heading for the &lt;code&gt;&amp;lt;details&amp;gt;&lt;/code&gt;  element.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Time Tag: &lt;code&gt;&amp;lt;time&amp;gt; &amp;lt;/time&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to define a specific time.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Word Break Tag: &lt;code&gt;&amp;lt;wbr&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to add a line break when a particular text or word is too long.&lt;/p&gt;

&lt;p&gt;Below are examples for a better understanding of the above-defined tags. You can navigate to the HTML tab to see the code snippet.&lt;/p&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/teknas07/embed/BaRBrdG?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  HTML Global Attributes
&lt;/h2&gt;

&lt;p&gt;The HTML global attributes are attributes that can be used in all HTML elements.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Access Key:  &lt;code&gt;&amp;lt;element accesskey="character"&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to specify a shortcut key to activate or focus an element. The attribute value should be a single character.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Class : &lt;code&gt;&amp;lt;element class="classname"&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to specify one or more class names for an element. It is mostly used to point a class in a stylesheet.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Content Editable : &lt;code&gt;&amp;lt;element contenteditable="true|false"&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to specify whether the content of an element is editable or not. If the attribute value is &lt;code&gt;"true"&lt;/code&gt; then it specifies that the content is editable. If it is &lt;code&gt;"false"&lt;/code&gt; then it specifies that content is not editable.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Dir : &lt;code&gt;&amp;lt;element dir="ltr|rtl|auto"&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to specify the direction of the text in an element. If the attribute value is &lt;code&gt;"ltr"&lt;/code&gt; then it specifies that the direction of text is left-to-right. If it is &lt;code&gt;"rtl"&lt;/code&gt; then the direction of text is right-to-left and if it is &lt;code&gt;"auto"&lt;/code&gt; then the browser will figure out the text direction.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Draggable : &lt;code&gt;&amp;lt;element draggable="true|false|auto"&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to specify whether an element is draggable or not. If the attribute value is &lt;code&gt;"true"&lt;/code&gt; then it specifies that the element is draggable. If it is &lt;code&gt;"false"&lt;/code&gt; then the element is not draggable and if it is &lt;code&gt;"auto"&lt;/code&gt; then it is based on the default behaviour of the browser.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Hidden : &lt;code&gt;&amp;lt;element hidden&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to specify that an element is no longer relevant. The browsers will not display elements that have a hidden attribute.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Id : &lt;code&gt;&amp;lt;element id="unique_id"&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to specify a unique id for an element. It is mostly used to point to a style in a stylesheet.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Lang : &lt;code&gt;&amp;lt;element lang="language_code"&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to specify the language of the element's content.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;SpellCheck : &lt;code&gt;&amp;lt;element spellcheck="true|false"&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to specify whether the element is to have its spelling and grammar checked or not. If the attribute value is &lt;code&gt;"true"&lt;/code&gt; then that element is to have its spelling and grammar checked. If it is &lt;code&gt;"false"&lt;/code&gt; then it is not to be checked. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Style : &lt;code&gt;&amp;lt;element style="style_definitions"&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to specify an inline CSS style for an element and will override any style set in the &lt;code&gt;&amp;lt;style&amp;gt;&lt;/code&gt; tag or in an external style sheet.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Tab Index :  &lt;code&gt;&amp;lt;element tabindex="number"&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to specify the tabbing order of an element when the &lt;code&gt;"tab"&lt;/code&gt; button is used for navigation.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Title : &lt;code&gt;&amp;lt;element title="text"&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is used to specify extra information about an element. The extra information will be displayed when the mouse hovers over the element.&lt;/p&gt;

&lt;p&gt;Below are examples for a better understanding of the above-defined attributes. You can navigate to the HTML tab to see the code snippet.&lt;/p&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/teknas07/embed/jOmmgyJ?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;




&lt;p&gt;I hope this article gave you some basic knowledge about HTML5 Tags, global attributes and how they work. Feel free to put up any queries that you may have.&lt;/p&gt;

&lt;p&gt;In my upcoming blogs, I will be covering more about HTML forms tags and some simple projects.&lt;/p&gt;

&lt;p&gt;Also, feel free to put suggestions in the comments section and give a reaction if you enjoyed reading. Connect with me on  &lt;a href="https://www.linkedin.com/in/teknas07/"&gt;LinkedIn&lt;/a&gt;  |  &lt;a href="https://twitter.com/sanket_k10"&gt;Twitter&lt;/a&gt; .&lt;/p&gt;

</description>
      <category>html</category>
      <category>webdev</category>
      <category>beginners</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Introduction To HTML - 01</title>
      <dc:creator>Sanket</dc:creator>
      <pubDate>Fri, 02 Jul 2021 10:31:30 +0000</pubDate>
      <link>https://dev.to/teknas07/introduction-to-html-01-4b5f</link>
      <guid>https://dev.to/teknas07/introduction-to-html-01-4b5f</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is HTML ?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Whenever you are planning to build anything from scratch the first thing you will do is to well -structure it right? HTML does it when you are getting started to build web pages/websites. HTML is the markup that contains all the actual stuff that a web page has. All the text on this page you’re reading right now is inside HTML tags that tell the browser how to order the content on the page.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is a HTML tag ?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The HTML tag is the combination of &amp;lt;&amp;gt; and tag-name.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;// HTML tag :
    &lt;span class="nt"&gt;&amp;lt;tagname&amp;gt;&lt;/span&gt;   

// Opening tag :
    &lt;span class="nt"&gt;&amp;lt;tagname&amp;gt;&lt;/span&gt;

// Closing tag : 
    &lt;span class="nt"&gt;&amp;lt;/tagname&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;There are two types of HTML tags :&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Opening tags&lt;/li&gt;
&lt;li&gt;Closing tags&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The only difference between opening and closing tags is the forward slash after the opening bracket of a closing tag.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What are HTML Elements ?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A HTML element is the combination of the opening tag, some content and the closing tag.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;    // HTML Element :

    &lt;span class="nt"&gt;&amp;lt;tagname&amp;gt;&lt;/span&gt; some content .. &lt;span class="nt"&gt;&amp;lt;/tagname&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;There are some elements that have no content and no closing tag. These elements are called Empty Elements.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;//Example 
&lt;span class="nt"&gt;&amp;lt;br&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  The basic structure of HTML
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="cp"&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/span&gt;             
&lt;span class="nt"&gt;&amp;lt;html&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;head&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;title&amp;gt;&lt;/span&gt;Page's Title&lt;span class="nt"&gt;&amp;lt;/title&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;link&lt;/span&gt; &lt;span class="err"&gt;.....&lt;/span&gt; &lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;script&amp;gt;&lt;/span&gt;&lt;span class="p"&gt;......&lt;/span&gt;&lt;span class="nt"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;/head&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;body&amp;gt;&lt;/span&gt;
        .
        .
        .
        .
    &lt;span class="nt"&gt;&amp;lt;/body&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/html&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;The &lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/code&gt; tag defines that this document is an HTML5 document.&lt;/li&gt;
&lt;li&gt;The &lt;code&gt;&amp;lt;html&amp;gt;&lt;/code&gt; element is the root element of an HTML page.&lt;/li&gt;
&lt;li&gt;The &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; element contains &lt;a href="https://www.w3schools.com/tags/tag_meta.asp"&gt; meta information&lt;/a&gt;  about the HTML page.&lt;/li&gt;
&lt;li&gt;The &lt;code&gt;&amp;lt;title&amp;gt;&lt;/code&gt; element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab)&lt;/li&gt;
&lt;li&gt;The &lt;code&gt;&amp;lt;link&amp;gt;&lt;/code&gt;  element is an empty element, it contains only attributes. It defines the relationship between the current document and an external resource. It is used to link to external style sheets.&lt;/li&gt;
&lt;li&gt;The &lt;code&gt;&amp;lt;script&amp;gt;&lt;/code&gt; element either contains scripting statements or points to an external script file through the src attribute. &lt;/li&gt;
&lt;li&gt;The &lt;code&gt;&amp;lt;body&amp;gt;&lt;/code&gt; element defines the document's body. It is a container that contains all the required tags and information that need to be displayed on the web page.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;What are Inline and Block Elements ?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Every HTML element has a default display value. There are two types:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Block &lt;/li&gt;
&lt;li&gt;Inline&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Block Elements:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A block element always starts on a new line. It always takes up the full width available (i.e.) it stretches out to the left and right as far as it can.&lt;/p&gt;

&lt;p&gt;Example: div, nav, heading tags etc.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Inline Elements:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;An inline element does not start on a new line. It always takes as much as width it requires.&lt;/p&gt;

&lt;p&gt;Example: button, span, input etc.&lt;/p&gt;

&lt;h2&gt;
  
  
  Different types of HTML Tags :
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1) For maintaining the document structure :&lt;/strong&gt; &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Heading Tags : &lt;code&gt;&amp;lt;h1&amp;gt; to &amp;lt;h6&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;There are 6 different heading tags.h1 tag has the largest font size whereas the h6 tag has the smallest.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Line Break Tag: &lt;code&gt;&amp;lt;br&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It is used to insert a single line break (ie) it moves to the next line. It is an empty tag which means that it has no end tag.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Division Tag : &lt;code&gt;&amp;lt;div&amp;gt; &amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It defines a division or a section in an HTML document and any sort of content can be placed inside this tag.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Paragraph Tag : &lt;code&gt;&amp;lt;p&amp;gt; &amp;lt;/p&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It defines a paragraph. Plain text can be placed inside this tag.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Span Tag:&lt;code&gt;&amp;lt;span&amp;gt; &amp;lt;/span&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It is an inline container used to add inline styles without changing the structure of the document.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Horizontal Ruler Tag: &lt;code&gt;&amp;lt;hr&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;This tag is most often displayed as a horizontal rule that is used to separate content in a webpage.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Below are examples for a better understanding of the above-defined tags. You can navigate to the HTML tab to see the code snippet.&lt;/p&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/teknas07/embed/vYmYGKE?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2) For formatting the text :&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Bold  Element: &lt;code&gt;&amp;lt;b&amp;gt; &amp;lt;/b&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It makes the text in bold.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Emphasis  Element: &lt;code&gt;&amp;lt;em&amp;gt; &amp;lt;/em&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It is used to emphasize the text and the content inside it is displayed in italic.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Code Snippet  Element: &lt;code&gt;&amp;lt;code&amp;gt; &amp;lt;/code&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;The code element is used to write code snippets. The content inside is displayed in the browser's default monospace font.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Abbreviation  Element: &lt;code&gt;&amp;lt;abbr&amp;gt; &amp;lt;abbr&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;The abbr element is used to define an abbreviation or an acronym.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Italics  Element: &lt;code&gt;&amp;lt;i&amp;gt; &amp;lt;/i&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;The content inside this element is displayed in italic.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Strong  Element: &lt;code&gt;&amp;lt;strong&amp;gt; &amp;lt;/strong&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It is used to define text with strong importance and the content inside is displayed in bold.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Mark Element : &lt;code&gt;&amp;lt;mark&amp;gt; &amp;lt;/mark&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;The mark element is used to mark or highlight the text.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Subscript  Element: &lt;code&gt;&amp;lt;sub&amp;gt;  &amp;lt;/sub&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It is used to define subscript text and the content inside it appears half a character below the normal line. It can also be used for writing formulas.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Superscript  Element: &lt;code&gt;&amp;lt;sup&amp;gt; &amp;lt;/sup&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It is used to define superscript text and the content inside it appears half a character above the normal line. It can also be used for writing footnotes.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Below are examples for a better understanding of the above-defined tags. You can navigate to the HTML tab to see the code snippet.&lt;/p&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/teknas07/embed/WNjNyLM?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3) For creating a list :&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Unordered List : &lt;code&gt;&amp;lt;ul&amp;gt; &amp;lt;/ul&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It is used to list the items in the unordered form (i.e.) the list items will be marked with bullets.It starts with the &lt;code&gt;&amp;lt;ul&amp;gt;&lt;/code&gt; tag and each list item inside this tag starts and ends with the&lt;code&gt;&amp;lt;li&amp;gt;&lt;/code&gt; tag.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ordered List : &lt;code&gt;&amp;lt;ol&amp;gt; &amp;lt;/ol&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It is used to list the items in the ordered form (i.e.) the list items will be marked with numbers.It starts with the &lt;code&gt;&amp;lt;ol&amp;gt;&lt;/code&gt; tag and each list item inside this tag starts and ends with the &lt;code&gt;&amp;lt;li&amp;gt;&lt;/code&gt; tag.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;List Item : &lt;code&gt;&amp;lt;li&amp;gt; &amp;lt;/li&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It defines a list item. It is used inside ordered and unordered lists.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Description List : &lt;code&gt;&amp;lt;dl&amp;gt; &amp;lt;/dl&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It is used to list the items along with their description. Description list uses &lt;code&gt;&amp;lt;dt&amp;gt;&lt;/code&gt; tag to define an item (also known as term) and &lt;code&gt;&amp;lt;dd&amp;gt;&lt;/code&gt;  tag to define each term.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;&amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;/code&gt; Element :&lt;/p&gt;

&lt;p&gt;It is used to define a term in a description list.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;&amp;lt;dd&amp;gt; &amp;lt;/dd&amp;gt;&lt;/code&gt; Element:&lt;/p&gt;

&lt;p&gt;It is used to describe a term in a description list.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Below are examples for a better understanding of the above-defined tags. You can navigate to the HTML tab to see the code snippet.&lt;/p&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/teknas07/embed/OJmJwqB?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4) For creating a Table :&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Table : &lt;code&gt;&amp;lt;table&amp;gt; &amp;lt;/table&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It is used to define a table in HTML.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Column Heading : &lt;code&gt;&amp;lt;th&amp;gt; &amp;lt;/th&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;This tag contains the heading information of a column. The content in the &lt;code&gt;&amp;lt;th&amp;gt;&lt;/code&gt; element is bold and centred.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Table Row : &lt;code&gt;&amp;lt;tr&amp;gt; &amp;lt;/tr&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It is used to define a row in a table. &lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Table Data : &lt;code&gt;&amp;lt;td&amp;gt; &amp;lt;/td&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It is used to write the data for a particular cell.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Caption Tag : &lt;code&gt;&amp;lt;caption&amp;gt; &amp;lt;/caption&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It is used to define a caption for a table.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Column Group : &lt;code&gt;&amp;lt;colgroup&amp;gt; &amp;lt;/colgroup&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It is used to group one or more columns in a table for formatting.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Column : &lt;code&gt;&amp;lt;col&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It specifies column properties for each column in a table.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Table Head : &lt;code&gt;&amp;lt;thead&amp;gt; &amp;lt;/thead&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It is used to group header content in a table.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Table Body : &lt;code&gt;&amp;lt;tbody&amp;gt; &amp;lt;/tbody&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It is used to group the body content in a table.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Table Footer : &lt;code&gt;&amp;lt;tfoot&amp;gt; &amp;lt;/tfoot&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It is used to group footer content in a table.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Below are examples for a better understanding of the above-defined tags. You can navigate to the HTML tab to see the code snippet.&lt;/p&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/teknas07/embed/mdmdaEz?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;I hope this article gave you some basic knowledge about what HTML is, basic  HTML Tags and how they work. Feel free to put up any queries that you may have.&lt;/p&gt;

&lt;p&gt;In my upcoming blogs, I will be covering more about HTML5 tags, attributes and some simple projects.&lt;/p&gt;

&lt;p&gt;Also, feel free to put suggestions in the comments section and give a reaction if you enjoyed reading. Connect with me on  &lt;a href="https://www.linkedin.com/in/teknas07/"&gt;LinkedIn&lt;/a&gt;  |  &lt;a href="https://twitter.com/sanket_k10"&gt;Twitter&lt;/a&gt; .&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>codenewbie</category>
      <category>html</category>
    </item>
    <item>
      <title>Getting Started with Web Development!</title>
      <dc:creator>Sanket</dc:creator>
      <pubDate>Mon, 21 Jun 2021 11:27:07 +0000</pubDate>
      <link>https://dev.to/teknas07/getting-started-with-web-development-haa</link>
      <guid>https://dev.to/teknas07/getting-started-with-web-development-haa</guid>
      <description>&lt;p&gt;Nowadays, it is very easy to find online resources when you are getting started with learning something new. You just have to google the skill you want to learn, and you will find plenty of resources online like blogs, online courses, YouTube videos, etc.&lt;/p&gt;

&lt;p&gt;If you are someone who is new to the Web development world or someone who is currently learning but facing difficulties then this blog is for you!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Let me tell you what web development is?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In today's world there are "n" number of websites and web applications present. Currently, what you are seeing or looking at is also a part of web development. Basically it refers to an application that is live on the Web.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;From where your journey starts?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;To master web development you need to know the basics of it.&lt;/p&gt;

&lt;p&gt;Generally, web development is divided into two parts:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1] Front-end development:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Front-end development mainly focuses on what the users see on their end. It is a part of the website that users directly interact with. It is also known as "client-side development", what you are currently looking at is also a part of front-end development.&lt;/p&gt;

&lt;p&gt;Technologies used in developing Front-end are:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;- HTML (Hyper Text Markup Language)&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;- CSS (Cascading Style Sheets)&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;- JavaScript&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Let me explain with the help of an example:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Suppose you are planning to build a house for yourself, so the first step you will do is to build the structure of your house using bricks (HTML is used to define the structure of the document ). After the structure is ready to make your house beautiful and colourful you need to paint your house (CSS is used to style the websites to make it look better). The last thing you will do is to add the electricity connection to your house so that it functions properly (JavaScript is a high-level programming language that is used to define logic and provide the functionality to websites).&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;2] Back-end Development:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Back-end development mainly focuses on how a website or web application should work. Everything happens behind the scenes. It is the part of the website that the user cannot see and interact with. Back-end development requires a comprehensive set of programming skills to ensure that the data or service requested by the end-users works perfectly fine without any glitch.&lt;/p&gt;

&lt;p&gt;Programming Languages used in back-end development are:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;- JavaScript&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;- Python&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;- Ruby&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;- PHP&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;- Java&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Following are some suggestion when you learn:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;1.If you are learning from any online videos or resources try to understand the concept and code by yourself. Do not try to use ctrl+c and ctrl+v.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2.When you are learning, try to document it in your own words. It will be very useful when you go for your interviews.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3.Try to experiment with different approaches to achieve the best technique of working. It helps a lot in understanding the concept in an easy way.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The above three points will also help you ace your interviews if you are planning for a job in web development.&lt;/p&gt;

&lt;p&gt;I hope this gave you some insight on web development . Feel free to put up any queries if you have.&lt;/p&gt;

&lt;p&gt;In my upcoming blogs I will be covering more about HTML5, CSS and JavaScript and along with that, I will also be covering the best resources, documentation and different experiments that I have done.&lt;/p&gt;

&lt;p&gt;Also, feel free to put suggestions in the comments section and give a reaction if you enjoyed reading. Connect with me on &lt;a href="https://twitter.com/sanket_k10"&gt;Twitter&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>codenewbie</category>
      <category>beginners</category>
      <category>development</category>
    </item>
  </channel>
</rss>
