<?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: Lawrence malachi</title>
    <description>The latest articles on DEV Community by Lawrence malachi (@lawrencemalachi).</description>
    <link>https://dev.to/lawrencemalachi</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4092503%2F7105dca8-9c33-4b44-91e4-9a86ffc46e7c.png</url>
      <title>DEV Community: Lawrence malachi</title>
      <link>https://dev.to/lawrencemalachi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lawrencemalachi"/>
    <language>en</language>
    <item>
      <title>Inline &amp; block</title>
      <dc:creator>Lawrence malachi</dc:creator>
      <pubDate>Mon, 31 Aug 2026 07:36:24 +0000</pubDate>
      <link>https://dev.to/lawrencemalachi/inline-block-1me4</link>
      <guid>https://dev.to/lawrencemalachi/inline-block-1me4</guid>
      <description>&lt;p&gt;In HTML, elements are divided into two main display categories: block-level elements and inline elements.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Block-Level Elements&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;A. Behavior: Start on a new line and automatically stretch to fill the full width of their container.&lt;/p&gt;

&lt;p&gt;B. Layout: Can have width, height, margin, and padding set on all four sides.&lt;/p&gt;

&lt;p&gt;C. Purpose: Used to build the main structural layout of a web page.&lt;/p&gt;

&lt;p&gt;Common Examples: &lt;/p&gt;, &lt;p&gt;, &lt;/p&gt;
&lt;h1&gt; to &lt;/h1&gt;
&lt;h6&gt;, &lt;ul&gt;, &lt;ol&gt;, &lt;li&gt;, , .

&lt;ol&gt;
&lt;li&gt;Inline Elements&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;A. Behavior: Do not start on a new line; they sit side-by-side within the flow of text.&lt;/p&gt;

&lt;p&gt;B Layout: Only take up as much width as their content requires. Setting width and height properties has no effect, and top/bottom margins are ignored.&lt;/p&gt;

&lt;p&gt;c Purpose: Used to format or apply styles to specific words or small inline portions of text.&lt;/p&gt;


&lt;p&gt;Common Examples: &lt;span&gt;, &lt;a&gt;, &lt;strong&gt;, &lt;em&gt;, &lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;&lt;em&gt;&lt;a href="" class="article-body-image-wrapper"&gt;&lt;img&gt;&lt;/a&gt;, .&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;a&gt;&lt;strong&gt;&lt;em&gt;&lt;br&gt;
&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/ul&gt;
&lt;/h6&gt;

</description>
      <category>programming</category>
      <category>webdev</category>
    </item>
    <item>
      <title>HTML Attributes and their use/function</title>
      <dc:creator>Lawrence malachi</dc:creator>
      <pubDate>Fri, 28 Aug 2026 09:15:30 +0000</pubDate>
      <link>https://dev.to/lawrencemalachi/html-attributes-and-their-usefunction-1c4n</link>
      <guid>https://dev.to/lawrencemalachi/html-attributes-and-their-usefunction-1c4n</guid>
      <description>&lt;p&gt;HTML attributes are extra bits of info you add inside an HTML tag to change how that element behaves or looks.&lt;/p&gt;

&lt;p&gt;Think of a tag like noun, and attributes as the adjective&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;instructions for it.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The most used HTML attributes and what they do&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Core/Global attributes&lt;br&gt;
Work on almost every element &lt;br&gt;
A. id="uniqueName": Gives the element a unique name. Used for CSS, JS, and linking. id must be unique on the page&lt;br&gt;
B. class="name1 name2": Groups element for styling with CSS or selecting with JS&lt;br&gt;
C. lang="en": Declares the language of the content &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Link &amp;amp; Media attributes&lt;br&gt;
A. href="url": Where a link &lt;a&gt; should go&lt;br&gt;
B. src="image.jpg": Source file for &lt;img&gt;, , &amp;lt;iframe&amp;gt;,&amp;lt;video&amp;gt;&amp;lt;br&amp;gt;
C. target=&amp;amp;quot;_blank&amp;amp;quot;: Opens a link in a new tab &amp;lt;/p&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;&amp;lt;p&amp;gt;Form attributes&amp;lt;br&amp;gt;
Used on &amp;lt;input&amp;gt;, &amp;lt;form&amp;gt;, &amp;lt;button&amp;gt;, etc&amp;lt;br&amp;gt;
A. type=&amp;amp;quot;text/email/password&amp;amp;quot;: What kind of input it is.&amp;lt;br&amp;gt;
B. name=&amp;amp;quot;username&amp;amp;quot;: The key name sent to server when form submits&amp;lt;br&amp;gt;
C. value=&amp;amp;quot;default&amp;amp;quot;: Default value inside the input.&amp;lt;/p&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;&amp;lt;p&amp;gt;Layout &amp;amp;amp; Behavior attributes&amp;lt;br&amp;gt;
A. width=&amp;amp;quot;300&amp;amp;quot; height=&amp;amp;quot;200&amp;amp;quot;: Size for &amp;lt;img&amp;gt;, &amp;lt;video&amp;gt;, etc&amp;lt;br&amp;gt;
B. hidden: Hides the element completely.&amp;lt;br&amp;gt;
C. contenteditable=&amp;amp;quot;true&amp;amp;quot;: Makes the text editable in the browser.&amp;lt;/p&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;/ol&amp;gt;
&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>beginners</category>
    </item>
    <item>
      <title>Web And App hosting Service</title>
      <dc:creator>Lawrence malachi</dc:creator>
      <pubDate>Tue, 25 Aug 2026 18:49:58 +0000</pubDate>
      <link>https://dev.to/lawrencemalachi/web-and-abhosting-service-58p8</link>
      <guid>https://dev.to/lawrencemalachi/web-and-abhosting-service-58p8</guid>
      <description>&lt;p&gt;Web and hosting service, refers to the services and server information that make website accessible to user over the internet.&lt;/p&gt;

&lt;p&gt;Web Hosting Essentials&lt;br&gt;
.Core Function: Web hosts rent out server space, computing power, etc.&lt;/p&gt;

&lt;p&gt;Common Hosting Types:&lt;br&gt;
.Shared Hosting: Multiple websites share resources on a single server&lt;br&gt;
.VPS (Virtual Private Server): Virtualized dedicated space offering more isolated control and performance.&lt;br&gt;
.Cloud Hosting: Websites run on a network of connected servers for maximum uptime and scalability. etc.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>beginners</category>
      <category>react</category>
    </item>
    <item>
      <title>Internet Networking</title>
      <dc:creator>Lawrence malachi</dc:creator>
      <pubDate>Mon, 24 Aug 2026 16:42:24 +0000</pubDate>
      <link>https://dev.to/lawrencemalachi/internet-networking-4ea2</link>
      <guid>https://dev.to/lawrencemalachi/internet-networking-4ea2</guid>
      <description>&lt;p&gt;.Definition: Internet networking is the global system that connects computers, smartphones, servers, and other devices so they can exchange information.&lt;/p&gt;

&lt;p&gt;.How it works:&lt;/p&gt;

&lt;p&gt;.Packets: Data is broken into small units called packets. Each packet carries part of the message plus addressing information.&lt;/p&gt;

&lt;p&gt;.Transmission: Packets travel through physical media (like fiber-optic cables, copper wires) or wireless signals (Wi-Fi, cellular networks).&lt;/p&gt;

&lt;p&gt;.Routers &amp;amp; Switches: Special devices guide packets along the best path to their destination.&lt;/p&gt;

&lt;p&gt;.Protocols: Rules such as TCP/IP ensure packets are sent, received, and reassembled correctly, even if they take different routes.&lt;/p&gt;

&lt;p&gt;.Key Components:&lt;/p&gt;

&lt;p&gt;.IP Address: A unique identifier for each device on the network.&lt;/p&gt;

&lt;p&gt;.DNS (Domain Name System): Translates human-friendly names (like google.com) into IP addresses.&lt;/p&gt;

&lt;p&gt;.Servers &amp;amp; Clients: Servers provide resources (websites, files), while clients (your computer/phone) request and use them.&lt;/p&gt;

&lt;p&gt;.Why it matters:&lt;/p&gt;

&lt;p&gt;Enables communication (email, messaging, video calls).&lt;/p&gt;

&lt;p&gt;Provides access to information (websites, cloud storage).&lt;/p&gt;

&lt;p&gt;Powers commerce, entertainment, and social interaction worldwide.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>beginners</category>
      <category>career</category>
    </item>
    <item>
      <title>PRODRAMMING LANGUAGES And Their Use Cases</title>
      <dc:creator>Lawrence malachi</dc:creator>
      <pubDate>Mon, 24 Aug 2026 15:11:05 +0000</pubDate>
      <link>https://dev.to/lawrencemalachi/prodramming-languages-and-their-use-cases-1g21</link>
      <guid>https://dev.to/lawrencemalachi/prodramming-languages-and-their-use-cases-1g21</guid>
      <description>&lt;p&gt;Programming Languages and Their Use Cases&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;JavaScript&lt;br&gt;
JavaScript (JS) is a high-level, interpreted programming language used to create dynamic and interactive content on the web. Alongside HTML (structure) and CSS (style), JavaScript forms the core foundation of modern web technologies.&lt;br&gt;
Use cases: Web development, front-end frameworks (React, Vue, Angular), server-side development (Node.js), mobile apps, and interactive UI.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Python&lt;br&gt;
Python is a versatile, beginner-friendly language known for its readability and simplicity. It has a vast ecosystem of libraries and frameworks.&lt;br&gt;
Use cases: Data science, machine learning, web development (Django, Flask), automation, scripting, and scientific computing.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;C++&lt;br&gt;
C++ is a powerful, high-performance language that extends C with object-oriented features. It offers fine control over system resources.&lt;br&gt;
Use cases: Systems programming, operating systems, game development, embedded systems, and performance-critical applications.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;C&lt;br&gt;
C is one of the oldest and most influential programming languages. It provides low-level access to memory and hardware.&lt;br&gt;
Use cases: Operating systems, compilers, embedded systems, and applications requiring high efficiency.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Java&lt;br&gt;
Java is a platform-independent, object-oriented language designed for portability and scalability.&lt;br&gt;
Use cases: Enterprise applications, Android development, web applications (Spring framework), and large-scale distributed systems.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;PHP&lt;br&gt;
PHP is a server-side scripting language designed for web development. It powers many content management systems.&lt;br&gt;
Use cases: Dynamic websites, server-side scripting, CMS platforms (WordPress, Drupal), and e-commerce sites.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Go (Golang)&lt;br&gt;
Go is a statically typed language developed by Google, known for its simplicity and efficiency in concurrent programming.&lt;br&gt;
Use cases: Cloud services, distributed systems, DevOps tools, and backend APIs.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Rust&lt;br&gt;
Rust is a systems programming language focused on safety, concurrency, and performance. It prevents common memory errors at compile time.&lt;br&gt;
Use cases: Systems programming, web assembly, blockchain, and applications where reliability and speed are critical.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;C#&lt;br&gt;
C# is a modern, object-oriented language developed by Microsoft, tightly integrated with the .NET ecosystem.&lt;br&gt;
Use cases: Windows applications, enterprise software, game development (Unity), and web services.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

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