<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:cc="http://cyber.law.harvard.edu/rss/creativeCommonsRssModule.html">
    <channel>
        <title><![CDATA[Stories by Coding Arc on Medium]]></title>
        <description><![CDATA[Stories by Coding Arc on Medium]]></description>
        <link>https://medium.com/@codinggarc?source=rss-495e75ab3095------2</link>
        <image>
            <url>https://cdn-images-1.medium.com/fit/c/150/150/0*M4Wxs1HFk7CGnvSN</url>
            <title>Stories by Coding Arc on Medium</title>
            <link>https://medium.com/@codinggarc?source=rss-495e75ab3095------2</link>
        </image>
        <generator>Medium</generator>
        <lastBuildDate>Mon, 25 May 2026 16:39:01 GMT</lastBuildDate>
        <atom:link href="https://medium.com/@codinggarc/feed" rel="self" type="application/rss+xml"/>
        <webMaster><![CDATA[yourfriends@medium.com]]></webMaster>
        <atom:link href="http://medium.superfeedr.com" rel="hub"/>
        <item>
            <title><![CDATA[How to start with HTML?]]></title>
            <link>https://medium.com/@codinggarc/how-to-start-with-html-a8384eca1ce4?source=rss-495e75ab3095------2</link>
            <guid isPermaLink="false">https://medium.com/p/a8384eca1ce4</guid>
            <category><![CDATA[coding]]></category>
            <category><![CDATA[programming]]></category>
            <category><![CDATA[programming-languages]]></category>
            <category><![CDATA[html5]]></category>
            <category><![CDATA[html]]></category>
            <dc:creator><![CDATA[Coding Arc]]></dc:creator>
            <pubDate>Sun, 15 Oct 2023 11:14:37 GMT</pubDate>
            <atom:updated>2023-10-15T11:15:14.914Z</atom:updated>
            <content:encoded><![CDATA[<h3>HTML Unleashed: A Beginner’s Guide to Crafting Your Digital Space</h3><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*4Zx3IeFlxPeKIAu7" /><figcaption>Photo by <a href="https://unsplash.com/@florianolv?utm_source=medium&amp;utm_medium=referral">Florian Olivo</a> on <a href="https://unsplash.com?utm_source=medium&amp;utm_medium=referral">Unsplash</a></figcaption></figure><h3><strong>Step 1: Set Up Your Workspace</strong></h3><p><strong>1. Choose a Text Editor:</strong><br>Use a simple text editor like Notepad (Windows) or TextEdit (Mac). For more features, consider editors like Visual Studio Code, Atom, or Sublime Text.</p><p><strong>2. Create a New Folder:</strong><br>Organize your project by creating a new folder to store all your HTML files, images, and other assets.</p><h3>Step 2: Create Your First HTML Document</h3><p><strong>1. Open Your Text Editor:</strong><br>Open your chosen text editor and create a new file.</p><p><strong>2. Basic HTML Structure:</strong><br>Start with the basic HTML structure:</p><pre>&lt;!DOCTYPE html&gt;<br> &lt;html lang=&quot;en&quot;&gt;<br> &lt;head&gt;<br> &lt;meta charset=&quot;UTF-8&quot;&gt;<br> &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;<br> &lt;title&gt;Your Blog Title&lt;/title&gt;<br> &lt;/head&gt;<br> &lt;body&gt;<br> &lt;! - Your content goes here →<br> &lt;/body&gt;<br> &lt;/html&gt;</pre><h3>Step 3: Add Content to Your Blog</h3><ol><li><strong>Headings and Paragraphs:</strong><br> Use “<strong><em>&lt;h1&gt;”, “&lt;h2&gt;”</em></strong>, etc., for headings and “&lt;p&gt;” for paragraphs.<br> html</li></ol><pre>&lt;h1&gt;Welcome to My Blog&lt;/h1&gt;<br> &lt;p&gt;This is the first post on my new blog. Exciting, isn&#39;t it?&lt;/p&gt;</pre><p><strong>2. Images:</strong><br>Add images using the “&lt;img&gt;” tag.</p><pre>&lt;img src=&quot;image.jpg&quot; alt=&quot;Description of the image&quot;&gt;</pre><p><strong>3. Links:</strong><br>Create hyperlinks using the “&lt;a&gt;” tag.</p><pre>&lt;a href=&quot;https://yourlink.com&quot;&gt;Visit my favorite website&lt;/a&gt;</pre><h3>Step 4: Save and View Your Blog Locally</h3><p><strong>1. Save Your File:</strong><br>Save your HTML file with a “.html” extension, e.g., “index.html”.</p><p><strong>2. Open in Browser:</strong><br>Double-click on the HTML file to open it in your web browser. You should see your basic blog structure and content.</p><h3>Step 5: Learn and Experiment</h3><p><strong>1. HTML Elements:</strong><br>Explore additional HTML elements like lists (“&lt;ul&gt;”, “&lt;ol&gt;”), forms (“&lt;form&gt;”, “&lt;input&gt;”), and more. Refer to online resources like Mozilla Developer Network (MDN) for detailed information.</p><p><strong>2. CSS Styling:</strong><br>Enhance your blog’s appearance by learning basic CSS for styling. Link a separate CSS file or use inline styles within your HTML.</p><p><strong>3. Responsive Design:</strong><br>Learn about responsive design to ensure your blog looks good on various devices. Use the “&lt;meta name= “viewport”&gt;” tag in your head section.</p><p><strong>4. Publish Your Blog:</strong><br>To share your blog online, you’ll need a domain and hosting. Consider platforms like GitHub Pages, Netlify, or a traditional web hosting service.</p><p>Remember, practice is key. Experiment, make mistakes, and gradually you’ll become more comfortable with HTML and web development. Good luck with your coding blog! 🚀💻</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=a8384eca1ce4" width="1" height="1" alt="">]]></content:encoded>
        </item>
    </channel>
</rss>