<?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: Prakruthi Rao</title>
    <description>The latest articles on DEV Community by Prakruthi Rao (@prakruthi_rao_4c60429a1ff).</description>
    <link>https://dev.to/prakruthi_rao_4c60429a1ff</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%2F2653532%2F0d0bf151-9dc8-4106-bbd5-60eddf102bdc.png</url>
      <title>DEV Community: Prakruthi Rao</title>
      <link>https://dev.to/prakruthi_rao_4c60429a1ff</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/prakruthi_rao_4c60429a1ff"/>
    <language>en</language>
    <item>
      <title>Build a Personal Profile Page with HTML: Learn HTML Basics Step by Step</title>
      <dc:creator>Prakruthi Rao</dc:creator>
      <pubDate>Wed, 12 Feb 2025 19:23:04 +0000</pubDate>
      <link>https://dev.to/prakruthi_rao_4c60429a1ff/build-a-personal-profile-page-with-html-learn-html-basics-step-by-step-4705</link>
      <guid>https://dev.to/prakruthi_rao_4c60429a1ff/build-a-personal-profile-page-with-html-learn-html-basics-step-by-step-4705</guid>
      <description>&lt;h2&gt;Intro&lt;/h2&gt;

&lt;p&gt;Hey there! Have you ever wondered how web pages are created? Well, it all starts with &lt;em&gt;HTML&lt;/em&gt;—the language of the web. In this guide, you’ll learn the most important HTML tags while building your very own &lt;strong&gt;Personal Profile Page&lt;/strong&gt;. Don't worry if you’re new to coding. We'll keep things simple and fun. &lt;/p&gt;




&lt;h3&gt;Step 1: The Skeleton of Every Web Page&lt;/h3&gt;

&lt;p&gt;Imagine HTML as the skeleton of your web page—it gives structure to everything. Let’s start by creating the most basic HTML structure:&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 Profile Page&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
  &amp;lt;h1&amp;gt;Welcome to My Profile Page&amp;lt;/h1&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;&lt;strong&gt;&lt;em&gt;What is all that about?&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt; &lt;em&gt;!DOCTYPE html&lt;/em&gt;: This line tells the browser, "Hey, I’m using HTML5!"&lt;/li&gt;
&lt;li&gt; &lt;em&gt;html&lt;/em&gt;: This is like the container for your entire page. Everything goes inside this tag.&lt;/li&gt;
&lt;li&gt; &lt;em&gt;head&lt;/em&gt;: Think of this as the backstage of your web page. It’s where the settings go (like the title).&lt;/li&gt;
&lt;li&gt; &lt;em&gt;title&lt;/em&gt;: Sets the name of your page that appears on the browser tab.&lt;/li&gt;
&lt;li&gt; &lt;em&gt;body&lt;/em&gt;: This is the main part—where all the visible content lives (like text, images, and links).&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;Step 2: Introducing Yourself with Headings and Paragraphs&lt;/h3&gt;

&lt;p&gt;Time to add a short introduction about yourself. Use headings to organize your page and paragraphs to describe things.&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;h2&amp;gt;About Me&amp;lt;/h2&amp;gt;
&amp;lt;p&amp;gt;Hello! I’m learning how to create web pages with HTML. I love technology, and this is my very first project!&amp;lt;/p&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;What does this mean?&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;em&gt;Headings (h1 to h6)&lt;/em&gt;: Used for titles and section headings. h1 is the biggest, h6 is the smallest.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;em&gt;Paragraph (p)&lt;/em&gt;: For regular text, like descriptions or stories. Think of it as a sentence or block of text.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;The Final Code&lt;/h3&gt;

&lt;p&gt;Here’s the full code for your Personal Profile Page:&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 Profile Page&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
  &amp;lt;h1&amp;gt;Welcome to My Profile Page&amp;lt;/h1&amp;gt;
  &amp;lt;h2&amp;gt;About Me&amp;lt;/h2&amp;gt;
  &amp;lt;p&amp;gt;Hello! I’m learning how to create web pages with HTML. I love technology, and this is my very first project!&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;h2&gt;Activity! Make it your Own...&lt;/h2&gt;

&lt;p&gt;Now it’s your turn! Try these:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Change the title: Make it something fun, like "My Awesome Profile" or "Welcome to My World". Add another heading (h3): Maybe something like "My Hobbies". Write a paragraph (p) about your hobbies or favorite activities.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;br&gt;&lt;br&gt;
&lt;strong&gt;And that’s it—you’ve built your very first HTML page! Now that you know how to use basic tags, you’re ready to create more amazing web pages. Keep practicing, and soon you’ll be a web development pro!&lt;/strong&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>beginners</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
