<?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: Joel Dare</title>
    <description>The latest articles on DEV Community by Joel Dare (@codazoda).</description>
    <link>https://dev.to/codazoda</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%2F2387213%2F8db88370-92b7-481a-b99a-ac53c55b252c.png</url>
      <title>DEV Community: Joel Dare</title>
      <link>https://dev.to/codazoda</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/codazoda"/>
    <language>en</language>
    <item>
      <title>Creating a simple, minimalist, pure html page</title>
      <dc:creator>Joel Dare</dc:creator>
      <pubDate>Mon, 28 Jul 2025 13:14:35 +0000</pubDate>
      <link>https://dev.to/codazoda/creating-a-simple-minimalist-pure-html-page-39mn</link>
      <guid>https://dev.to/codazoda/creating-a-simple-minimalist-pure-html-page-39mn</guid>
      <description>&lt;p&gt;Imagine a web page that loads instantly, deploys effortlessly, and never needs a security update.&lt;/p&gt;

&lt;p&gt;I’m using pure HTML and CSS to accomplish that and to build things in a fraction of the time.&lt;/p&gt;

&lt;p&gt;In this micro-lesson I'll show you how I create a simple, minimal, pure html page. Here's a quick overview of the steps.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Create a directory and change into it&lt;/li&gt;
&lt;li&gt;Download a simple html template&lt;/li&gt;
&lt;li&gt;Add a splash of style&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;We'll be using the command-line. You should know how to use the command-line, your web browser, and your favorite text editor.&lt;/p&gt;

&lt;h2&gt;
  
  
  Create a directory and change into it
&lt;/h2&gt;

&lt;p&gt;From your home directory we're going to create a directory called purehtml and switch into it. Run these two commands.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;mkdir purehtml
cd purehtml
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Download a simple html template
&lt;/h2&gt;

&lt;p&gt;We're going to download a tiny boiler plate html file, as index.html. Run this command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;curl -o index.html https://neat.joeldare.com/blank.html
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now open the index.html file in your web browser to take a look.&lt;/p&gt;

&lt;h2&gt;
  
  
  Add a splash of style
&lt;/h2&gt;

&lt;p&gt;We'll add a tiny bit of style by downloading neat.css. Neat is a minimalist css file that's just 3Kb.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;curl -O https://neat.joeldare.com/neat.css
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Open the file in your browser again to see the new style. Notice the page works in both light and dark modes.&lt;/p&gt;

&lt;p&gt;Now that you have the base page, add your own title and a little bit of text.&lt;/p&gt;

&lt;h2&gt;
  
  
  Get a free crash course
&lt;/h2&gt;

&lt;p&gt;This is an excerpt from the first lesson of the &lt;strong&gt;Five-Day Neat Starter Email Course&lt;/strong&gt;. Want to build your next site in pure HTML and CSS? Join the list and build a lean, production-ready page before Friday.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://neat.joeldare.com/newsletter?utm_source=dev" rel="noopener noreferrer"&gt;&lt;strong&gt;Email Me the Crash Course&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
    </item>
  </channel>
</rss>
