<?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: Segcam spa</title>
    <description>The latest articles on DEV Community by Segcam spa (@segcam_spa_2fcbb0882f9697).</description>
    <link>https://dev.to/segcam_spa_2fcbb0882f9697</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%2F4027479%2F3673ce38-7601-4daf-9735-2af339ef41ab.png</url>
      <title>DEV Community: Segcam spa</title>
      <link>https://dev.to/segcam_spa_2fcbb0882f9697</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/segcam_spa_2fcbb0882f9697"/>
    <language>en</language>
    <item>
      <title>Build a landing page with zero dependencies: 5 rules from 56 single-file templates</title>
      <dc:creator>Segcam spa</dc:creator>
      <pubDate>Tue, 14 Jul 2026 01:28:44 +0000</pubDate>
      <link>https://dev.to/segcam_spa_2fcbb0882f9697/build-a-landing-page-with-zero-dependencies-5-rules-from-56-single-file-templates-1fej</link>
      <guid>https://dev.to/segcam_spa_2fcbb0882f9697/build-a-landing-page-with-zero-dependencies-5-rules-from-56-single-file-templates-1fej</guid>
      <description>&lt;p&gt;Most "free HTML template" downloads end the same way: you unzip it, and there's a &lt;code&gt;package.json&lt;/code&gt;, a &lt;code&gt;gulpfile&lt;/code&gt;, a &lt;code&gt;node_modules&lt;/code&gt; you have to install, and a build step you have to run before you can even see the thing. For a page that is 90% text and images.&lt;/p&gt;

&lt;p&gt;Here is the same landing page, built the other way: &lt;strong&gt;one file, zero dependencies&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  The whole thing is this
&lt;/h2&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&lt;/span&gt; &lt;span class="na"&gt;lang=&lt;/span&gt;&lt;span class="s"&gt;"en"&lt;/span&gt;&lt;span class="nt"&gt;&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;meta&lt;/span&gt; &lt;span class="na"&gt;charset=&lt;/span&gt;&lt;span class="s"&gt;"UTF-8"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"viewport"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"width=device-width,initial-scale=1"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;title&amp;gt;&lt;/span&gt;Your product&lt;span class="nt"&gt;&amp;lt;/title&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;style&amp;gt;&lt;/span&gt;
    &lt;span class="c"&gt;/* everything lives here */&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;/style&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;
  &lt;span class="c"&gt;&amp;lt;!-- your sections --&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;script&amp;gt;&lt;/span&gt;
    &lt;span class="c1"&gt;// and here&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
&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;That's it. No CDN links, no font imports, no bundler. Open it in a browser and it runs — even with the wifi off.&lt;/p&gt;

&lt;h2&gt;
  
  
  The five rules that keep it clean
&lt;/h2&gt;

&lt;p&gt;I've built 56 templates under this constraint. These are the rules that mattered:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Zero external requests.&lt;/strong&gt; No Google Fonts, no Font Awesome, no jQuery from a CDN. Use font stacks:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nt"&gt;body&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nl"&gt;font-family&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;-apple-system&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;BlinkMacSystemFont&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s1"&gt;"Segoe UI"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;Roboto&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;Helvetica&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;Arial&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nb"&gt;sans-serif&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You lose the custom typeface. You gain a page that renders instantly and never breaks because someone else's CDN is down.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Decorate with CSS, not images.&lt;/strong&gt; Gradients, &lt;code&gt;box-shadow&lt;/code&gt; and solid colors replace 90% of background images:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nc"&gt;.hero&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;background&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;linear-gradient&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="m"&gt;135deg&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="m"&gt;#0d1117&lt;/span&gt; &lt;span class="m"&gt;0%&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="m"&gt;#161b22&lt;/span&gt; &lt;span class="m"&gt;60%&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="m"&gt;#1a2332&lt;/span&gt; &lt;span class="m"&gt;100%&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
  &lt;span class="nl"&gt;box-shadow&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;inset&lt;/span&gt; &lt;span class="m"&gt;0&lt;/span&gt; &lt;span class="m"&gt;-1px&lt;/span&gt; &lt;span class="m"&gt;0&lt;/span&gt; &lt;span class="n"&gt;rgba&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="m"&gt;255&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="m"&gt;255&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="m"&gt;255&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="m"&gt;.06&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;No image requests, no layout shift, and the client can recolor the whole page by changing two hex values.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Icons as inline SVG primitives.&lt;/strong&gt; Not &lt;code&gt;&amp;lt;path&amp;gt;&lt;/code&gt; — primitives:&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;svg&lt;/span&gt; &lt;span class="na"&gt;viewBox=&lt;/span&gt;&lt;span class="s"&gt;"0 0 24 24"&lt;/span&gt; &lt;span class="na"&gt;width=&lt;/span&gt;&lt;span class="s"&gt;"20"&lt;/span&gt; &lt;span class="na"&gt;height=&lt;/span&gt;&lt;span class="s"&gt;"20"&lt;/span&gt; &lt;span class="na"&gt;fill=&lt;/span&gt;&lt;span class="s"&gt;"none"&lt;/span&gt; &lt;span class="na"&gt;stroke=&lt;/span&gt;&lt;span class="s"&gt;"currentColor"&lt;/span&gt; &lt;span class="na"&gt;stroke-width=&lt;/span&gt;&lt;span class="s"&gt;"2"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;circle&lt;/span&gt; &lt;span class="na"&gt;cx=&lt;/span&gt;&lt;span class="s"&gt;"12"&lt;/span&gt; &lt;span class="na"&gt;cy=&lt;/span&gt;&lt;span class="s"&gt;"12"&lt;/span&gt; &lt;span class="na"&gt;r=&lt;/span&gt;&lt;span class="s"&gt;"9"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/circle&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;line&lt;/span&gt; &lt;span class="na"&gt;x1=&lt;/span&gt;&lt;span class="s"&gt;"12"&lt;/span&gt; &lt;span class="na"&gt;y1=&lt;/span&gt;&lt;span class="s"&gt;"8"&lt;/span&gt; &lt;span class="na"&gt;x2=&lt;/span&gt;&lt;span class="s"&gt;"12"&lt;/span&gt; &lt;span class="na"&gt;y2=&lt;/span&gt;&lt;span class="s"&gt;"13"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/line&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;circle&lt;/span&gt; &lt;span class="na"&gt;cx=&lt;/span&gt;&lt;span class="s"&gt;"12"&lt;/span&gt; &lt;span class="na"&gt;cy=&lt;/span&gt;&lt;span class="s"&gt;"16"&lt;/span&gt; &lt;span class="na"&gt;r=&lt;/span&gt;&lt;span class="s"&gt;"1"&lt;/span&gt; &lt;span class="na"&gt;fill=&lt;/span&gt;&lt;span class="s"&gt;"currentColor"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/circle&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/svg&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;circle&lt;/code&gt;, &lt;code&gt;rect&lt;/code&gt;, &lt;code&gt;line&lt;/code&gt;, &lt;code&gt;polyline&lt;/code&gt;, &lt;code&gt;polygon&lt;/code&gt;. They weigh almost nothing, they inherit &lt;code&gt;currentColor&lt;/code&gt;, and unlike a copy-pasted &lt;code&gt;&amp;lt;path&amp;gt;&lt;/code&gt; you can actually read what they do.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. A mobile menu in six lines.&lt;/strong&gt; No framework needed:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;querySelector&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;.burger&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nf"&gt;addEventListener&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;click&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nf"&gt;function &lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;querySelector&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;.nav-links&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nx"&gt;classList&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;toggle&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;open&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;});&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="k"&gt;@media&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;max-width&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;768px&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nc"&gt;.nav-links&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nl"&gt;display&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;none&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt;
  &lt;span class="nc"&gt;.nav-links.open&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nl"&gt;display&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;flex&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="nl"&gt;flex-direction&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;column&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt;
  &lt;span class="nc"&gt;.burger&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nl"&gt;display&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;block&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;5. Keep it under ~650 lines.&lt;/strong&gt; If a landing page doesn't fit in 650 lines, it's not a landing page anymore — it's an app, and you should reach for a real framework.&lt;/p&gt;

&lt;h2&gt;
  
  
  When this is the wrong tool
&lt;/h2&gt;

&lt;p&gt;I'll be honest about the trade-off, because it's real:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;App with routing, auth and state?&lt;/strong&gt; Use a framework. Don't do this.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Site with 200 pages and a CMS?&lt;/strong&gt; Use a static site generator.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Team of 6 editing the same page?&lt;/strong&gt; You want components, not one big file.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But for a landing page, a portfolio, a restaurant menu, a clinic site, a coming-soon page — the toolchain is pure overhead. It costs you build errors, dependency upgrades, and a client who can't change a phone number without calling you.&lt;/p&gt;

&lt;h2&gt;
  
  
  Take one and try it
&lt;/h2&gt;

&lt;p&gt;Here's a complete coming-soon page built this way — live countdown, email capture, responsive, one file. Free, no signup, no email wall:&lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;&lt;a href="https://segcom.net/free/" rel="noopener noreferrer"&gt;Download the free template&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you want to see the approach at scale, there are 56 of them (SaaS, agency, restaurant, clinic, gym, real estate, crypto, esports and more) at &lt;strong&gt;&lt;a href="https://segcom.net" rel="noopener noreferrer"&gt;segcom.net&lt;/a&gt;&lt;/strong&gt; — every demo is the actual file running in your browser, not a screenshot.&lt;/p&gt;

&lt;p&gt;What would you add to the rules list?&lt;/p&gt;

</description>
      <category>htmlcsswebdevbeginners</category>
    </item>
    <item>
      <title>I built 42 landing page templates as single HTML files (no npm, no build step)</title>
      <dc:creator>Segcam spa</dc:creator>
      <pubDate>Mon, 13 Jul 2026 22:55:37 +0000</pubDate>
      <link>https://dev.to/segcam_spa_2fcbb0882f9697/i-built-42-landing-page-templates-as-sini-built-42-landing-page-templates-as-single-html-files-no-42kd</link>
      <guid>https://dev.to/segcam_spa_2fcbb0882f9697/i-built-42-landing-page-templates-as-sini-built-42-landing-page-templates-as-single-html-files-no-42kd</guid>
      <description>&lt;p&gt;I got tired of downloading a "simple landing page template" and finding a 400 MB folder with npm, a build step, a config file and three CSS frameworks I never asked for.&lt;/p&gt;

&lt;p&gt;So we built the opposite: &lt;strong&gt;templates that are one single HTML file&lt;/strong&gt;. All the CSS in a &lt;code&gt;&amp;lt;style&amp;gt;&lt;/code&gt; tag, all the JS inline. No frameworks, no CDNs, no build step, no dependencies. You open the file, you edit the text, you upload it anywhere. It works offline.&lt;/p&gt;

&lt;h2&gt;
  
  
  Free one: a coming-soon page
&lt;/h2&gt;

&lt;p&gt;Take it, no signup, no email wall:&lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;&lt;a href="https://segcom.net/free/" rel="noopener noreferrer"&gt;Free coming-soon template (live demo + download)&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It has a working countdown, an email capture form, feature highlights and social links. Commercial use allowed — just don't resell the template itself.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why single-file?
&lt;/h2&gt;

&lt;p&gt;Because most landing pages don't need a toolchain. They need to load fast and be easy to change.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Editable by anyone.&lt;/strong&gt; Your client can change the phone number without calling you.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Deploy anywhere.&lt;/strong&gt; Cloudflare Pages, Netlify, GitHub Pages, a $3 shared host, an S3 bucket.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Nothing to break.&lt;/strong&gt; No &lt;code&gt;node_modules&lt;/code&gt;, no lockfile, no "works on my machine".&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fast by default.&lt;/strong&gt; One request for the HTML, zero render-blocking libraries.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The trade-off is real and I won't hide it: if you're building an app with state, routing and a dozen components, a single HTML file is the wrong tool. This is for landing pages, portfolios, restaurant menus, coming-soon pages, clinic sites — the stuff that is 90% content.&lt;/p&gt;

&lt;h2&gt;
  
  
  What we ended up with
&lt;/h2&gt;

&lt;p&gt;We kept building them for different niches and now there are 42: SaaS, agency, e-commerce, restaurant, gym, real estate, law firm, medical clinic, crypto/Web3, podcast, esports, construction, car dealership, interior design, and more. Every one is a single file, fully responsive, with real copy instead of lorem ipsum.&lt;/p&gt;

&lt;p&gt;You can browse the live demos here: &lt;strong&gt;&lt;a href="https://segcom.net" rel="noopener noreferrer"&gt;segcom.net&lt;/a&gt;&lt;/strong&gt; — the demos are the actual templates running in your browser, not screenshots.&lt;/p&gt;

&lt;h2&gt;
  
  
  The technical rules we follow
&lt;/h2&gt;

&lt;p&gt;If you want to build your own single-file templates, these are the constraints that kept ours clean:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;No external requests, at all.&lt;/strong&gt; No Google Fonts, no icon CDNs. Font stacks only (&lt;code&gt;-apple-system, Segoe UI, Roboto...&lt;/code&gt;).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Decoration with CSS, not images.&lt;/strong&gt; Gradients, &lt;code&gt;box-shadow&lt;/code&gt; and solid colors instead of background images.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Icons as inline SVG primitives or Unicode.&lt;/strong&gt; Simple shapes (&lt;code&gt;circle&lt;/code&gt;, &lt;code&gt;rect&lt;/code&gt;, &lt;code&gt;line&lt;/code&gt;) — they never break, and they weigh nothing.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Keep it under ~650 lines.&lt;/strong&gt; If it doesn't fit, the page is doing too much.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Mobile nav must actually work.&lt;/strong&gt; A hamburger that toggles a class, vanilla JS, 6 lines.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That's it. No magic.&lt;/p&gt;




&lt;p&gt;If you grab the free one and it saves you an afternoon, that's a win. If you want the rest, they're at &lt;a href="https://segcom.net" rel="noopener noreferrer"&gt;segcom.net&lt;/a&gt; — and if you think a niche is missing, tell me in the comments and I'll build it.&lt;/p&gt;

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