<?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: Modala Tarun Kumar</title>
    <description>The latest articles on DEV Community by Modala Tarun Kumar (@modalatarunkumar).</description>
    <link>https://dev.to/modalatarunkumar</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%2F1420173%2Fbf960c4b-f8a0-4a77-9588-591586b9a3a9.png</url>
      <title>DEV Community: Modala Tarun Kumar</title>
      <link>https://dev.to/modalatarunkumar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/modalatarunkumar"/>
    <language>en</language>
    <item>
      <title>Introduction to web &amp; html</title>
      <dc:creator>Modala Tarun Kumar</dc:creator>
      <pubDate>Sat, 13 Apr 2024 07:21:00 +0000</pubDate>
      <link>https://dev.to/modalatarunkumar/introduction-to-web-html-4gi5</link>
      <guid>https://dev.to/modalatarunkumar/introduction-to-web-html-4gi5</guid>
      <description>&lt;p&gt;When we click a website then a request is sent to the server.&lt;br&gt;
Then the server will return a response which is displayed in browser.&lt;br&gt;
&lt;strong&gt;Server:&lt;/strong&gt; Software that serves.&lt;br&gt;
The files hosted will be dumped into folders.&lt;br&gt;
The path is /var/html/www&lt;br&gt;
domainname.com&lt;br&gt;
&lt;strong&gt;Live Server:&lt;/strong&gt; It is used in web development. It used to create a localhost. By using this if we make any changes in our file it will be reflected without refreshing the webpage.&lt;/p&gt;

&lt;h3&gt;
  
  
  Emmet
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Emmet is used to give some pre defined code which increases our coding speed and easy to code.&lt;/li&gt;
&lt;li&gt;The first emmet I used is !(exclamation) which gives the pre defined code for doctype declaration, head and body.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Lorem
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Lorem is used to create dummy text.&lt;/li&gt;
&lt;li&gt;We can create any no of words by writing the emmet lorem(number), where number is number of words we want.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  HTML
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Html stands for Hyper Text Markup Language&lt;/li&gt;
&lt;li&gt;It is used to create web pages.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Tags
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Tags are basic building blocks of web pages.&lt;/li&gt;
&lt;li&gt;For headings we have &lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt; to &lt;code&gt;&amp;lt;h6&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;What I have learnt is by using documentation we can get to know more about things.&lt;/li&gt;
&lt;li&gt;We can create hyperlinks by using &lt;code&gt;&amp;lt;a&amp;gt;&lt;/code&gt; (anchor) tag. We can refer another page by using the attribute &lt;code&gt;href="url"&lt;/code&gt; where url is the link we wanted to redirect.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Image
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;The tag &lt;code&gt;&amp;lt;img&amp;gt;&lt;/code&gt; is used to place an image in the webpage.&lt;/li&gt;
&lt;li&gt;The attribute &lt;code&gt;src&lt;/code&gt; is used to give source of the image the syntax is &lt;code&gt;src="imagepath"&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;The attribute &lt;code&gt;alt&lt;/code&gt; is used to display the text if the image is not loaded.&lt;/li&gt;
&lt;li&gt;The attributes &lt;code&gt;height&lt;/code&gt; and &lt;code&gt;width&lt;/code&gt; are used to adjust the image.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;fetchpriority&lt;/code&gt; attribute is used to show the image or not while bandwith, the values are &lt;code&gt;high&lt;/code&gt;, &lt;code&gt;low&lt;/code&gt;, &lt;code&gt;auto&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;loading&lt;/code&gt; attribute is used whether to load the image or not. The values are &lt;code&gt;eager&lt;/code&gt;,&lt;code&gt;lazy&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>iwritecode</category>
      <category>beginners</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
