<?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: Medjiatou Ezechiel</title>
    <description>The latest articles on DEV Community by Medjiatou Ezechiel (@medjiatou_ezechiel_1bc3f6).</description>
    <link>https://dev.to/medjiatou_ezechiel_1bc3f6</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%2F3594160%2F7e2d6fcf-8852-4104-9ebc-7f2d6c48e28f.jpg</url>
      <title>DEV Community: Medjiatou Ezechiel</title>
      <link>https://dev.to/medjiatou_ezechiel_1bc3f6</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/medjiatou_ezechiel_1bc3f6"/>
    <language>en</language>
    <item>
      <title>A step by step guide on how to create a simple web page using HTML and CSS</title>
      <dc:creator>Medjiatou Ezechiel</dc:creator>
      <pubDate>Mon, 03 Nov 2025 14:39:39 +0000</pubDate>
      <link>https://dev.to/medjiatou_ezechiel_1bc3f6/a-step-by-step-guide-on-how-to-create-a-simple-web-page-using-html-and-css-4g0j</link>
      <guid>https://dev.to/medjiatou_ezechiel_1bc3f6/a-step-by-step-guide-on-how-to-create-a-simple-web-page-using-html-and-css-4g0j</guid>
      <description>&lt;p&gt;&lt;strong&gt;&lt;em&gt;📝 How to Create a Simple Web Page Using HTML and CSS&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Introduction&lt;/p&gt;

&lt;p&gt;Have you ever wanted to create your own website but didn’t know where to start?&lt;br&gt;
In this tutorial, we’ll build a simple web page using only HTML and CSS.&lt;br&gt;
By the end of this guide, you’ll understand how to structure a web page, style it, and view it in your browser — all using beginner-friendly code.&lt;/p&gt;

&lt;p&gt;⚙️ Requirements &lt;/p&gt;

&lt;p&gt;Before we start, make sure you have:&lt;/p&gt;

&lt;p&gt;A computer or laptop&lt;/p&gt;

&lt;p&gt;A text editor like Visual Studio Code&lt;/p&gt;

&lt;p&gt;Any web browser (Chrome, Firefox, or Edge)&lt;/p&gt;

&lt;p&gt;🪜 Step 1: Create Your Project Folder&lt;/p&gt;

&lt;p&gt;Create a new folder on your desktop named “MyFirstWebsite”.&lt;br&gt;
Inside it, create two files:&lt;/p&gt;

&lt;p&gt;index.html&lt;/p&gt;

&lt;p&gt;style.css&lt;/p&gt;

&lt;p&gt;💻 Step 2: Write the HTML Code&lt;/p&gt;

&lt;p&gt;Open the index.html file and add the following code:&lt;/p&gt;

&lt;p&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;br&gt;
  &lt;br&gt;
  &lt;br&gt;
  My First Web Page&lt;br&gt;
  &lt;br&gt;
&lt;br&gt;
&lt;br&gt;
  &lt;br&gt;
    &lt;h1&gt;Welcome to My First Website&lt;/h1&gt;
&lt;br&gt;
  


&lt;p&gt;Hello! I’m learning web development using HTML and CSS.&lt;/p&gt;
&lt;br&gt;
    Click Me&lt;br&gt;
  


&lt;p&gt;© 2025 My First Website&lt;/p&gt;
&lt;br&gt;
  &lt;br&gt;
&lt;br&gt;


&lt;p&gt;This code creates the structure of your web page — with a header, a main content section, and a footer.&lt;/p&gt;

&lt;p&gt;🎨 Step 3: Add CSS Styles&lt;/p&gt;

&lt;p&gt;Now open your style.css file and add this code:&lt;/p&gt;

&lt;p&gt;body {&lt;br&gt;
  font-family: Arial, sans-serif;&lt;br&gt;
  background-color: #f0f0f0;&lt;br&gt;
  text-align: center;&lt;br&gt;
  margin: 0;&lt;br&gt;
  padding: 0;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;header {&lt;br&gt;
  background-color: #333;&lt;br&gt;
  color: white;&lt;br&gt;
  padding: 20px;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;main {&lt;br&gt;
  margin: 40px;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;button {&lt;br&gt;
  background-color: #007BFF;&lt;br&gt;
  color: white;&lt;br&gt;
  border: none;&lt;br&gt;
  padding: 10px 20px;&lt;br&gt;
  border-radius: 5px;&lt;br&gt;
  cursor: pointer;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;button:hover {&lt;br&gt;
  background-color: #0056b3;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;footer {&lt;br&gt;
  background-color: #333;&lt;br&gt;
  color: white;&lt;br&gt;
  padding: 10px;&lt;br&gt;
  position: fixed;&lt;br&gt;
  bottom: 0;&lt;br&gt;
  width: 100%;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;This code styles your page to make it look clean and professional.&lt;/p&gt;

&lt;p&gt;🌐 Step 4: Open It in a Browser&lt;/p&gt;

&lt;p&gt;Now go to your folder and double-click on index.html.&lt;br&gt;
Your first website should open — congratulations! 🎉&lt;/p&gt;

&lt;p&gt;You can change colors, text, or buttons to make it your own.&lt;/p&gt;

&lt;p&gt;✅ Conclusion&lt;/p&gt;

&lt;p&gt;You just created your first website using HTML and CSS.&lt;br&gt;
This is the foundation of all web development — and the best way to begin your tech journey.&lt;br&gt;
Next, you can try adding JavaScript to make your page interactive (like showing an alert when the button is clicked).&lt;/p&gt;

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