Skip to content

Instantly share code, notes, and snippets.

View codingdudecom's full-sized avatar

codingdudecom

View GitHub Profile
@codingdudecom
codingdudecom / css-stroke-text-using-webkit-text-stroke.markdown
Created July 30, 2020 11:16
CSS Stroke Text Using -webkit-text-stroke
@codingdudecom
codingdudecom / 80s-fonts-text-effect-4-cyberspace-text.markdown
Created June 22, 2020 07:28
80s Fonts Text Effect 4: Cyberspace Text

CSS Highlight Text

Support files and demo for the CSS highlight text article on CodingDude: CSS Highlight Text

In this short tutorial I will show you several cool ways in which you can use CSS to highlight text. Just like on paper, you highlight text in a HTML page to draw attention to important sections, paragraphs or group or words. On paper you might use a marker, highlighter or even a colored pen or pencil, but how do you highlight text in HTML using CSS?

A Pen by Ion Emil Negoita on CodePen.

License.

@codingdudecom
codingdudecom / index.html
Created June 2, 2020 04:43
Simple CSS Image Effects
<h2>Simple CSS Image Effects</h2>
<ol>
<li>Original</li>
<li>Black and White</li>
<li>Sepia</li>
<li>Warm Colors</li>
<li>Cold Colors</li>
<li>Green Tint</li>
<li>Magenta Tint</li>
</ol>
@codingdudecom
codingdudecom / index.html
Created May 30, 2020 13:14
Simple CSS Image Effects
<h2>Simple CSS Image Effects</h2>
<ol>
<li>Original</li>
<li>Black and White</li>
<li>Sepia</li>
<li>Warm Colors</li>
<li>Cold Colors</li>
<li>Green Tint</li>
<li>Magenta Tint</li>
</ol>
@codingdudecom
codingdudecom / index.html
Created May 10, 2020 09:57
Smooth Edges CSS
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@1,900&display=swap" rel="stylesheet">
<div class="text">ROUNDED TEXT BEFORE</div>
<div class="text smooth">ROUNDED TEXT AFTER</div>
<p>
Inspired by PhotoshopSupply.com: <a href="https://www.photoshopsupply.com/actions/smooth-edges-photoshop-action-free">Smooth Edges Photoshop</a></p>
<svg viewbox="0 0 100% 100%">
<defs>
<filter id="smooth">
@codingdudecom
codingdudecom / index.html
Created May 10, 2020 09:49
Smooth Edges CSS
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@1,900&display=swap" rel="stylesheet">
<div class="text">ROUNDED TEXT BEFORE</div>
<div class="text smooth">ROUNDED TEXT AFTER</div>
<p>
Inspired by PhotoshopSupply.com: <a href="https://www.photoshopsupply.com/actions/smooth-edges-photoshop-action-free">Smooth Edges Photoshop</a></p>
<svg viewbox="0 0 100% 100%">
<defs>
<filter id="smooth">
@codingdudecom
codingdudecom / bar-chart-html-only-table-version-alternative.markdown
Created April 28, 2020 05:49
Bar Chart HTML Only (table version alternative)