<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[QP School - HTML5 Tutorials]]></title>
		<link>https://qomplainerzschool.lima-city.de/</link>
		<description><![CDATA[QP School - https://qomplainerzschool.lima-city.de]]></description>
		<pubDate>Mon, 11 May 2026 18:55:50 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Creating hyperlinks in HTML5]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5282</link>
			<pubDate>Thu, 27 Jul 2023 15:23:52 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5282</guid>
			<description><![CDATA[The a element in HTML is used to create hyperlinks, allowing you to link to other web pages, resources, files, or specific sections within a page.<br />
<br />
Example: <br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
  &lt;meta charset="UTF-8"&gt;<br />
  &lt;title&gt;Hyperlink Example&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
  &lt;p&gt;Welcome to my website! Check out &lt;a href="https://openai.com"&gt;OpenAI&lt;/a&gt;.&lt;/p&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div><br />
Explanation:<br />
<br />
Opening and Closing Tags: <br />
The a element is an inline element and requires an opening a tag and a closing a tag to create a link. <br />
The content between the opening and closing tags is what's displayed as the clickable link.<br />
<br />
href Attribute: <br />
The most crucial attribute of the a element is href, which specifies the destination URL or the target of the link. <br />
In the example, href="https://openai.com" tells the browser to navigate to the OpenAI website when the link is clicked.<br />
<br />
Link Text: <br />
The content between the opening and closing a tags is known as the link text. <br />
In our example, the link text is "OpenAI." <br />
When the user clicks on this text, they will be redirected to the URL specified in the href attribute.<br />
<br />
Absolute URL: <br />
In the example, we used an absolute URL (<a href="https://openai.com" target="_blank" rel="noopener" class="mycode_url">https://openai.com</a>) as the value for the href attribute. <br />
This means the link will take the user directly to the OpenAI website.<br />
<br />
Relative URL (optional): <br />
Instead of an absolute URL, you can also use a relative URL for the href attribute. <br />
A relative URL is relative to the current web page's location. <br />
For example, if your current page is in the same directory as another page named about.html, you can use href="about.html" to create a link to the "about.html" page.<br />
<br />
Linking to Files: <br />
Besides web pages, you can use the a element to link to various resources like images, PDFs, videos, and more. <br />
Just provide the correct URL to the file in the href attribute.<br />
<br />
Linking to Sections within a Page (optional): <br />
You can also link to specific sections within the same page by using the id attribute on an element and providing its value as the destination of the link. For example:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
  &lt;meta charset="UTF-8"&gt;<br />
  &lt;title&gt;Internal Link Example&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
  &lt;h2 id="section1"&gt;Section 1&lt;/h2&gt;<br />
  &lt;p&gt;Welcome to Section 1. &lt;a href="#section2"&gt;Jump to Section 2&lt;/a&gt;.&lt;/p&gt;<br />
<br />
  &lt;h2 id="section2"&gt;Section 2&lt;/h2&gt;<br />
  &lt;p&gt;Welcome to Section 2. &lt;a href="#section1"&gt;Go back to Section 1&lt;/a&gt;.&lt;/p&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div><br />
In this example, we've created two sections with h2 headings, each having a unique id attribute. <br />
The links within the paragraphs allow the user to jump back and forth between the sections within the same page.<br />
<br />
Opening Links in a New Tab (optional): By default, when a user clicks on a link, the new content replaces the current page. <br />
However, you can add the target="_blank" attribute to the a element to open the link in a new browser tab or window.]]></description>
			<content:encoded><![CDATA[The a element in HTML is used to create hyperlinks, allowing you to link to other web pages, resources, files, or specific sections within a page.<br />
<br />
Example: <br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
  &lt;meta charset="UTF-8"&gt;<br />
  &lt;title&gt;Hyperlink Example&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
  &lt;p&gt;Welcome to my website! Check out &lt;a href="https://openai.com"&gt;OpenAI&lt;/a&gt;.&lt;/p&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div><br />
Explanation:<br />
<br />
Opening and Closing Tags: <br />
The a element is an inline element and requires an opening a tag and a closing a tag to create a link. <br />
The content between the opening and closing tags is what's displayed as the clickable link.<br />
<br />
href Attribute: <br />
The most crucial attribute of the a element is href, which specifies the destination URL or the target of the link. <br />
In the example, href="https://openai.com" tells the browser to navigate to the OpenAI website when the link is clicked.<br />
<br />
Link Text: <br />
The content between the opening and closing a tags is known as the link text. <br />
In our example, the link text is "OpenAI." <br />
When the user clicks on this text, they will be redirected to the URL specified in the href attribute.<br />
<br />
Absolute URL: <br />
In the example, we used an absolute URL (<a href="https://openai.com" target="_blank" rel="noopener" class="mycode_url">https://openai.com</a>) as the value for the href attribute. <br />
This means the link will take the user directly to the OpenAI website.<br />
<br />
Relative URL (optional): <br />
Instead of an absolute URL, you can also use a relative URL for the href attribute. <br />
A relative URL is relative to the current web page's location. <br />
For example, if your current page is in the same directory as another page named about.html, you can use href="about.html" to create a link to the "about.html" page.<br />
<br />
Linking to Files: <br />
Besides web pages, you can use the a element to link to various resources like images, PDFs, videos, and more. <br />
Just provide the correct URL to the file in the href attribute.<br />
<br />
Linking to Sections within a Page (optional): <br />
You can also link to specific sections within the same page by using the id attribute on an element and providing its value as the destination of the link. For example:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
  &lt;meta charset="UTF-8"&gt;<br />
  &lt;title&gt;Internal Link Example&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
  &lt;h2 id="section1"&gt;Section 1&lt;/h2&gt;<br />
  &lt;p&gt;Welcome to Section 1. &lt;a href="#section2"&gt;Jump to Section 2&lt;/a&gt;.&lt;/p&gt;<br />
<br />
  &lt;h2 id="section2"&gt;Section 2&lt;/h2&gt;<br />
  &lt;p&gt;Welcome to Section 2. &lt;a href="#section1"&gt;Go back to Section 1&lt;/a&gt;.&lt;/p&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div><br />
In this example, we've created two sections with h2 headings, each having a unique id attribute. <br />
The links within the paragraphs allow the user to jump back and forth between the sections within the same page.<br />
<br />
Opening Links in a New Tab (optional): By default, when a user clicks on a link, the new content replaces the current page. <br />
However, you can add the target="_blank" attribute to the a element to open the link in a new browser tab or window.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[What's new in HTML5?]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5281</link>
			<pubDate>Thu, 27 Jul 2023 14:48:36 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5281</guid>
			<description><![CDATA[1. Semantic elements:<br />
<br />
HTML5 introduces many new semantic elements that help describe the structure of the content better, making it easier for search engines and screen readers to understand the page's purpose. Some key semantic elements include header, nav, main, article, section, footer, aside, etc.<br />
<br />
2. Multimedia:<br />
<br />
HTML5 provides built-in support for audio and video without the need for plugins like Flash. <br />
The audio and video elements allow embedding media directly into the page.<br />
<br />
Example:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;audio controls&gt;<br />
  &lt;source src="audio.mp3" type="audio/mpeg"&gt;<br />
  Your browser does not support the audio element.<br />
&lt;/audio&gt;</code></div></div><br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;video controls width="640" height="360"&gt;<br />
  &lt;source src="video.mp4" type="video/mp4"&gt;<br />
  Your browser does not support the video element.<br />
&lt;/video&gt;</code></div></div><br />
<br />
3. Form enhancements:<br />
<br />
HTML5 enhances form handling with new input types, validation attributes, and the datalist element for autocomplete suggestions.<br />
<br />
Example:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;input type="email" required&gt;<br />
&lt;input type="date"&gt;<br />
&lt;input type="range" min="0" max="100"&gt;<br />
&lt;input type="color"&gt;<br />
&lt;input type="search" list="search-suggestions"&gt;<br />
&lt;datalist id="search-suggestions"&gt;<br />
  &lt;option value="Keyword 1"&gt;<br />
  &lt;option value="Keyword 2"&gt;<br />
&lt;/datalist&gt;</code></div></div><br />
<br />
4. Canvas:<br />
<br />
The canvas element allows dynamic rendering of graphics, charts, animations, and games using JavaScript. <br />
It provides a 2D drawing context and, with WebGL, can even support 3D graphics.<br />
<br />
5. Offline web applications:<br />
<br />
HTML5 includes an Application Cache feature that enables web applications to work offline and load faster by storing resources locally. <br />
This is achieved using the manifest attribute in the html tag.<br />
<br />
6. Geolocation:<br />
<br />
HTML5 supports geolocation, allowing websites to access the user's location through the Geolocation API.<br />
<br />
7. Web storage:<br />
<br />
HTML5 introduces Web Storage (localStorage and sessionStorage) to store data locally on the user's browser for a more extended period compared to cookies.<br />
<br />
8. Web workers:<br />
<br />
Web Workers allow running JavaScript code in the background without interfering with the page's responsiveness, enabling multi-threading.<br />
<br />
9. Drag and Drop:<br />
<br />
HTML5 provides native support for drag-and-drop interactions, making it easier to implement intuitive UI elements.]]></description>
			<content:encoded><![CDATA[1. Semantic elements:<br />
<br />
HTML5 introduces many new semantic elements that help describe the structure of the content better, making it easier for search engines and screen readers to understand the page's purpose. Some key semantic elements include header, nav, main, article, section, footer, aside, etc.<br />
<br />
2. Multimedia:<br />
<br />
HTML5 provides built-in support for audio and video without the need for plugins like Flash. <br />
The audio and video elements allow embedding media directly into the page.<br />
<br />
Example:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;audio controls&gt;<br />
  &lt;source src="audio.mp3" type="audio/mpeg"&gt;<br />
  Your browser does not support the audio element.<br />
&lt;/audio&gt;</code></div></div><br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;video controls width="640" height="360"&gt;<br />
  &lt;source src="video.mp4" type="video/mp4"&gt;<br />
  Your browser does not support the video element.<br />
&lt;/video&gt;</code></div></div><br />
<br />
3. Form enhancements:<br />
<br />
HTML5 enhances form handling with new input types, validation attributes, and the datalist element for autocomplete suggestions.<br />
<br />
Example:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;input type="email" required&gt;<br />
&lt;input type="date"&gt;<br />
&lt;input type="range" min="0" max="100"&gt;<br />
&lt;input type="color"&gt;<br />
&lt;input type="search" list="search-suggestions"&gt;<br />
&lt;datalist id="search-suggestions"&gt;<br />
  &lt;option value="Keyword 1"&gt;<br />
  &lt;option value="Keyword 2"&gt;<br />
&lt;/datalist&gt;</code></div></div><br />
<br />
4. Canvas:<br />
<br />
The canvas element allows dynamic rendering of graphics, charts, animations, and games using JavaScript. <br />
It provides a 2D drawing context and, with WebGL, can even support 3D graphics.<br />
<br />
5. Offline web applications:<br />
<br />
HTML5 includes an Application Cache feature that enables web applications to work offline and load faster by storing resources locally. <br />
This is achieved using the manifest attribute in the html tag.<br />
<br />
6. Geolocation:<br />
<br />
HTML5 supports geolocation, allowing websites to access the user's location through the Geolocation API.<br />
<br />
7. Web storage:<br />
<br />
HTML5 introduces Web Storage (localStorage and sessionStorage) to store data locally on the user's browser for a more extended period compared to cookies.<br />
<br />
8. Web workers:<br />
<br />
Web Workers allow running JavaScript code in the background without interfering with the page's responsiveness, enabling multi-threading.<br />
<br />
9. Drag and Drop:<br />
<br />
HTML5 provides native support for drag-and-drop interactions, making it easier to implement intuitive UI elements.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[What is HTML5?]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5279</link>
			<pubDate>Thu, 27 Jul 2023 14:43:27 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5279</guid>
			<description><![CDATA[HTML5 (Hypertext Markup Language 5) is the latest version of the standard markup language used for creating and structuring content on the web. <br />
It comes with several new features and improvements over its predecessors.]]></description>
			<content:encoded><![CDATA[HTML5 (Hypertext Markup Language 5) is the latest version of the standard markup language used for creating and structuring content on the web. <br />
It comes with several new features and improvements over its predecessors.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Everything you need to know about HTML5]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=5054</link>
			<pubDate>Tue, 25 Jul 2023 11:50:45 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=5054</guid>
			<description><![CDATA[HTML5 (Hypertext Markup Language 5) is the latest version of the markup language used to create and structure content on the web. It was officially published as a W3C Recommendation on October 28, 2014, and has since become the standard for web development. Here are some key points about HTML5:<br />
<br />
Structure and Elements: HTML5 introduces new semantic elements that provide better structure and meaning to web content. Some important elements include <header>, <nav>, <article>, <section>, <footer>, <aside>, and more.<br />
<br />
Multimedia Support: HTML5 includes native support for multimedia elements without the need for third-party plugins like Flash. It introduced the <audio> and <video> elements, making it easier to embed and control audio and video content on web pages.<br />
<br />
Canvas and SVG: HTML5 brought two new ways to create graphics on the web. The <canvas> element allows dynamic graphics and animations using JavaScript, while SVG (Scalable Vector Graphics) provides vector-based graphics that can be scaled without losing quality.<br />
<br />
Form Enhancements: HTML5 introduced several new input types and attributes that make it easier to create interactive and user-friendly forms. New input types include email, url, number, date, and range, among others.<br />
<br />
Offline and Storage: HTML5 introduced technologies like the Application Cache (<appcache>) that enable web applications to work offline. Additionally, it provides better client-side storage options such as localStorage and sessionStorage, allowing websites to store data on the user's device.<br />
<br />
Geolocation: HTML5 enables web applications to access the user's geographical location through the Geolocation API, providing a seamless way to build location-aware services.<br />
<br />
WebSockets: HTML5 introduced WebSockets, which allow real-time communication between a web browser and a web server over a single, long-lived connection. This is particularly useful for applications that require low-latency communication.<br />
<br />
Responsive Design: HTML5 plays a crucial role in creating responsive web designs that adapt to different screen sizes and devices. CSS3 and JavaScript are often used in conjunction with HTML5 to achieve this.<br />
<br />
Accessibility: HTML5 puts a strong emphasis on accessibility by providing semantic elements, ARIA (Accessible Rich Internet Applications) attributes, and other features to make web content more usable for people with disabilities.<br />
<br />
Backward Compatibility: HTML5 is designed to be backward compatible with older versions of HTML, making it easier for developers to transition their existing websites to HTML5 without losing support for older browsers.<br />
<br />
Since its release, HTML5 has become the foundation of modern web development, and its adoption has significantly improved the web browsing experience for users across various platforms and devices. Web developers continue to use HTML5 in combination with CSS3 and JavaScript to create dynamic, interactive, and visually appealing web pages and applications.]]></description>
			<content:encoded><![CDATA[HTML5 (Hypertext Markup Language 5) is the latest version of the markup language used to create and structure content on the web. It was officially published as a W3C Recommendation on October 28, 2014, and has since become the standard for web development. Here are some key points about HTML5:<br />
<br />
Structure and Elements: HTML5 introduces new semantic elements that provide better structure and meaning to web content. Some important elements include <header>, <nav>, <article>, <section>, <footer>, <aside>, and more.<br />
<br />
Multimedia Support: HTML5 includes native support for multimedia elements without the need for third-party plugins like Flash. It introduced the <audio> and <video> elements, making it easier to embed and control audio and video content on web pages.<br />
<br />
Canvas and SVG: HTML5 brought two new ways to create graphics on the web. The <canvas> element allows dynamic graphics and animations using JavaScript, while SVG (Scalable Vector Graphics) provides vector-based graphics that can be scaled without losing quality.<br />
<br />
Form Enhancements: HTML5 introduced several new input types and attributes that make it easier to create interactive and user-friendly forms. New input types include email, url, number, date, and range, among others.<br />
<br />
Offline and Storage: HTML5 introduced technologies like the Application Cache (<appcache>) that enable web applications to work offline. Additionally, it provides better client-side storage options such as localStorage and sessionStorage, allowing websites to store data on the user's device.<br />
<br />
Geolocation: HTML5 enables web applications to access the user's geographical location through the Geolocation API, providing a seamless way to build location-aware services.<br />
<br />
WebSockets: HTML5 introduced WebSockets, which allow real-time communication between a web browser and a web server over a single, long-lived connection. This is particularly useful for applications that require low-latency communication.<br />
<br />
Responsive Design: HTML5 plays a crucial role in creating responsive web designs that adapt to different screen sizes and devices. CSS3 and JavaScript are often used in conjunction with HTML5 to achieve this.<br />
<br />
Accessibility: HTML5 puts a strong emphasis on accessibility by providing semantic elements, ARIA (Accessible Rich Internet Applications) attributes, and other features to make web content more usable for people with disabilities.<br />
<br />
Backward Compatibility: HTML5 is designed to be backward compatible with older versions of HTML, making it easier for developers to transition their existing websites to HTML5 without losing support for older browsers.<br />
<br />
Since its release, HTML5 has become the foundation of modern web development, and its adoption has significantly improved the web browsing experience for users across various platforms and devices. Web developers continue to use HTML5 in combination with CSS3 and JavaScript to create dynamic, interactive, and visually appealing web pages and applications.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Multi Line Comments in HTML5]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=2492</link>
			<pubDate>Sun, 21 Feb 2021 20:00:42 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=2492</guid>
			<description><![CDATA[<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">Comments will be ignored by the browser.</span></span></span><br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">You can use comments i.e. to make it easier to read your code for others when working in a team,</span></span></span><br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">or to make it easier to understand what each part of the code does when trying to teach someone programming,</span></span></span><br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">or for commenting out some parts of the code that didn't work as expected to fix them later.</span></span></span><br />
<br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">Multi line comments are done as follows:</span></span></span><br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=86" target="_blank" title="">Multi line comment.jpg</a> (Size: 3.27 KB / Downloads: 601)
<!-- end: postbit_attachments_attachment --><br />
<br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">If you have done it correctly your HTML document should look like this now:</span></span></span><br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=87" target="_blank" title="">Basic layout for servers with multi line comment.jpg</a> (Size: 23.09 KB / Downloads: 519)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">Comments will be ignored by the browser.</span></span></span><br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">You can use comments i.e. to make it easier to read your code for others when working in a team,</span></span></span><br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">or to make it easier to understand what each part of the code does when trying to teach someone programming,</span></span></span><br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">or for commenting out some parts of the code that didn't work as expected to fix them later.</span></span></span><br />
<br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">Multi line comments are done as follows:</span></span></span><br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=86" target="_blank" title="">Multi line comment.jpg</a> (Size: 3.27 KB / Downloads: 601)
<!-- end: postbit_attachments_attachment --><br />
<br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">If you have done it correctly your HTML document should look like this now:</span></span></span><br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=87" target="_blank" title="">Basic layout for servers with multi line comment.jpg</a> (Size: 23.09 KB / Downloads: 519)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Single Line Comment in HTML5]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=2491</link>
			<pubDate>Sun, 21 Feb 2021 19:58:14 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=2491</guid>
			<description><![CDATA[Comments will be ignored by the browser.<br />
You can use comments i.e. to make it easier to read your code for others when working in a team,<br />
or to make it easier to understand what each part of the code does when trying to teach someone programming,<br />
or for commenting out some parts of the code that didn't work as expected to fix them later.<br />
<br />
Single line comments are done as follows:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=84" target="_blank" title="">Single Line Comment.jpg</a> (Size: 2.52 KB / Downloads: 495)
<!-- end: postbit_attachments_attachment --><br />
<br />
If you have done it correctly your HTML document should look like this now:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=85" target="_blank" title="">Basic layout for servers with single line comment.jpg</a> (Size: 19 KB / Downloads: 530)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Comments will be ignored by the browser.<br />
You can use comments i.e. to make it easier to read your code for others when working in a team,<br />
or to make it easier to understand what each part of the code does when trying to teach someone programming,<br />
or for commenting out some parts of the code that didn't work as expected to fix them later.<br />
<br />
Single line comments are done as follows:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=84" target="_blank" title="">Single Line Comment.jpg</a> (Size: 2.52 KB / Downloads: 495)
<!-- end: postbit_attachments_attachment --><br />
<br />
If you have done it correctly your HTML document should look like this now:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=85" target="_blank" title="">Basic layout for servers with single line comment.jpg</a> (Size: 19 KB / Downloads: 530)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[HTML5 Doctype declaration]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=2490</link>
			<pubDate>Sun, 21 Feb 2021 13:35:17 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=2490</guid>
			<description><![CDATA[The doctype declaration itself is not a HTML tag.<br />
It's information for the browser on what kind of document to expect.<br />
We can tell the browser to expect HTML5 like this:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=82" target="_blank" title="">DOCTYPE HTML.jpg</a> (Size: 2.49 KB / Downloads: 520)
<!-- end: postbit_attachments_attachment --><br />
<br />
Since the doctype declaration is not case sensitive other declarations are possible, too.<br />
For example:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=83" target="_blank" title="">Other possible doctype declarations.jpg</a> (Size: 5.68 KB / Downloads: 485)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[The doctype declaration itself is not a HTML tag.<br />
It's information for the browser on what kind of document to expect.<br />
We can tell the browser to expect HTML5 like this:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=82" target="_blank" title="">DOCTYPE HTML.jpg</a> (Size: 2.49 KB / Downloads: 520)
<!-- end: postbit_attachments_attachment --><br />
<br />
Since the doctype declaration is not case sensitive other declarations are possible, too.<br />
For example:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=83" target="_blank" title="">Other possible doctype declarations.jpg</a> (Size: 5.68 KB / Downloads: 485)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Basic layout of a HTML5 document on a server]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=2489</link>
			<pubDate>Sun, 21 Feb 2021 12:38:05 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=2489</guid>
			<description><![CDATA[If you want to upload your HTML to a server and make sure that it works correctly<br />
you should add a default charset and force the browser to make it responsible.<br />
In order to do that we will add the following two lines in the head section of the HTML document:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=80" target="_blank" title="">Charset and responsive.jpg</a> (Size: 9 KB / Downloads: 552)
<!-- end: postbit_attachments_attachment --><br />
<br />
If you have done it correctly your HTML document should look like this now:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=81" target="_blank" title="">Responsive basic layout of a HTML document with charset.jpg</a> (Size: 21.2 KB / Downloads: 529)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[If you want to upload your HTML to a server and make sure that it works correctly<br />
you should add a default charset and force the browser to make it responsible.<br />
In order to do that we will add the following two lines in the head section of the HTML document:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=80" target="_blank" title="">Charset and responsive.jpg</a> (Size: 9 KB / Downloads: 552)
<!-- end: postbit_attachments_attachment --><br />
<br />
If you have done it correctly your HTML document should look like this now:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=81" target="_blank" title="">Responsive basic layout of a HTML document with charset.jpg</a> (Size: 21.2 KB / Downloads: 529)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Forcing the browser to read the basic HTML layout as HTML5]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=2488</link>
			<pubDate>Sun, 21 Feb 2021 12:22:34 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=2488</guid>
			<description><![CDATA[To force the browser to strictly read your HTML document as HTML we have to add the following line to the code:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=78" target="_blank" title="">DOCTYPE HTML.jpg</a> (Size: 2.49 KB / Downloads: 520)
<!-- end: postbit_attachments_attachment --><br />
<br />
If you've done it correctly your HTML document should look like this now:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=79" target="_blank" title="">Forced HTML5 Basic layout of a HTML document.jpg</a> (Size: 11.64 KB / Downloads: 461)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[To force the browser to strictly read your HTML document as HTML we have to add the following line to the code:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=78" target="_blank" title="">DOCTYPE HTML.jpg</a> (Size: 2.49 KB / Downloads: 520)
<!-- end: postbit_attachments_attachment --><br />
<br />
If you've done it correctly your HTML document should look like this now:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=79" target="_blank" title="">Forced HTML5 Basic layout of a HTML document.jpg</a> (Size: 11.64 KB / Downloads: 461)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Basic layout of a HTML document]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=2487</link>
			<pubDate>Sun, 21 Feb 2021 12:16:30 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=1">Qomplainerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=2487</guid>
			<description><![CDATA[The basic layout of a HTML document looks like this:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=77" target="_blank" title="">Basic layout of a HTML document.jpg</a> (Size: 10.14 KB / Downloads: 419)
<!-- end: postbit_attachments_attachment --><br />
<br />
If you save it as i.e. Index.html and open it in your browser it works.]]></description>
			<content:encoded><![CDATA[The basic layout of a HTML document looks like this:<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://qomplainerzschool.lima-city.de/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=77" target="_blank" title="">Basic layout of a HTML document.jpg</a> (Size: 10.14 KB / Downloads: 419)
<!-- end: postbit_attachments_attachment --><br />
<br />
If you save it as i.e. Index.html and open it in your browser it works.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Marking UP the Blog in HTML5]]></title>
			<link>https://qomplainerzschool.lima-city.de/showthread.php?tid=68</link>
			<pubDate>Sat, 29 Aug 2020 22:51:37 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://qomplainerzschool.lima-city.de/member.php?action=profile&uid=2">Derp</a>]]></dc:creator>
			<guid isPermaLink="false">https://qomplainerzschool.lima-city.de/showthread.php?tid=68</guid>
			<description><![CDATA[we will build Simple blog in HTML CSS JS and Jquery which can fall under JS category <br />
lets start by Marking it up <br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;html&gt;<br />
  &lt;head&gt;<br />
  &nbsp;&nbsp;&nbsp;&nbsp;&lt;link rel="icon" href="assets/icons/derp.jpeg" type="image/jpeg" sizes="16x16"&gt;<br />
  &nbsp;&nbsp;&nbsp;&nbsp;        &lt;meta charset="utf-8"&gt;<br />
        &lt;meta http-equiv="X-UA-Compatible" content="IE=edge"&gt;<br />
        &lt;meta name="viewport" content="width=device-width, initial-scale=1"&gt;<br />
    &lt;title&gt;Derp Blog&lt;/title&gt;<br />
    &lt;link rel = "stylesheet" type = "text/css" href = "style.css" /&gt;<br />
  &lt;/head&gt;<br />
  &lt;body&gt;<br />
 &lt;!-- The sidebar --&gt;<br />
&lt;div class="sidebar"&gt;<br />
  &lt;a class="active" href="index.html"&gt;Home&lt;/a&gt;<br />
  &lt;a href="faceboob.html"&gt;Facebook News&lt;/a&gt;<br />
  &lt;a href="about.html"&gt;About&lt;/a&gt;<br />
&lt;/div&gt;<br />
<br />
&lt;!-- Page content --&gt;<br />
&lt;div class="content"&gt;<br />
HOME PAGE<br />
&lt;div class="post1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;p&gt; welcome to my simple blog its simple for sure ?&lt;/p&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;p&gt; well help yourself here am just expressing how much derps exist in this &lt;i&gt;BEEEEEEEB&lt;/i&gt; world ?&lt;/p&gt;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp; &lt;/div&gt;<br />
&lt;/div&gt;<br />
<br />
<br />
  &lt;/body&gt;<br />
&lt;/html&gt;</code></div></div><br />
here we added simple sidebar and the<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;div&gt;</code></div></div><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"> tag defines a division or a section in an HTML document and <span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font">is used as a container for HTML elements which is then styled with CSS or manipulated with JavaScript and <span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font">easily styled by using the class or id attribute as we here using the class </span></span></span></span></span></span></span></span></span><br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;link rel = "stylesheet" type = "text/css" href = "style.css" /&gt;</code></div></div><br />
<span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="font-size: small;" class="mycode_size">the link tag here used to </span><span style="font-size: x-small;" class="mycode_size">simply link my css file that contains my CSS codes to get applied during the page load and it should be between the </span></span></span></span></span></span></span><br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;head&gt; &lt;/head&gt;</code></div></div><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="font-size: small;" class="mycode_size"> </span></span></span></span></span></span></span><br />
<span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font">tags or it will not work </span></span></span></span></span></span></span></span></span><br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;meta name="viewport" content="width=device-width, initial-scale=1"&gt;</code></div></div><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font">this meta tags here used to make the page responsive on mobile phones or small screens by scaling the page for it </span></span></span></span></span></span></span></span></span><br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;link rel="icon" href="assets/icons/derp.jpeg" type="image/jpeg" sizes="16x16"&gt;</code></div></div><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font">the link tags here used to link my favicon which you can see at the right of browser tab as small icon </span></span></span></span></span></span></span></span></span><br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;a class="active" href="index.html"&gt;Home&lt;/a&gt;</code></div></div><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><a></a> are anchor tags they used to link a page on the website ... in nutshell </span></span></span></span></span></span></span></span></span><br />
<span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="font-size: small;" class="mycode_size">while the active class is when you </span><span style="font-size: x-small;" class="mycode_size">select</span><span style="font-size: small;" class="mycode_size"> home page from CSS you will define the background color and text color of the selected </span></span></span></span></span></span></span><br />
<span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="font-size: small;" class="mycode_size">page in the sidebar or navigation bar </span></span></span></span></span></span></span><br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;p&gt; welcome to my simple blog its simple for sure ?&lt;/p&gt;</code></div></div><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="font-size: small;" class="mycode_size"><p> </p> tags are the paragraph tags just add text in between to be seen in the bag </span></span></span></span></span></span></span><br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;i&gt;BEEEEEEEB&lt;/i&gt;</code></div></div><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="font-size: small;" class="mycode_size"> <i> </i> tags that showing text in ITALIC font </span></span></span></span></span></span></span>]]></description>
			<content:encoded><![CDATA[we will build Simple blog in HTML CSS JS and Jquery which can fall under JS category <br />
lets start by Marking it up <br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;html&gt;<br />
  &lt;head&gt;<br />
  &nbsp;&nbsp;&nbsp;&nbsp;&lt;link rel="icon" href="assets/icons/derp.jpeg" type="image/jpeg" sizes="16x16"&gt;<br />
  &nbsp;&nbsp;&nbsp;&nbsp;        &lt;meta charset="utf-8"&gt;<br />
        &lt;meta http-equiv="X-UA-Compatible" content="IE=edge"&gt;<br />
        &lt;meta name="viewport" content="width=device-width, initial-scale=1"&gt;<br />
    &lt;title&gt;Derp Blog&lt;/title&gt;<br />
    &lt;link rel = "stylesheet" type = "text/css" href = "style.css" /&gt;<br />
  &lt;/head&gt;<br />
  &lt;body&gt;<br />
 &lt;!-- The sidebar --&gt;<br />
&lt;div class="sidebar"&gt;<br />
  &lt;a class="active" href="index.html"&gt;Home&lt;/a&gt;<br />
  &lt;a href="faceboob.html"&gt;Facebook News&lt;/a&gt;<br />
  &lt;a href="about.html"&gt;About&lt;/a&gt;<br />
&lt;/div&gt;<br />
<br />
&lt;!-- Page content --&gt;<br />
&lt;div class="content"&gt;<br />
HOME PAGE<br />
&lt;div class="post1"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;p&gt; welcome to my simple blog its simple for sure ?&lt;/p&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;p&gt; well help yourself here am just expressing how much derps exist in this &lt;i&gt;BEEEEEEEB&lt;/i&gt; world ?&lt;/p&gt;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp; &lt;/div&gt;<br />
&lt;/div&gt;<br />
<br />
<br />
  &lt;/body&gt;<br />
&lt;/html&gt;</code></div></div><br />
here we added simple sidebar and the<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;div&gt;</code></div></div><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"> tag defines a division or a section in an HTML document and <span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font">is used as a container for HTML elements which is then styled with CSS or manipulated with JavaScript and <span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font">easily styled by using the class or id attribute as we here using the class </span></span></span></span></span></span></span></span></span><br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;link rel = "stylesheet" type = "text/css" href = "style.css" /&gt;</code></div></div><br />
<span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="font-size: small;" class="mycode_size">the link tag here used to </span><span style="font-size: x-small;" class="mycode_size">simply link my css file that contains my CSS codes to get applied during the page load and it should be between the </span></span></span></span></span></span></span><br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;head&gt; &lt;/head&gt;</code></div></div><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="font-size: small;" class="mycode_size"> </span></span></span></span></span></span></span><br />
<span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font">tags or it will not work </span></span></span></span></span></span></span></span></span><br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;meta name="viewport" content="width=device-width, initial-scale=1"&gt;</code></div></div><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font">this meta tags here used to make the page responsive on mobile phones or small screens by scaling the page for it </span></span></span></span></span></span></span></span></span><br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;link rel="icon" href="assets/icons/derp.jpeg" type="image/jpeg" sizes="16x16"&gt;</code></div></div><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font">the link tags here used to link my favicon which you can see at the right of browser tab as small icon </span></span></span></span></span></span></span></span></span><br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;a class="active" href="index.html"&gt;Home&lt;/a&gt;</code></div></div><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><a></a> are anchor tags they used to link a page on the website ... in nutshell </span></span></span></span></span></span></span></span></span><br />
<span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="font-size: small;" class="mycode_size">while the active class is when you </span><span style="font-size: x-small;" class="mycode_size">select</span><span style="font-size: small;" class="mycode_size"> home page from CSS you will define the background color and text color of the selected </span></span></span></span></span></span></span><br />
<span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="font-size: small;" class="mycode_size">page in the sidebar or navigation bar </span></span></span></span></span></span></span><br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;p&gt; welcome to my simple blog its simple for sure ?&lt;/p&gt;</code></div></div><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="font-size: small;" class="mycode_size"><p> </p> tags are the paragraph tags just add text in between to be seen in the bag </span></span></span></span></span></span></span><br />
<br />
<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;i&gt;BEEEEEEEB&lt;/i&gt;</code></div></div><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="color: #000000;" class="mycode_color"><span style="font-family: Verdana, sans-serif;" class="mycode_font"><span style="font-size: small;" class="mycode_size"> <i> </i> tags that showing text in ITALIC font </span></span></span></span></span></span></span>]]></content:encoded>
		</item>
	</channel>
</rss>