<?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: Dana Ordalina (Khadijah)</title>
    <description>The latest articles on DEV Community by Dana Ordalina (Khadijah) (@dev_khadijah).</description>
    <link>https://dev.to/dev_khadijah</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%2F3821492%2F915052f9-b6dc-49f6-9de6-a81d2f382fb1.jpg</url>
      <title>DEV Community: Dana Ordalina (Khadijah)</title>
      <link>https://dev.to/dev_khadijah</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dev_khadijah"/>
    <language>en</language>
    <item>
      <title>Kubernetes</title>
      <dc:creator>Dana Ordalina (Khadijah)</dc:creator>
      <pubDate>Mon, 23 Mar 2026 09:09:23 +0000</pubDate>
      <link>https://dev.to/dev_khadijah/kubernetes-99l</link>
      <guid>https://dev.to/dev_khadijah/kubernetes-99l</guid>
      <description>&lt;p&gt;Kubernetes environments for containerized ​applications.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Kubernetes&lt;/strong&gt; is a system for managing containers. Think of it like having a bunch of applications packed into containers, kind of like putting them in boxes. Kubernetes automates how you run, scale, and manage those containers so everything stays reliable and stable. &lt;br&gt;
&lt;strong&gt;Kubernetes&lt;/strong&gt; makes your life easier by taking away the need to manually keep track of where and how to run your applications. It automates those tasks that would otherwise take you a lot of time and effort.&lt;br&gt;
&lt;strong&gt;Kubernetes **automatically keeps your system in the declared state you define, and experienced admins only use imperative configurations as quick temporary fixes while they’re building out a declarative configuration. Basically, think of it this way: **Kubernetes&lt;/strong&gt; can handle apps that don’t remember anything—like a simple web server—and also apps that do save user data, like sessions or other stored information. In other words, it can manage both &lt;code&gt;stateless&lt;/code&gt; applications and &lt;code&gt;stateful&lt;/code&gt; ones that keep data long-term. &lt;strong&gt;Kubernetes&lt;/strong&gt; is &lt;code&gt;open-source&lt;/code&gt;, you can run it anywhere—on your own machine or with any cloud provider. In other words, your workloads aren’t locked in one place, and you can move them around easily whenever you need to. &lt;/p&gt;

</description>
      <category>kubernetes</category>
      <category>containers</category>
      <category>kubectl</category>
      <category>devops</category>
    </item>
    <item>
      <title>Use HTML to specify website contents</title>
      <dc:creator>Dana Ordalina (Khadijah)</dc:creator>
      <pubDate>Fri, 13 Mar 2026 10:32:00 +0000</pubDate>
      <link>https://dev.to/dev_khadijah/use-html-to-specify-website-contents-5gmk</link>
      <guid>https://dev.to/dev_khadijah/use-html-to-specify-website-contents-5gmk</guid>
      <description>&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%2F5tm26metvciqf1vju7rc.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%2F5tm26metvciqf1vju7rc.png" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;HTML&lt;/strong&gt; is the language used to create the structure of a web page. It tells the browser what should appear on the page and where it should be placed.&lt;/p&gt;

&lt;p&gt;For example, &lt;strong&gt;HTML&lt;/strong&gt; shows where the heading is, where the text goes, where images appear, and where links or buttons are located.&lt;/p&gt;

&lt;p&gt;You can think of &lt;strong&gt;HTML&lt;/strong&gt; as the skeleton of a website. It builds the basic structure of the page.&lt;/p&gt;

&lt;p&gt;When we create a &lt;code&gt;website&lt;/code&gt;, we use &lt;strong&gt;HTML&lt;/strong&gt; because web browsers understand HTML and use it to display the content of the page to users.&lt;/p&gt;

&lt;p&gt;For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;h1&amp;gt;&lt;/span&gt;My Website&lt;span class="nt"&gt;&amp;lt;/h1&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;p&amp;gt;&lt;/span&gt;Welcome to my website!&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&lt;/span&gt;

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

&lt;/div&gt;



&lt;p&gt;In this example, &lt;code&gt;h1&lt;/code&gt; creates a heading and &lt;code&gt;p&lt;/code&gt; creates a paragraph of text. The browser reads this code and shows it on the web page.&lt;/p&gt;

&lt;p&gt;In simple words, &lt;strong&gt;HTML&lt;/strong&gt; is the language that organizes and structures the content of a website.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="cp"&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;html&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;head&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;title&amp;gt;&lt;/span&gt;Title of the document&lt;span class="nt"&gt;&amp;lt;/title&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/head&amp;gt;&lt;/span&gt;

&lt;span class="nt"&gt;&amp;lt;body&amp;gt;&lt;/span&gt;
The content of the document......
&lt;span class="nt"&gt;&amp;lt;/body&amp;gt;&lt;/span&gt;

&lt;span class="nt"&gt;&amp;lt;/html&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This is a basic structure of an &lt;strong&gt;HTML&lt;/strong&gt; document. Every web page usually starts with this structure.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;This line tells the browser that the document is written in HTML5.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;html&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;This tag is the main container for the entire HTML document. All content of the webpage is placed inside this tag.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;The head section contains information about the webpage that is not directly shown on the page, such as the title and other settings.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;title&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;This tag defines the title of the webpage. The title appears on the browser tab.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;body&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;The body section contains all the content that users see on the webpage, such as text, images, links, and buttons.&lt;/p&gt;

&lt;p&gt;The content of the document...&lt;br&gt;
This is where the visible content of the webpage goes.&lt;br&gt;
In simple words, this code shows the basic layout of a web page and how its main parts are organized.&lt;/p&gt;

</description>
      <category>html</category>
      <category>website</category>
      <category>frontend</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
