<?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: johar ali</title>
    <description>The latest articles on DEV Community by johar ali (@realjohar).</description>
    <link>https://dev.to/realjohar</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%2F1177558%2F958813ab-f12c-433d-a24e-69d491c674ae.jpg</url>
      <title>DEV Community: johar ali</title>
      <link>https://dev.to/realjohar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/realjohar"/>
    <language>en</language>
    <item>
      <title>What are the 2 types of variables in Java?</title>
      <dc:creator>johar ali</dc:creator>
      <pubDate>Fri, 29 Dec 2023 09:25:31 +0000</pubDate>
      <link>https://dev.to/realjohar/what-are-the-2-types-of-variables-in-java-3lom</link>
      <guid>https://dev.to/realjohar/what-are-the-2-types-of-variables-in-java-3lom</guid>
      <description>&lt;p&gt;In Java, variables are classified into different types based on the kind of data they can store. The &lt;a href="https://www.tutorialspoint.com/java/java_variable_types.htm"&gt;variable types&lt;/a&gt; in Java can be broadly categorized into two groups: primitive data types and reference data types.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Primitive Data Types:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Primitive data types represent the most basic data types available in Java. They are used to store simple values. There are eight primitive data types in Java:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;byte:&lt;/strong&gt; 8-bit signed integer&lt;br&gt;
&lt;strong&gt;short:&lt;/strong&gt; 16-bit signed integer&lt;br&gt;
&lt;strong&gt;int:&lt;/strong&gt; 32-bit signed integer&lt;br&gt;
&lt;strong&gt;long:&lt;/strong&gt; 64-bit signed integer&lt;br&gt;
&lt;strong&gt;float:&lt;/strong&gt; 32-bit floating-point number&lt;br&gt;
&lt;strong&gt;double:&lt;/strong&gt; 64-bit floating-point number&lt;br&gt;
&lt;strong&gt;char:&lt;/strong&gt; 16-bit Unicode character&lt;br&gt;
&lt;strong&gt;boolean:&lt;/strong&gt; Represents true or false values&lt;/p&gt;

&lt;p&gt;Example of primitive variable declaration:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;int age = 25;&lt;br&gt;
double salary = 50000.50;&lt;br&gt;
char grade = 'A';&lt;br&gt;
boolean isStudent = true;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Reference Data Types:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Reference data types are used to store references or addresses of objects. They include:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Classes:&lt;/strong&gt; User-defined types&lt;br&gt;
&lt;strong&gt;Interfaces:&lt;/strong&gt; Blueprint of classes&lt;br&gt;
&lt;strong&gt;Arrays:&lt;/strong&gt; Homogeneous collections of elements&lt;/p&gt;

&lt;p&gt;Example of reference variable declaration:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;String name = "John";&lt;br&gt;
Object obj = new Object(); // Object is a class in Java&lt;br&gt;
int[] numbers = {1, 2, 3, 4, 5}; // Array of integers&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It's important to note that primitive data types store actual values, whereas reference data types store references to objects in memory.&lt;/p&gt;

</description>
      <category>java</category>
    </item>
    <item>
      <title>HTML Text Links</title>
      <dc:creator>johar ali</dc:creator>
      <pubDate>Mon, 23 Oct 2023 06:37:57 +0000</pubDate>
      <link>https://dev.to/realjohar/html-text-links-23ad</link>
      <guid>https://dev.to/realjohar/html-text-links-23ad</guid>
      <description>&lt;p&gt;What is a link?&lt;/p&gt;

&lt;p&gt;HTML link creates a connection between one web resource and another web resource. Generally any link has two ends, an anchor and direction. The link starts at a "source" anchor and points to a "destination" anchor, which may be a web resource such as a sound byte, or an image, or a video clip, and may even be a program. That is, an HTML document or an element within an HTML document. There are many social media platforms like Facebook, YouTube, instagram, etc. all of them link an image to a URL or text to a URL, etc.&lt;/p&gt;

&lt;p&gt;HTML Text Links&lt;/p&gt;

&lt;p&gt;In HTML, a text link is a hyperlink that allows you to navigate from one web page to another or to different resources on the internet. It's a fundamental element for building the structure of the web and providing navigation between web pages. &lt;a href="https://www.tutorialspoint.com/html/html_text_links.htm"&gt;Text links&lt;/a&gt; are typically displayed as underlined or differently colored text that a user can click on to access another web page or resource.&lt;/p&gt;

&lt;p&gt;The basic structure of an HTML text link is created using the a (anchor) tag, and it looks like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;a href="https://www.tutorialspoint.com"&amp;gt;Click here to visit Tutorialspoint.com&amp;lt;/a&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In this example:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;a&lt;/strong&gt; is the anchor element, and it's used to define a hyperlink.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;href&lt;/strong&gt; is an attribute that specifies the URL (Uniform Resource Locator) of the page or resource you want to link to. In this case, it's "&lt;a href="https://www.tutorialspoint.com"&gt;https://www.tutorialspoint.com&lt;/a&gt;."&lt;/p&gt;

&lt;p&gt;The text "Click here to visit tutorialspoint.com" is the visible part of the link, also known as the anchor text. When a user clicks on this text, it will take them to the URL specified in the href attribute.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What is an HTML explain?</title>
      <dc:creator>johar ali</dc:creator>
      <pubDate>Wed, 18 Oct 2023 09:06:53 +0000</pubDate>
      <link>https://dev.to/realjohar/what-is-an-html-explain-39h8</link>
      <guid>https://dev.to/realjohar/what-is-an-html-explain-39h8</guid>
      <description>&lt;p&gt;HTML is a computer language mostly used to create web pages and online web applications. HTML is the language in which most websites are created. HTML is mainly used to create web pages. The code used to make a web page created by HTML look attractive is known as CSS. HTML was created by Tim Berners-Lee in 1990. The first version of HTML was HTML 1.0, but the first standard version was HTML 2.0, published in 1995. The first version of HTML contained 18 tags. The most recent version of HTML to date, HTML5, was released in 2014.&lt;/p&gt;

&lt;p&gt;HTML, which stands for Hypertext Markup Language, is the standard markup language used to create web pages. It is a fundamental building block of the World Wide Web and is essential for structuring the content of a web page. Here's an explanation of HTML:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Hypertext:&lt;/strong&gt; HTML is used for creating documents that contain hyperlinks. Hyperlinks are text or images that you can click on to navigate to other web pages or resources. This interlinking of documents is a key feature of the web.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Markup Language:&lt;/strong&gt; HTML is a markup language, not a programming language. It consists of a set of predefined tags or elements that you insert into the text to define the structure and presentation of a document. These tags are enclosed in angle brackets, such as , and usually come in pairs (opening and closing tags) to enclose content.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Web Page:&lt;/strong&gt; HTML is used to define the structure of a web page. You can use HTML to create headings, paragraphs, lists, tables, forms, and more. It allows you to organize and categorize content, making it easily readable and understandable for both humans and web browsers.&lt;/p&gt;

&lt;p&gt;Here's a simple example of HTML code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
  &amp;lt;title&amp;gt;My Web Page&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
  &amp;lt;h1&amp;gt;Welcome to My Web Page&amp;lt;/h1&amp;gt;
  &amp;lt;p&amp;gt;This is a simple example of an HTML document.&amp;lt;/p&amp;gt;
  &amp;lt;a href="https://www.tutorialspoint.com/"&amp;gt;Visit Tutorialspoint.com&amp;lt;/a&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In this example, you can see how &lt;a href="https://www.tutorialspoint.com/html/html_overview.htm"&gt;HTML &lt;/a&gt;is used to define the structure of a web page, set the page title, create headings and paragraphs, and include a hyperlink to another website. When this HTML code is loaded in a web browser, it will be rendered as a structured and visually appealing web page.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What is the table in HTML?</title>
      <dc:creator>johar ali</dc:creator>
      <pubDate>Tue, 17 Oct 2023 09:32:53 +0000</pubDate>
      <link>https://dev.to/realjohar/what-is-the-table-in-html-38f6</link>
      <guid>https://dev.to/realjohar/what-is-the-table-in-html-38f6</guid>
      <description>&lt;p&gt;In HTML, table tag is used to create a table. tr is used to define rows in an HTML table. th tag is used to define headings in HTML table. Headings in HTML Table are by default bold and middle. In this, td tag is used to define the table cell.&lt;/p&gt;

&lt;p&gt;Table is made using three elements. Rows, columns and cells&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Rows&lt;/strong&gt; – We call the boxes made of horizontal lines in the table as rows. A row is formed by two or more horizontal lines.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Columns&lt;/strong&gt; – We call the boxes standing in the table as columns. A row is formed by two or more vertical lines.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Cell&lt;/strong&gt; – When rows and columns collide, a cell is formed.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.tutorialspoint.com/html/html_tables.htm"&gt;HTML tables&lt;/a&gt; are used to display data in a structured grid format. They consist of rows and columns, with cells that can contain various types of content, such as text, images, links, or other HTML elements. Tables are created using a combination of HTML tags, primarily the table, tr, th, and td tags. Here's a basic overview of how to create HTML tables:&lt;/p&gt;

&lt;p&gt;Table Element (table): The table tag is used to define the table itself. It acts as a container for all the other table elements.&lt;/p&gt;

&lt;p&gt;Table Row Element (tr): The tr tag is used to define table rows. You place your data within these rows. Each row can contain one or more table data cells (td) or table header cells (th).&lt;/p&gt;

&lt;p&gt;Table Header Cell (th): The th tag is used to define header cells in a table. Header cells are typically bold and centered, and they provide labels or titles for the columns or rows. They are often used in the first row or the first column to provide context for the data.&lt;/p&gt;

&lt;p&gt;Table Data Cell (td): The td tag is used to define data cells in a table. These cells contain the actual content or data you want to display.&lt;/p&gt;

&lt;p&gt;Here's a simple example of an HTML table:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;table&amp;gt;
  &amp;lt;tr&amp;gt;
    &amp;lt;th&amp;gt;Header 1&amp;lt;/th&amp;gt;
    &amp;lt;th&amp;gt;Header 2&amp;lt;/th&amp;gt;
  &amp;lt;/tr&amp;gt;
  &amp;lt;tr&amp;gt;
    &amp;lt;td&amp;gt;Data 1&amp;lt;/td&amp;gt;
    &amp;lt;td&amp;gt;Data 2&amp;lt;/td&amp;gt;
  &amp;lt;/tr&amp;gt;
  &amp;lt;tr&amp;gt;
    &amp;lt;td&amp;gt;Data 3&amp;lt;/td&amp;gt;
    &amp;lt;td&amp;gt;Data 4&amp;lt;/td&amp;gt;
  &amp;lt;/tr&amp;gt;
&amp;lt;/table&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This code creates a 2x2 table with headers in the first row and data in subsequent rows.&lt;/p&gt;

&lt;p&gt;Additional attributes and styling can be applied to tables and their elements. For example, you can use the border attribute to add borders to your table or use CSS to control the appearance, spacing, and layout of your tables.&lt;/p&gt;

&lt;p&gt;Here's an example of a table with some additional attributes:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;table border="1" cellpadding="10"&amp;gt;
  &amp;lt;tr&amp;gt;
    &amp;lt;th&amp;gt;Name&amp;lt;/th&amp;gt;
    &amp;lt;th&amp;gt;Age&amp;lt;/th&amp;gt;
  &amp;lt;/tr&amp;gt;
  &amp;lt;tr&amp;gt;
    &amp;lt;td&amp;gt;John&amp;lt;/td&amp;gt;
    &amp;lt;td&amp;gt;25&amp;lt;/td&amp;gt;
   &amp;lt;/tr&amp;gt;
   &amp;lt;tr&amp;gt;
     &amp;lt;td&amp;gt;Jane&amp;lt;/td&amp;gt;
     &amp;lt;td&amp;gt;30&amp;lt;/td&amp;gt;
  &amp;lt;/tr&amp;gt;
&amp;lt;/table&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In this example, the border attribute adds a border to the table, and cellpadding sets the padding within the cells.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.tutorialspoint.com/html/html_tables.htm"&gt;HTML tables&lt;/a&gt; can become more complex by including features like colspan (to merge cells horizontally) and rowspan (to merge cells vertically) or by using CSS to style them to your preferences. They are commonly used to present data in a tabular format on websites.&lt;/p&gt;

</description>
      <category>html</category>
    </item>
    <item>
      <title>HTML Images</title>
      <dc:creator>johar ali</dc:creator>
      <pubDate>Wed, 11 Oct 2023 08:25:36 +0000</pubDate>
      <link>https://dev.to/realjohar/html-images-4b6m</link>
      <guid>https://dev.to/realjohar/html-images-4b6m</guid>
      <description>&lt;p&gt;The img tag is used to add images to a webpage or website in HTML. This is an empty tag, meaning it has no closing tag, that is, there is no need to close this tag by writing  tag. &lt;a href="https://www.tutorialspoint.com/html/html_images.htm"&gt;Img tag&lt;/a&gt; is a self-closing tag.  Images are added to HTML to improve the design or structure of a webpage as well as to improve its quality. Nowadays, a website no longer adds images directly to a web page, because images are attached to web pages using the img tag which holds space for the image.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;img src=”image path with extension or URL”,..&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Attributes of Img tag&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;src and alt, these two attributes are necessary for image tag.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;src attribute:&lt;/strong&gt; This indicates the path of the image. It means that the entire URL is written in the src attribute. There is src attribute, without it the image will not be displayed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;alt attribute:&lt;/strong&gt; It is used to give a name to the image.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;height and width attribute:&lt;/strong&gt; To display the image properly in the web page, its length and width have to be set. Width and height attributes are used for that.&lt;/p&gt;

&lt;p&gt;Here's an example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;img src="example.jpg" alt="A beautiful landscape" width="400" height="300"&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Images can be in various formats, such as JPEG, PNG, GIF, or SVG, and you should choose the appropriate format depending on the content and your specific needs. Additionally, you can style images using &lt;a href="https://www.tutorialspoint.com/css/index.htm"&gt;CSS &lt;/a&gt;to control their appearance, position, and behavior on a web page.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>HTML comment tag</title>
      <dc:creator>johar ali</dc:creator>
      <pubDate>Tue, 10 Oct 2023 07:10:36 +0000</pubDate>
      <link>https://dev.to/realjohar/html-comment-tag-1b1</link>
      <guid>https://dev.to/realjohar/html-comment-tag-1b1</guid>
      <description>&lt;p&gt;In HTML, you can use the &amp;lt;!-- and --&amp;gt; tags to create comments within your HTML code. Comments are not displayed on the web page and are intended for developers to include notes, explanations, or other information within the HTML source code.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.tutorialspoint.com/html/html_comments.htm"&gt;HTML Comments&lt;/a&gt; are used to make our code more readable. Comments are completely hidden on the webpage, but you can see them in the code. Commenting code is generally considered a good practice, it helps us express what the code is doing, and serves as an anchor for you if you want to change something in your code in the future. Can act as. In a collaborative environment, code comments are helpful to other developers as well.&lt;/p&gt;

&lt;p&gt;You can divide it into three parts.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Opening&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here, less than mark (&amp;lt;), Exclamation Mark (!) and two Dash (–) have to be written in the opening.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Closing&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In closing you have to write two dashes (–) and greater than mark (&amp;gt;).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Comment Text&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;What you write between opening and closing is called comment text. And this comment text is not visible to the web page.&lt;/p&gt;

&lt;p&gt;Types of Comment&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Single-line Comments&lt;br&gt;
Multi-line Comments&lt;br&gt;
Conditional Comments&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Single-line Comments&lt;br&gt;
When you write comments in one line in HTML Documents, we call it Single Line Comments.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;!-- This Is Single Line Comment --&amp;gt;
&amp;lt;p&amp;gt;Comment line in HTML&amp;lt;/p&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Here your browser does not show the comment in the output. Comment only helps in understanding coding.&lt;/p&gt;

&lt;p&gt;Multi-line Comments&lt;/p&gt;

&lt;p&gt;When you write comments in more than one line in HTML Documents, we call it Multi Line Comments.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;!-- This
Is
Multi Line Comment --&amp;gt;
&amp;lt;p&amp;gt;Comment line in HTML&amp;lt;/p&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Conditional Comments&lt;/p&gt;

&lt;p&gt;This comment is written only for Internet Explorer browser. Other browsers ignore this comment. Conditional instructions are written for different versions of Internet Explorer browser. Do not use it for browsers other than Internet Explorer browser.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
&amp;lt;!--[if IE 7]&amp;gt;
Special Instructions Goes Here…
&amp;lt;![endif]--&amp;gt;
&amp;lt;p&amp;gt;Comment line in HTML&amp;lt;/p&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>html</category>
    </item>
    <item>
      <title>What is a meta tag in HTML?</title>
      <dc:creator>johar ali</dc:creator>
      <pubDate>Mon, 09 Oct 2023 09:55:58 +0000</pubDate>
      <link>https://dev.to/realjohar/what-is-a-meta-tag-in-html-5h8n</link>
      <guid>https://dev.to/realjohar/what-is-a-meta-tag-in-html-5h8n</guid>
      <description>&lt;p&gt;Meta tags in HTML are text snippets in the form of data, the job of meta tags is to show the content of your page. Meta tags and their value do not appear on the web page you create. Meta tags can be easily viewed in the source code of an HTML page. &lt;a href="https://www.tutorialspoint.com/html/html_meta_tags.htm"&gt;Meta tags&lt;/a&gt; act as small content descriptors, their main function is to allow search engines to tell what your web page is about and what keywords it contains.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;meta charset="UTF-8"&amp;gt;: Specifies the character encoding for the document. UTF-8 is a widely used encoding that supports a wide range of characters and symbols.

&amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&amp;gt;: Defines the viewport settings for responsive web design. It helps control how the page is displayed on different devices and screen sizes.

&amp;lt;meta name="description" content="A brief description of the page content"&amp;gt;: Provides a concise description of the web page's content. This description is often used by search engines in search results.

&amp;lt;meta name="keywords" content="keyword1, keyword2, keyword3"&amp;gt;: Specifies a comma-separated list of keywords or phrases that are relevant to the content of the page. While less important for SEO than in the past, some search engines may still consider these keywords.

&amp;lt;meta name="author" content="Author Name"&amp;gt;: Indicates the author of the web page's content.

&amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&amp;gt;: This meta tag is commonly used for responsive web design. It instructs the browser to set the initial zoom level and width of the page to match the device's screen width.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;These are just a few examples of &lt;a href="https://www.tutorialspoint.com/html/html_meta_tags.htm"&gt;HTML meta tags&lt;/a&gt;. They serve various purposes, from providing information to search engines to controlling the appearance and behavior of web pages. Web developers often use a combination of these tags to optimize their websites for both users and search engines.&lt;/p&gt;

</description>
      <category>html</category>
    </item>
    <item>
      <title>What is HTML Phrase Tags</title>
      <dc:creator>johar ali</dc:creator>
      <pubDate>Mon, 09 Oct 2023 03:33:38 +0000</pubDate>
      <link>https://dev.to/realjohar/what-is-html-phrase-tags-d11</link>
      <guid>https://dev.to/realjohar/what-is-html-phrase-tags-d11</guid>
      <description>&lt;p&gt;Phrase tags in HTML are unique purpose tags, Phrase tags are created for indeterminate use cases, &lt;a href="https://www.tutorialspoint.com/html/html_phrase_elements.htm"&gt;Phrase tags&lt;/a&gt; are generally used in the same way as other tags, let's look at each of its different types. Learn in depth how phrase tags work.&lt;/p&gt;

&lt;p&gt;However, HTML does provide tags for marking up various types of content, including text, headings, paragraphs, lists, links, images, and more. Some common HTML tags related to text and phrases include:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;p&amp;gt;: This tag is used to define paragraphs of text.
&amp;lt;strong&amp;gt;: It is used to indicate strong importance or emphasis, typically displayed as bold text.
&amp;lt;em&amp;gt;: This tag is used to indicate emphasized text, typically displayed as italicized text.
&amp;lt;span&amp;gt;: This is a generic inline container that can be used to apply styles or JavaScript functionality to a specific section of text.
&amp;lt;abbr&amp;gt;: It is used to define an abbreviation or acronym.
&amp;lt;cite&amp;gt;: This tag is used to define the title of a creative work, such as a book or a movie.
&amp;lt;code&amp;gt;: It is used to display a piece of computer code.
&amp;lt;mark&amp;gt;: This tag highlights text to indicate that it has been marked or highlighted for some specific purpose.
&amp;lt;sup&amp;gt; and &amp;lt;sub&amp;gt;: These tags are used for superscript and subscript text, respectively.
&amp;lt;blockquote&amp;gt;: It is used to mark up a block of text quoted from another source.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;These are just a few examples of HTML tags related to text and phrases. HTML provides a wide range of tags for structuring and formatting content to create web pages. Each tag serves a specific purpose and can be used in combination to create rich and meaningful web content.&lt;/p&gt;

</description>
      <category>html</category>
    </item>
    <item>
      <title>What are formatting tags in HTML?</title>
      <dc:creator>johar ali</dc:creator>
      <pubDate>Thu, 05 Oct 2023 09:08:03 +0000</pubDate>
      <link>https://dev.to/realjohar/what-are-formatting-tags-in-html-58k</link>
      <guid>https://dev.to/realjohar/what-are-formatting-tags-in-html-58k</guid>
      <description>&lt;p&gt;Some tags in HTML are provided only for text formatting. Using these tags you can control the presentation and position of text on the web page. Like you can bold or underline the text. In any text editor you can do this with a button click, but in HTML you use tags for this. There are some common formatting types that you apply on text. &lt;br&gt;
In the following example you can see how we have shown the most commonly used formatting tags. Now, let's try to understand how these tags basically work:&lt;/p&gt;

&lt;p&gt;This is &lt;b&gt;bold text&lt;/b&gt;.&lt;/p&gt;

&lt;p&gt;This is italic text.&lt;/p&gt;

&lt;p&gt;This is highlighted text.&lt;/p&gt;

&lt;p&gt;This is &lt;em&gt;emphasized text&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;This is &lt;code&gt;computer code&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;This is &lt;strong&gt;strongly important text&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;This is &lt;small&gt;smaller text&lt;/small&gt;.&lt;/p&gt;

&lt;p&gt;This is &lt;del&gt;deleted text&lt;/del&gt;.&lt;/p&gt;

&lt;p&gt;This is inserted text.&lt;/p&gt;

&lt;p&gt;This is subscript and &lt;sup&gt;superscript&lt;/sup&gt; text.&lt;/p&gt;

&lt;p&gt;These are some of the basic &lt;a href="https://www.tutorialspoint.com/html/html_formatting.htm"&gt;HTML formatting&lt;/a&gt; elements and tags you can use to structure and format your web page content. You can combine and nest these elements to create more complex layouts and designs. CSS (Cascading Style Sheets) is often used in conjunction with HTML to apply styles and further control the presentation of web pages.&lt;/p&gt;

</description>
      <category>tags</category>
      <category>html</category>
      <category>development</category>
      <category>formatting</category>
    </item>
  </channel>
</rss>
