<?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: Adeoye Jumoke</title>
    <description>The latest articles on DEV Community by Adeoye Jumoke (@adeoyejumoke).</description>
    <link>https://dev.to/adeoyejumoke</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%2F3284093%2F07342c32-ce4b-4219-b1c6-034e2494a20c.jpg</url>
      <title>DEV Community: Adeoye Jumoke</title>
      <link>https://dev.to/adeoyejumoke</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/adeoyejumoke"/>
    <language>en</language>
    <item>
      <title>How to Add CSS to HTML</title>
      <dc:creator>Adeoye Jumoke</dc:creator>
      <pubDate>Mon, 25 Aug 2025 19:31:30 +0000</pubDate>
      <link>https://dev.to/adeoyejumoke/how-to-add-css-to-html-4l5f</link>
      <guid>https://dev.to/adeoyejumoke/how-to-add-css-to-html-4l5f</guid>
      <description>&lt;p&gt;So, you’ve started learning web development and now you’re hearing about this thing called CSS. You might be wondering, “What exactly is CSS, and how does it connect with HTML?” Well, you’re not alone. Let’s go through it together.&lt;br&gt;
HTML is like the foundation of a building, it gives your website structure. It tells the browser, “Here’s a heading, here’s a paragraph, here’s an image.” But by itself, HTML looks plain. That’s where CSS comes in.&lt;br&gt;
CSS (Cascading Style Sheets) is like the stylist of the web. It adds color, changes fonts, adjusts layouts, and basically makes a website attractive. Think of HTML as the skeleton and CSS as the clothes and makeup that bring it to life.&lt;br&gt;
Now, how do we add CSS to HTML? There are three main ways: inline, internal, and external CSS.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Inline CSS
This means adding CSS to a single element by using the style attribute in the element’s opening tag. It is useful for applying a unique style to one element without affecting others.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;p style="color: red;"&amp;gt;This text is red.&amp;lt;/p&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Internal CSS
This involves applying CSS inside an HTML file by placing the style tag in the head section of the document. It allows you to style multiple elements on that page without affecting other pages.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;br&gt;
&amp;lt;html&amp;gt;&lt;br&gt;
&amp;lt;head&amp;gt;&lt;br&gt;
  &amp;lt;style&amp;gt;&lt;br&gt;
    body {&lt;br&gt;
      background-color: blue;&lt;br&gt;
    }&lt;br&gt;
    h1 {&lt;br&gt;
      color: navy;&lt;br&gt;
    }&lt;br&gt;
  &amp;lt;/style&amp;gt;&lt;br&gt;
&amp;lt;/head&amp;gt;&lt;br&gt;
&amp;lt;body&amp;gt;&lt;br&gt;
  &amp;lt;h1&amp;gt;Hello, world!&amp;lt;/h1&amp;gt;&lt;br&gt;
&amp;lt;/body&amp;gt;&lt;br&gt;
&amp;lt;/html&amp;gt;&lt;br&gt;
&lt;/code&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;External CSS
This means writing your CSS in a separate CSS file and linking it to your HTML using the link tag. The link is placed inside the head section of your HTML file.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;code&gt;h1 {&lt;br&gt;
  color: green;&lt;br&gt;
  text-align: center;&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Conclusion&lt;br&gt;
To sum it up, HTML gives your webpage structure while CSS makes it visually appealing. Inline CSS works best for quick, one-time styles, internal CSS is great for styling a single page, and external CSS is the most professional method for larger projects because it keeps everything clean and reusable.&lt;br&gt;
Once you start combining HTML and CSS, you’ll realize that creating a beautiful and functional webpage is not as complicated as it first seems.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>My Introduction to Web Development as a Beginner</title>
      <dc:creator>Adeoye Jumoke</dc:creator>
      <pubDate>Thu, 21 Aug 2025 21:05:00 +0000</pubDate>
      <link>https://dev.to/adeoyejumoke/my-introduction-to-web-development-as-a-beginner-58md</link>
      <guid>https://dev.to/adeoyejumoke/my-introduction-to-web-development-as-a-beginner-58md</guid>
      <description>&lt;p&gt;When I first heard about web development, it sounded so big and complicated, like something I needed two heads to do. But as I started learning, I realized it is not some mysterious thing. Web development is simply building websites and web applications, the stuff we use every day such as blogs, online shops, or even social media platforms.&lt;/p&gt;

&lt;p&gt;Web development is about making a website come alive. From its design and layout, to how it works behind the scenes, and even how it keeps running after launch.&lt;/p&gt;

&lt;p&gt;**&lt;/p&gt;

&lt;h2&gt;
  
  
  The Three Core Areas of Web Development
&lt;/h2&gt;

&lt;p&gt;**&lt;br&gt;
&lt;strong&gt;1. Frontend Development&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This is what you see on a website. Think of it as the face of the website. The design, buttons, colors, and overall layout. If you click a button and something happens, that is the frontend at work.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Backend Development&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Now imagine the engine under the hood of a car. That is the backend. You cannot see it, but it powers everything. Backend development is all about the server, database, and application logic that make a website function.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Full Stack Development&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Some people can do both frontend and backend. These superheroes are called full stack developers. They understand how to design what users see and how to power what happens in the background.&lt;/p&gt;

&lt;p&gt;The Building Blocks of the Web&lt;br&gt;
Before you run, you have got to walk. The three essential technologies you must know as a web developer are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;HTML&lt;/strong&gt;:&lt;br&gt;
The foundation of every webpage. It structures content like text, images, and links.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;CSS:&lt;/strong&gt;&lt;br&gt;
The design language that makes webpages look good. It controls the colors, fonts, layouts, and all the pretty stuff.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;JavaScript:&lt;/strong&gt;&lt;br&gt;
The brain that adds interactivity. Without it, a webpage would just sit there and do nothing.&lt;br&gt;
How to Become a Web Developer (My Roadmap)&lt;br&gt;
I am still learning, but here is the simple roadmap I am following, and you can too:&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Learn HTML, CSS, and JavaScript which are the core trio.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Build projects, even small ones like a personal portfolio or a simple blog. Build as you learn.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Use version control. Git and GitHub are your best friends. Push your code there.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Explore frameworks such as React for frontend and Node.js for backend when you are ready.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Keep practicing because web development is all about learning by doing.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Skills That Help Along the Way&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Problem solving (Google is your best teacher).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Attention to detail (a missing semicolon can break your code and even your spirit).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Creativity and design sense&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Willingness to learn constantly because the web evolves fast.&lt;br&gt;
``&lt;br&gt;
&lt;strong&gt;Conclusions&lt;/strong&gt;&lt;br&gt;
Web development might seem overwhelming at first, but it is actually a fun journey. I am still at the beginning, and honestly, every small thing I build feels exciting.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you are curious about coding or want to create things for the web, start with the basics and keep going. The good thing is, you do not need to know everything before you begin. Just start, and you will grow as you build.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>frontend</category>
      <category>fullstack</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
