<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://codingchoice.com/learn/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://codingchoice.com/learn/feed.php">
        <title>Learning Center - html</title>
        <description></description>
        <link>https://codingchoice.com/learn/</link>
        <image rdf:resource="https://codingchoice.com/learn/_media/logo.png" />
       <dc:date>2026-05-03T10:38:21+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://codingchoice.com/learn/html/basic_structure?rev=1738515742&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/html/elements_and_attributes?rev=1738516482&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/html/forms_and_input_fields?rev=1738522744&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/html/graphics_and_animation?rev=1738518275&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/html/html_apis?rev=1738518431&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/html/html_cheat_sheet?rev=1739419046&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/html/introduction?rev=1739242869&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/html/multimedia_elements?rev=1738516932&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/html/sidebar?rev=1739419098&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/html/understanding_html?rev=1738522809&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://codingchoice.com/learn/_media/logo.png">
        <title>Learning Center</title>
        <link>https://codingchoice.com/learn/</link>
        <url>https://codingchoice.com/learn/_media/logo.png</url>
    </image>
    <item rdf:about="https://codingchoice.com/learn/html/basic_structure?rev=1738515742&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-02T17:02:22+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>basic_structure</title>
        <link>https://codingchoice.com/learn/html/basic_structure?rev=1738515742&amp;do=diff</link>
        <description>Basic HTML Structure

1. Document Structure

An HTML document begins with the following structure:


&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;meta charset=&quot;UTF-8&quot;&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
    &lt;title&gt;My HTML Page&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;header&gt;
        &lt;h1&gt;Welcome to HTML&lt;/h1&gt;
    &lt;/header&gt;
    &lt;main&gt;
        &lt;p&gt;This is a sample HTML page.&lt;/p&gt;
    &lt;/main&gt;
    &lt;footer&gt;
        &lt;p&gt;&amp;copy; 2025 Web Development&lt;/p&gt;
    &lt;/footer&gt;
&lt;/body&gt;
&lt;/html…</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/html/elements_and_attributes?rev=1738516482&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-02T17:14:42+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>elements_and_attributes</title>
        <link>https://codingchoice.com/learn/html/elements_and_attributes?rev=1738516482&amp;do=diff</link>
        <description>HTML Elements and Attributes

1. Common Elements

	*  Heading Tags: &lt;h1&gt; to &lt;h6&gt; define headings.

	*  Paragraphs: &lt;p&gt; represents text content.

	*  Lists: &lt;ul&gt; for unordered lists, &lt;ol&gt; for ordered lists.

	*  Links: &lt;a href=“URL”&gt; creates hyperlinks.</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/html/forms_and_input_fields?rev=1738522744&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-02T18:59:04+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>forms_and_input_fields</title>
        <link>https://codingchoice.com/learn/html/forms_and_input_fields?rev=1738522744&amp;do=diff</link>
        <description>Forms and Input Fields

1. Form Structure

Forms collect user input using &lt;form&gt;:


&lt;form action=&quot;submit.php&quot; method=&quot;post&quot;&gt;
    &lt;label for=&quot;name&quot;&gt;Name:&lt;/label&gt;
    &lt;input type=&quot;text&quot; id=&quot;name&quot; name=&quot;name&quot; required&gt;
    &lt;input type=&quot;submit&quot; value=&quot;Submit&quot;&gt;
&lt;/form&gt;</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/html/graphics_and_animation?rev=1738518275&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-02T17:44:35+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>graphics_and_animation</title>
        <link>https://codingchoice.com/learn/html/graphics_and_animation?rev=1738518275&amp;do=diff</link>
        <description>Graphics and Animation

1. The ''&lt;canvas&gt;'' Element

Draw graphics using JavaScript:


&lt;canvas id=&quot;myCanvas&quot; width=&quot;400&quot; height=&quot;200&quot;&gt;&lt;/canvas&gt;
&lt;script&gt;
    var canvas = document.getElementById(&quot;myCanvas&quot;);
    var ctx = canvas.getContext(&quot;2d&quot;);
    ctx.fillStyle = &quot;red&quot;;
    ctx.fillRect(20, 20, 150, 100);
&lt;/script&gt;</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/html/html_apis?rev=1738518431&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-02T17:47:11+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>html_apis</title>
        <link>https://codingchoice.com/learn/html/html_apis?rev=1738518431&amp;do=diff</link>
        <description>HTML APIs

1. Geolocation API

Get the user's location:


navigator.geolocation.getCurrentPosition(function(position) {
    console.log(position.coords.latitude, position.coords.longitude);
});


2. Web Storage API

Store data locally:


localStorage.setItem(&quot;username&quot;, &quot;JohnDoe&quot;);
alert(localStorage.getItem(&quot;username&quot;));</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/html/html_cheat_sheet?rev=1739419046&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-13T03:57:26+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>html_cheat_sheet</title>
        <link>https://codingchoice.com/learn/html/html_cheat_sheet?rev=1739419046&amp;do=diff</link>
        <description>HTML Cheat Sheet

Basic Structure


&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;title&gt;Page Title&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;h1&gt;Welcome to HTML&lt;/h1&gt;
    &lt;p&gt;This is a paragraph.&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;



Headings



&lt;h1&gt;Heading 1&lt;/h1&gt;
&lt;h2&gt;Heading 2&lt;/h2&gt;
&lt;h3&gt;Heading 3&lt;/h3&gt;
&lt;h4&gt;Heading 4&lt;/h4&gt;
&lt;h5&gt;Heading 5&lt;/h5&gt;
&lt;h6&gt;Heading 6&lt;/h6&gt;</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/html/introduction?rev=1739242869&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-11T03:01:09+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>introduction</title>
        <link>https://codingchoice.com/learn/html/introduction?rev=1739242869&amp;do=diff</link>
        <description>Introduction to HTML

HTML (HyperText Markup Language) is the foundation of web development, providing the structure and content for web pages. This book serves as a comprehensive guide, covering both basic and advanced concepts with practical examples.</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/html/multimedia_elements?rev=1738516932&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-02T17:22:12+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>multimedia_elements</title>
        <link>https://codingchoice.com/learn/html/multimedia_elements?rev=1738516932&amp;do=diff</link>
        <description>Multimedia Elements

1. Audio

Embed multimedia content using:


&lt;audio controls&gt;
    &lt;source src=&quot;audio.mp3&quot; type=&quot;audio/mpeg&quot;&gt;
&lt;/audio&gt;


2. Video


&lt;video controls width=&quot;400&quot;&gt;
    &lt;source src=&quot;video.mp4&quot; type=&quot;video/mp4&quot;&gt;
&lt;/video&gt;</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/html/sidebar?rev=1739419098&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-13T03:58:18+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>sidebar</title>
        <link>https://codingchoice.com/learn/html/sidebar?rev=1739419098&amp;do=diff</link>
        <description>*  Introduction
	*  Understanding HTML
	*  Basic HTML Structure
	*  HTML Elements and Attributes
	*  Forms and Input Fields
	*  Multimedia Elements
	*  Graphics and Animation
	*  HTML APIs
	*  HTML Cheat Sheet</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/html/understanding_html?rev=1738522809&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-02T19:00:09+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>understanding_html</title>
        <link>https://codingchoice.com/learn/html/understanding_html?rev=1738522809&amp;do=diff</link>
        <description>Understanding HTML

1. What is HTML?

HTML is a markup language used for structuring and displaying content on the web. It consists of elements represented by tags enclosed in angle brackets (&lt;&gt;).

2. Differences Between HTML4 and HTML5

	*  Semantic elements</description>
    </item>
</rdf:RDF>
