<?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: Zeniat Gbadamosi</title>
    <description>The latest articles on DEV Community by Zeniat Gbadamosi (@niqabigeek).</description>
    <link>https://dev.to/niqabigeek</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%2F1008601%2F19c9aec0-4d0c-4910-88ee-2b015c99f746.jpeg</url>
      <title>DEV Community: Zeniat Gbadamosi</title>
      <link>https://dev.to/niqabigeek</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/niqabigeek"/>
    <language>en</language>
    <item>
      <title>How to create a simple web page using HTML and CSS</title>
      <dc:creator>Zeniat Gbadamosi</dc:creator>
      <pubDate>Tue, 24 Jan 2023 15:26:18 +0000</pubDate>
      <link>https://dev.to/niqabigeek/how-to-create-a-simple-webpage-using-html-and-css-5jh</link>
      <guid>https://dev.to/niqabigeek/how-to-create-a-simple-webpage-using-html-and-css-5jh</guid>
      <description>&lt;p&gt;HTML (Hypertext Markup Language) is a markup language used to structure the content of a website. It defines the structure and layout of a web page, using a set of tags and attributes to create elements such as headings, paragraphs, images, and links.&lt;/p&gt;

&lt;p&gt;CSS (Cascading Style Sheets) is a stylesheet language used to describe the presentation of a document written in HTML. CSS can be used to control the layout, colors, fonts, and other visual elements of a website.&lt;/p&gt;

&lt;p&gt;Together, HTML and CSS form the backbone of web development, providing the structure and design for websites. HTML defines the content and structure of a web page, while CSS controls its presentation and layout. These two technologies are used together to create visually appealing and user-friendly websites.&lt;/p&gt;

&lt;p&gt;In today's article, We will be diving into the world of web development by creating a simple webpage using HTML and CSS, and by the end of this tutorial, you will have a solid understanding of how to use these languages to create your web page. We will cover the basics of HTML and CSS, including how to structure your webpage, images, and links, and style your web page using CSS. &lt;/p&gt;

&lt;p&gt;In today's tutorial, you are going to be recreating this simple web page design I made with &lt;a href="https://https://www.figma.com/file/GRoHsVhW0hGBAthZgunu1d/A-simple-web-structure-design?node-id=0%3A1&amp;amp;t=BcGsNNUKjE" rel="noopener noreferrer"&gt;Figma&lt;/a&gt;, So grab a cup of coffee, and let's start creating our webpage!&lt;/p&gt;




&lt;h2&gt;
  
  
  First Step
&lt;/h2&gt;

&lt;p&gt;To create a simple web page using HTML and CSS, you will need to decide which environment you are very much comfortable using, which typically includes installing a text editor or an integrated development environment (IDE) for writing your code. &lt;/p&gt;

&lt;p&gt;To begin:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;First, create a new text document and save it as "index.html" in a new folder on your computer.&lt;/li&gt;
&lt;li&gt;Add the following basic HTML structure to your "index.html" file:&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flcgr701q3quv13l5echh.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flcgr701q3quv13l5echh.png" alt="codesnap.png" width="800" height="318"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Second Step
&lt;/h2&gt;

&lt;p&gt;You will then move on to create the HTML structure of the web page, in this tutorial our web page structure involves the use of some HTML &lt;a href="https://www.w3schools.com/tags/" rel="noopener noreferrer"&gt;tags&lt;/a&gt; to define the different elements of the page, such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;header tag &lt;code&gt;&amp;lt;header&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;navigation tag &lt;code&gt;&amp;lt;nav&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;paragraph tag &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;unorder tag &lt;code&gt;&amp;lt;ul&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;list tag &lt;code&gt;&amp;lt;li&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;div tag &lt;code&gt;&amp;lt;div&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;image tag &lt;code&gt;&amp;lt;img src=""&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;link tag &lt;code&gt;&amp;lt;a href=""&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;footer tag &lt;code&gt;&amp;lt;footer&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These tags are used to create the layout and structure of the page and can be nested within each other to create more complex layouts. Usually, some of this content is added to the "body" section of your HTML file.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkzuionfd94p4rmx7ky31.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkzuionfd94p4rmx7ky31.png" alt="codesnap.png" width="800" height="637"&gt;&lt;/a&gt;&lt;/p&gt;
The navigation structure of a web page



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3o6bqlp3ns38vstqz919.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3o6bqlp3ns38vstqz919.png" alt="Icodesnap.png" width="800" height="997"&gt;&lt;/a&gt;&lt;/p&gt;
Web page HTML structure



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3u14a51pov3axsx85k6n.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3u14a51pov3axsx85k6n.png" alt="webpage.png" width="800" height="405"&gt;&lt;/a&gt;&lt;/p&gt;
"index.html" file on a web browser






&lt;h2&gt;
  
  
  Third Step
&lt;/h2&gt;

&lt;p&gt;This step usually requires you to style your Web page using CSS, that is,  (Cascading Style Sheet). To do this, you must first:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Start by adding a new text document and saving it as "style.css" in the same folder as your "index.html" file.&lt;/li&gt;
&lt;li&gt;Link your CSS file to your HTML file by adding the following line within the head section of your HTML:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;        &amp;lt;link rel="stylesheet" href="style.css"&amp;gt;

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

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frgv517vhlf1ld2hdch8e.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frgv517vhlf1ld2hdch8e.png" alt="css link tag" width="800" height="339"&gt;&lt;/a&gt;&lt;br&gt;CSS external linking
&lt;/p&gt;




&lt;h2&gt;
  
  
  Fourth Step
&lt;/h2&gt;

&lt;p&gt;The fourth step usually involves you adding styling rules for different elements on your webpage. One of the key concepts in CSS is selectors and properties.&lt;/p&gt;

&lt;p&gt;CSS selectors are used in selecting HTML elements on a webpage to apply styles to it. There are several types of selectors, including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Class selector:&lt;/strong&gt; These are denoted by a period &lt;strong&gt;(.)&lt;/strong&gt; before the class name. For example, to select all elements with the class "example", you would use the selector ".example".
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;`&amp;lt;h1 class="example"&amp;gt; I am a girl &amp;lt;/h1&amp;gt;`
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;`&amp;lt;style&amp;gt;
      .example{ 
              font-size: 12px;
             }

&amp;lt;/style&amp;gt;`
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;ID selectors:&lt;/strong&gt; These are denoted by a pound sign ** (#)** before the ID name. For example, to select the element with the ID "my-element", you would use the selector "#my-element".
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;`&amp;lt;p id="my-element"&amp;gt; I am a Niqabi Coder &amp;lt;/p&amp;gt;`
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;`&amp;lt;style&amp;gt;
      #my-element{ 
              color: #ffffff;
             }

&amp;lt;/style&amp;gt;`
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fce1ljrskhr26puokss8t.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fce1ljrskhr26puokss8t.png" alt="CodeSnap.png" width="800" height="1012"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;HTML structure with CSS selectors&lt;/p&gt;




&lt;h2&gt;
  
  
  Fifth Step
&lt;/h2&gt;

&lt;p&gt;At this stage, you will then go on to add CSS properties to define the styles that are applied to the selected elements. Some basic properties include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Color:&lt;/strong&gt; which sets the text color of an element. The color property is set using a color value, such as "color: red" or "color: #ff0000".&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Font size:&lt;/strong&gt; which sets the size of the text. The font-size property is set using a unit of measurement, such as "font-size: 16px" or "font-size: 1.2rem". &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Margin:&lt;/strong&gt; This sets the space outside of an element. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Padding:&lt;/strong&gt; which sets the space inside of an element. The padding property is set using a unit of measurement, such as "padding: 10px" or "padding: 1em".&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now, with your basic understanding of CSS selectors and properties, you can start styling your web pages and making them look great! To learn more about some of the CSS properties used in this tutorial, visit &lt;a href="https://www.w3schools.com/css/" rel="noopener noreferrer"&gt;w3schools&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Sixth Step
&lt;/h2&gt;

&lt;p&gt;Finally, open your "index.html" file in a web browser, Your simple web page should now be visible, with the styles defined in your CSS file applied to the elements on the page.&lt;/p&gt;




&lt;p&gt;In conclusion, creating a simple webpage using HTML and CSS is a relatively easy process that allows you to create a professional-looking web page with minimal effort. By using basic HTML tags, you can create the structure of your webpage and add text and images to it. CSS can then be used to add style and layout to your webpage, allowing you to control the appearance of your webpage. With a little practice, you will be able to create a web page that is both functional and visually appealing. Remember that web development is a skill and it needs time and practice to improve, so keep experimenting and learning new things!&lt;/p&gt;




&lt;h2&gt;
  
  
  Learning Resources
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Figma Design:&lt;/strong&gt; &lt;a href="https://www.figma.com/file/GRoHsVhW0hGBAthZgunu1d/A-simple-web-structure-design?node-id=0%3A1&amp;amp;t=A63oJp8O2CCs3U6n-0" rel="noopener noreferrer"&gt;Web page UI Design&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Source Code:&lt;/strong&gt; &lt;a href="https://github.com/Niqabigeek/Devblog-tutorial/tree/master" rel="noopener noreferrer"&gt;github&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Live Link:&lt;/strong&gt; &lt;a href="https://niqabigeek.github.io/Devblog-tutorial/" rel="noopener noreferrer"&gt;Web page&lt;/a&gt;&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>systems</category>
      <category>aws</category>
    </item>
    <item>
      <title>Mastering the Basics of HTML: A Beginner's Guide</title>
      <dc:creator>Zeniat Gbadamosi</dc:creator>
      <pubDate>Tue, 17 Jan 2023 00:31:49 +0000</pubDate>
      <link>https://dev.to/niqabigeek/mastering-the-basics-of-html-a-beginners-guide-2kj0</link>
      <guid>https://dev.to/niqabigeek/mastering-the-basics-of-html-a-beginners-guide-2kj0</guid>
      <description>&lt;p&gt;Getting started in web development can be a challenging, but also rewarding journey. There are many different tools, technologies, and frameworks to learn, and it can be overwhelming to know where to start. However, with a little guidance and a lot of practice, you can become a proficient web developer in no time.&lt;/p&gt;

&lt;p&gt;As a newbie in web development, one very important thing you need to understand is what environment you need to write your first few lines of code, if you are worried/unsure about what code editor to use, I will recommend you install a Visual Studio Code in your Windows, macOS or Linux. &lt;a href="https://code.visualstudio.com/download"&gt;Download here&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  A brief Intro to HTML
&lt;/h1&gt;

&lt;p&gt;HTML, short for &lt;strong&gt;Hypertext Markup Language&lt;/strong&gt;, is the backbone of web development, it provides the structure and layout for all the text, images, and other multimedia elements that make up a web page and is also essential for creating structured and well-formatted web pages. &lt;/p&gt;

&lt;p&gt;In this article, you will learn the comprehensive guide to understanding HTML, covering the basics of web development and some of the most important tags and elements that you need to know to create your web pages!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--3PPkWVL9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/j0mhaofir5wor3qf9qet.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--3PPkWVL9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/j0mhaofir5wor3qf9qet.jpg" alt="HTML as the backbone of a webpage" width="736" height="836"&gt;&lt;/a&gt;&lt;/p&gt;
HTML as the skeleton of a webpage



&lt;h1&gt;
  
  
  HTML Structure
&lt;/h1&gt;

&lt;p&gt;The structure of an HTML document is simple and easy to understand. It consists of three main parts which include;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Head&lt;/li&gt;
&lt;li&gt;Body &lt;/li&gt;
&lt;li&gt;Doctype&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;The head:&lt;/strong&gt; contains information about the document, such as the title, which is displayed in the browser's title bar or tab. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The body:&lt;/strong&gt; contains the actual content of the web page, such as; &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Text&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Images &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Links &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;The doctype:&lt;/strong&gt; is a declaration that tells the web browser which version of HTML the document is written in.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--9j64Ocfy--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8dwsqcpjrcfrty46f8mg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--9j64Ocfy--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8dwsqcpjrcfrty46f8mg.png" alt="A structure of an HTML" width="880" height="455"&gt;&lt;/a&gt;&lt;/p&gt;
A structure of an HTML



&lt;p&gt;After learning about these structures, you move on to understand what elements are, and how they make up the various layouts/component of a web page.&lt;/p&gt;

&lt;h2&gt;
  
  
  What are Elements
&lt;/h2&gt;

&lt;p&gt;Elements are building blocks of an HTML document and are used to create the structure and layout of a webpage. Elements are enclosed in &lt;strong&gt;&amp;lt; tags &amp;gt;&lt;/strong&gt; and can contain other elements, as well as &lt;strong&gt;text&lt;/strong&gt; and &lt;strong&gt;attributes.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--jz4Nsj7W--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/onu1mmclj7s7pd85fe46.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--jz4Nsj7W--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/onu1mmclj7s7pd85fe46.png" alt="HTML elements" width="880" height="455"&gt;&lt;/a&gt;&lt;/p&gt;
Example of an HTML element



&lt;p&gt;One of the most important elements of an HTML document is the &lt;strong&gt;tag&lt;/strong&gt;. A tag is a keyword enclosed in angle brackets, such as &lt;strong&gt;&amp;lt; html &amp;gt;&lt;/strong&gt; or &lt;strong&gt;&amp;lt; body &amp;gt;.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Tags are used to describe the type of content that is contained within them, Some common tags include: &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&amp;lt; html &amp;gt;:&lt;/strong&gt; The root element that contains all other elements on the page.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&amp;lt; head &amp;gt;:&lt;/strong&gt; Contains metadata about the document, such as the title and link to CSS stylesheets.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&amp;lt; body &amp;gt;:&lt;/strong&gt; Contains the document's content displayed in the web browser.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&amp;lt; div &amp;gt;:&lt;/strong&gt; A container for HTML elements, used for grouping and applying CSS styles.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&amp;lt; p &amp;gt;:&lt;/strong&gt; Defines a paragraph of text.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&amp;lt; h1 &amp;gt;:&lt;/strong&gt; heading tag is used to define the headings of a page. &lt;br&gt;
There are 6 heading elements which include; h1, h2, h3, h4, h5, and h6; with h1 being the highest level and h6 being the least.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&amp;lt; a &amp;gt;:&lt;/strong&gt; Defines a hyperlink to another web page or a specific location on the same page.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&amp;lt; img &amp;gt;:&lt;/strong&gt; Displays an image on the web page.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&amp;lt; ul &amp;gt;:&lt;/strong&gt; Creates an unordered list of items.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&amp;lt; ol &amp;gt;:&lt;/strong&gt; Creates an ordered list of items.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&amp;lt; li &amp;gt;:&lt;/strong&gt; Defines a list item, used within &amp;lt; ul &amp;gt; and &amp;lt; ol &amp;gt; elements.&lt;/p&gt;

&lt;p&gt;There are many other tags like &amp;lt; header &amp;gt;, &amp;lt; nav &amp;gt;, &amp;lt; footer &amp;gt;, &amp;lt; main &amp;gt;, &amp;lt; article &amp;gt;, &amp;lt; section &amp;gt;,  &amp;lt; button &amp;gt;, &amp;lt; form &amp;gt;, &amp;lt; label &amp;gt;, &amp;lt; input &amp;gt;, &amp;lt; select &amp;gt;, &amp;lt; textarea &amp;gt;, &amp;lt; pre &amp;gt;. Learn about the various HTML tags&lt;a href="https://www.geeksforgeeks.org/html-tags-a-to-z-list/"&gt;here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Another important element of HTML is the &lt;strong&gt;attribute.&lt;/strong&gt; Attributes provide additional information about an element and are added to the opening tag of an element. &lt;/p&gt;

&lt;p&gt;Some common attributes include;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;src:&lt;/strong&gt; which is used to specify the source of an image.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;href:&lt;/strong&gt; which is used to create a link to another web page.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;class:&lt;/strong&gt; which is used to specify a class for an element, allowing you to apply CSS styles to it.&lt;/p&gt;

&lt;p&gt;As you become more familiar with HTML, you'll find that you can create more advanced web pages that are more interactive and engaging. Read more about attributes &lt;a href="https://www.w3schools.com/html/html_attributes.asp"&gt;here&lt;/a&gt;&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;img src="img_girl.jpg"&amp;gt;
&amp;lt;a href="https://www.w3schools.com/html/html_attributes.asp"&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;p class="paragraph"&amp;gt;&amp;lt;/p&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In conclusion, HTML is the basic building block of web pages and essential to understanding for a web developer. It provides the structure and layout for all the text, images, and other multimedia elements that make up a web page. Understanding the basics of HTML is crucial for anyone who wants to create web pages. With a solid understanding of HTML, you'll be able to create simple web pages and advance to more complex designs as your skills improve.&lt;/p&gt;

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