<?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: fenikix640</title>
    <description>The latest articles on DEV Community by fenikix640 (@fenikix).</description>
    <link>https://dev.to/fenikix</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%2F883533%2F8d7bee25-ed5d-43da-977d-0a06a9c885b7.png</url>
      <title>DEV Community: fenikix640</title>
      <link>https://dev.to/fenikix</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/fenikix"/>
    <language>en</language>
    <item>
      <title>HTML Complete Basic To Advanced Course</title>
      <dc:creator>fenikix640</dc:creator>
      <pubDate>Thu, 30 Jun 2022 05:14:09 +0000</pubDate>
      <link>https://dev.to/fenikix/html-complete-basic-to-advanced-course-fm0</link>
      <guid>https://dev.to/fenikix/html-complete-basic-to-advanced-course-fm0</guid>
      <description>&lt;p&gt;HTML is the standard markup language for creating Web pages.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is HTML?
&lt;/h2&gt;

&lt;p&gt;HTML stands for Hyper Text Markup Language&lt;br&gt;
HTML is the standard markup language for creating Web pages&lt;br&gt;
HTML describes the structure of a Web page&lt;br&gt;
HTML consists of a series of elements&lt;br&gt;
HTML elements tell the browser how to display the content&lt;br&gt;
HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.&lt;br&gt;
A Simple HTML Document&lt;/p&gt;
&lt;h2&gt;
  
  
  Example
&lt;/h2&gt;

&lt;p&gt;`&amp;lt;!DOCTYPE html&amp;gt;&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;br&gt;
Page Title&lt;br&gt;
&lt;br&gt;


&lt;h1&gt;My First Heading&lt;/h1&gt;

&lt;p&gt;My first paragraph.&lt;/p&gt;

&lt;p&gt;&lt;br&gt;
`&lt;/p&gt;
&lt;h2&gt;
  
  
  Example Explained
&lt;/h2&gt;

&lt;p&gt;The &amp;lt;!DOCTYPE html&amp;gt; declaration defines that this document is an HTML5 document&lt;br&gt;
The  element is the root element of an HTML page&lt;br&gt;
The &lt;/p&gt; element contains meta information about the HTML page&lt;br&gt;
The  element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab)&lt;br&gt;
The  element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.&lt;br&gt;
The &lt;h1&gt; element defines a large heading&lt;br&gt;
The &lt;/h1&gt;
&lt;p&gt; element defines a paragraph&lt;br&gt;
What is an HTML Element?&lt;br&gt;
An HTML element is defined by a start tag, some content, and an end tag:&lt;/p&gt;

&lt;p&gt; Content goes here... &lt;br&gt;
The HTML element is everything from the start tag to the end tag:&lt;/p&gt;

&lt;h1&gt;My First Heading&lt;/h1&gt;

&lt;p&gt;My first paragraph.&lt;/p&gt;

&lt;p&gt;Start tag   Element content End tag&lt;/p&gt;

&lt;h1&gt;    My First Heading    &lt;/h1&gt;

&lt;p&gt; My first paragraph. &lt;/p&gt;

&lt;p&gt;&lt;br&gt;    none    none&lt;br&gt;
Note: Some HTML elements have no content (like the &lt;br&gt; element). These elements are called empty elements. Empty elements do not have an end tag!&lt;/p&gt;
&lt;h2&gt;
  
  
  Web Browsers
&lt;/h2&gt;

&lt;p&gt;The purpose of a web browser (Chrome, Edge, Firefox, Safari) is to read HTML documents and display them correctly.&lt;/p&gt;

&lt;p&gt;A browser does not display the HTML tags, but uses them to determine how to display the document:&lt;/p&gt;

&lt;p&gt;View in Browser&lt;/p&gt;
&lt;h2&gt;
  
  
  HTML Page Structure
&lt;/h2&gt;

&lt;p&gt;Below is a visualization of an HTML page structure:&lt;br&gt;
&lt;/p&gt;

&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
&amp;lt;title&amp;gt;Page title&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;h1&amp;gt;This is a heading&amp;lt;/h1&amp;gt;
&amp;lt;p&amp;gt;This is a paragraph.&amp;lt;/p&amp;gt;
&amp;lt;p&amp;gt;This is another paragraph.&amp;lt;/p&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;



&lt;p&gt;Note: The content inside the &lt;/p&gt; section (the white area above) will be displayed in a browser. The content inside the  element will be shown in the browser's title bar or in the page's tab.
&lt;h2&gt;
  
  
  HTML History
&lt;/h2&gt;

&lt;p&gt;Since the early days of the World Wide Web, there have been many versions of HTML:&lt;/p&gt;

&lt;p&gt;Year    Version&lt;br&gt;
1989    Tim Berners-Lee invented www&lt;br&gt;
1991    Tim Berners-Lee invented HTML&lt;br&gt;
1993    Dave Raggett drafted HTML+&lt;br&gt;
1995    HTML Working Group defined HTML 2.0&lt;br&gt;
1997    W3C Recommendation: HTML 3.2&lt;br&gt;
1999    W3C Recommendation: HTML 4.01&lt;br&gt;
2000    W3C Recommendation: XHTML 1.0&lt;br&gt;
2008    WHATWG HTML5 First Public Draft&lt;br&gt;
2012    WHATWG HTML5 Living Standard&lt;br&gt;
2014    W3C Recommendation: HTML5&lt;br&gt;
2016    W3C Candidate Recommendation: HTML 5.1&lt;br&gt;
2017    W3C Recommendation: HTML5.1 2nd Edition&lt;br&gt;
2017    W3C Recommendation: HTML5.2&lt;br&gt;
This tutorial follows the latest HTML5 standard.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://educatque.online/html/"&gt;Complete Course&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>beginners</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>HTML Introduction</title>
      <dc:creator>fenikix640</dc:creator>
      <pubDate>Mon, 27 Jun 2022 15:20:44 +0000</pubDate>
      <link>https://dev.to/fenikix/html-introduction-1p04</link>
      <guid>https://dev.to/fenikix/html-introduction-1p04</guid>
      <description>&lt;h2&gt;
  
  
  HTML Introduction
&lt;/h2&gt;

&lt;p&gt;HTML is the standard markup language for creating Web pages.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is HTML?
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt; HTML stands for Hyper Text Markup Language&lt;/li&gt;
&lt;li&gt;    HTML is the standard markup language for creating Web pages&lt;/li&gt;
&lt;li&gt;    HTML describes the structure of a Web page&lt;/li&gt;
&lt;li&gt;    HTML consists of a series of elements&lt;/li&gt;
&lt;li&gt;    HTML elements tell the browser how to display the content&lt;/li&gt;
&lt;li&gt;    HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  A Simple HTML Document
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Example
&lt;/h4&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;Page Title&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;

&amp;lt;h1&amp;gt;My First Heading&amp;lt;/h1&amp;gt;
&amp;lt;p&amp;gt;My first paragraph.&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;h3&gt;
  
  
  Example Explained
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;  The &amp;lt;!DOCTYPE html&amp;gt; declaration defines that this document is an HTML5 document&lt;/li&gt;
&lt;li&gt;    The  element is the root element of an HTML page&lt;/li&gt;
&lt;li&gt;    The  element contains meta information about the HTML page&lt;/li&gt;
&lt;li&gt;    The  element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab)&lt;/li&gt;
&lt;li&gt;    The  element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.&lt;/li&gt;
&lt;li&gt;    The &lt;h1&gt; element defines a large heading&lt;/h1&gt;
&lt;/li&gt;
&lt;li&gt;    The &lt;p&gt; element defines a paragraph&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  What is an HTML Element?
&lt;/h2&gt;

&lt;p&gt;An HTML element is defined by a start tag, some content, and an end tag:&lt;br&gt;
 Content goes here... &lt;/p&gt;

&lt;p&gt;The HTML element is everything from the start tag to the end tag:&lt;/p&gt;

&lt;h1&gt;My First Heading&lt;/h1&gt;

&lt;p&gt;My first paragraph.&lt;/p&gt;

&lt;p&gt;Start tag   Element content     End tag&lt;/p&gt;

&lt;h1&gt;    My First Heading    &lt;/h1&gt;

&lt;p&gt;     My first paragraph.     &lt;/p&gt;

&lt;p&gt;&lt;br&gt;    none    none&lt;/p&gt;

&lt;p&gt;Note: Some HTML elements have no content (like the &lt;br&gt; element). These elements are called empty elements. Empty elements do not have an end tag!&lt;/p&gt;

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