<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>My Brother Darryl</title>
	<atom:link href="http://www.mybrotherdarryl.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.mybrotherdarryl.com</link>
	<description>Advanced web architects and security professionals</description>
	<lastBuildDate>Mon, 26 Jan 2026 19:48:13 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://www.mybrotherdarryl.com/wp-content/uploads/2025/11/cropped-MBD_ICON_512PX_MAIN-32x32.png</url>
	<title>My Brother Darryl</title>
	<link>https://www.mybrotherdarryl.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Beyond the Grid: Why Your 2026 Website Needs to Break the Rules</title>
		<link>https://www.mybrotherdarryl.com/beyond-the-grid-why-your-2026-website-needs-to-break-the-rules/</link>
		
		<dc:creator><![CDATA[Candace Morgan]]></dc:creator>
		<pubDate>Mon, 26 Jan 2026 19:48:08 +0000</pubDate>
				<category><![CDATA[Design & Development]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[User Interface]]></category>
		<guid isPermaLink="false">https://www.mybrotherdarryl.com/?p=8987</guid>

					<description><![CDATA[We are currently living through an epidemic of “template fatigue.”  The web is starting to look like an endless subdivision of identical beige houses – safe, functional, and completely forgettable.]]></description>
										<content:encoded><![CDATA[
<p>If I asked you to draw a &#8220;professional website&#8221; on a napkin right now, I’d bet good money I know exactly what you’d sketch.</p>



<p>You’d draw a logo in the top left. You’d draw a navigation bar on the right. You’d draw a big &#8220;Hero Image&#8221; with a headline, followed by three perfectly aligned boxes explaining &#8220;What We Do.&#8221;</p>



<p>Congratulations. You have just designed 90% of the internet.</p>



<p>It’s safe. It’s predictable. But let’s be honest—it’s also the digital equivalent of elevator music. It fills the space, but nobody is humming it on the way home.</p>



<p>We are currently living through an epidemic of &#8220;<em>template fatigue</em>.&#8221; Now that AI tools can churn out perfectly symmetrical, mathematically precise layouts in seconds, &#8220;perfect&#8221; has become a commodity. The web is starting to look like an endless subdivision of identical beige houses &#8211; safe, functional, and completely forgettable.</p>



<p>If you want your brand to stick in a user’s brain, you can’t just follow the lines anymore. You have to color outside of them.</p>



<p>This year, the most successful digital experiences are ditching the rigid columns for organic layouts, fluid motion, and &#8220;anti-grid&#8221; designs that feel less like a spreadsheet and more like a conversation. But&#8230; (and this is a big &#8220;but&#8221;), there is a fine line between &#8220;cutting-edge design&#8221; and &#8220;unusable chaos.&#8221;</p>



<p>Here is how we break the rules without breaking your user experience… and why your brand might be ready for a little rebellion too.</p>



<h2 class="wp-block-heading">The Antidote to &#8220;Beige&#8221; Design</h2>



<p>How do we fight back against the army of identical websites? We stop trying to be perfect, and we start trying to be <em>human</em>.</p>



<p>The 2026 design philosophy isn&#8217;t about adding more noise; it&#8217;s about adding <strong>texture</strong>. It’s about creating a digital space that feels like it has a pulse. When we audit client sites, we aren&#8217;t just looking for broken links; we are looking for missed opportunities to make a visitor smile, pause, or wonder &#8220;How did they do that?&#8221;</p>



<p>If you want to turn a passive scroller into an active participant, you need to master three specific levers: <strong>Organic &amp; Fluid Layouts</strong>, <strong>Micro-Surprises</strong>, and <strong>Tactile Depth</strong>.</p>



<p>Here is why these three elements are currently eating standard templates for breakfast.</p>



<div style="height:40px" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<style>
  /* --- THE SHAPE --- */
  .morpher {
    width: 150px;
    height: 150px;
    background-color: #3498db;
    animation: morphing-shape 6s ease-in-out infinite;
    transition: background-color 0.5s; 
  }

  .morpher.paused {
    animation-play-state: paused;
  }

  @keyframes morphing-shape {
    0% { border-radius: 0; background-color: #3498db; transform: rotate(0deg); }
    15% { border-radius: 50% 0 0 0; }
    30% { border-radius: 50% 50% 0 0; }
    45% { border-radius: 50% 50% 50% 0; }
    60% { border-radius: 50%; background-color: #2ecc71; transform: rotate(0deg); }
    80% { 
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      background-color: #e74c3c;
      transform: rotate(180deg);
    }
    100% { border-radius: 0; background-color: #3498db; transform: rotate(360deg); }
  }

  /* --- SVG BUTTON STYLES --- */
  #toggleBtn {
    /* 1. Normal State: White Background */
    background-color: #ffffff; 
    border: 2px solid #ffffff; 
    
    /* Shape & Size */
    border-radius: 50%; 
    width: 44px;
    height: 44px;
    cursor: pointer;
    padding: 0; 
    
    /* Flexbox Center */
    display: flex;
    justify-content: center;
    align-items: center;
    
    transition: all 0.2s ease;
  }

  /* 2. Normal State: Black Icon */
  #toggleBtn svg {
    width: 20px;
    height: 20px;
    fill: #000000; /* Black Icon */
    display: block;
    transition: fill 0.2s ease;
  }

  /* 3. Hover State: Medium Grey Background */
  #toggleBtn:hover {
    background-color: #999999; /* Medium Grey */
    border-color: #999999; /* Match the border */
  }
  
  /* Optional: Keep icon black on hover, or change if needed. 
     Currently keeping it black as requested. */
  #toggleBtn:hover svg {
    fill: #ffffff; 
  }

  /* Focus state (Keyboard users) */
  #toggleBtn:focus-visible {
    outline: 2px solid #3498db;
    outline-offset: 4px;
  }

  /* Reduced Motion Override */
  @media (prefers-reduced-motion: reduce) {
    .morpher {
      animation-play-state: paused;
    }
  }
</style>

<div id="shape" class="morpher" aria-hidden="true"></div>

<button id="toggleBtn" aria-pressed="false" aria-label="Pause Animation">
  <svg viewBox="0 0 24 24"><path d="M6 19h4V5H6v14zm8-14v14h4V5h-4z"/></svg>
</button>

<script>
  // 1. Select elements
  const shape = document.getElementById('shape');
  const btn = document.getElementById('toggleBtn');
  
  // 2. Define SVG strings
  const iconPause = '<svg viewBox="0 0 24 24"><path d="M6 19h4V5H6v14zm8-14v14h4V5h-4z"/></svg>';
  const iconPlay  = '<svg viewBox="0 0 24 24"><path d="M8 5v14l11-7z"/></svg>';

  // 3. Check reduced motion
  const prefersReducedMotion = window.matchMedia('(prefers-reduced-motion: reduce)').matches;
  
  if (prefersReducedMotion) {
    shape.classList.add('paused');
    btn.innerHTML = iconPlay; 
    btn.setAttribute('aria-pressed', 'true');
    btn.setAttribute('aria-label', 'Play Animation');
  }

  // 4. Click Listener
  btn.addEventListener('click', function() {
    
    // Toggle paused class
    const isPaused = shape.classList.toggle('paused');

    if (isPaused) {
      btn.innerHTML = iconPlay;
      btn.setAttribute('aria-pressed', 'true');
      btn.setAttribute('aria-label', 'Play Animation');
    } else {
      btn.innerHTML = iconPause;
      btn.setAttribute('aria-pressed', 'false');
      btn.setAttribute('aria-label', 'Pause Animation');
    }
  });
</script>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<h2 class="wp-block-heading">Escaping<br>The<br>Box</h2>
</div>
</div>



<p>Nature doesn&#8217;t have straight lines, and neither does human attention.</p>



<p>The &#8220;Organic Layout&#8221; trend (often called &#8220;Anti-Grid&#8221;) is about breaking out of those rigid boxes. Instead of forcing your content into perfect squares, we use fluid shapes, overlapping elements, and &#8220;squi-rcles&#8221; (a mathematical blend of a square and a circle) to soften the experience.</p>



<p><strong>Why it works:</strong></p>



<ul class="wp-block-list">
<li><strong>It guides the eye: </strong>A standard grid forces the user to scan left-to-right, like a robot reading data. An organic layout uses curves and uneven spacing to literally point the user where to look next… like a &#8220;Contact Us&#8221; button.</li>



<li><strong>It signals &#8220;Custom&#8221;: </strong>When a user sees elements that float, overlap, or drift across the screen, their brain immediately registers: <em>This isn&#8217;t a template. This is premium.</em></li>



<li><strong>It creates &#8220;Visual Tension&#8221;:</strong> Just like in photography or painting, placing something slightly off-center creates energy. It makes the viewer want to stay and resolve the image, increasing the time they spend absorbing your brand.</li>
</ul>



<p>We aren&#8217;t talking about chaos. We’re talking about a &#8220;controlled flow&#8221; that feels more like flipping through a high-end magazine than scrolling through a database.</p>



<style>
  .container {
    overflow: hidden; 
  }

  .gsap-slide-title {
    display: block; 
    font-weight: 500;
  }
  .anim-text {
    display: inline-block;
    font-weight: 800;
    padding-left: 30px;
  }
  .anim-text span {
    display: inline-block; 
  }
</style>

<div class="container"> 
    <h2>
      <span class="gsap-slide-title">Moving with</span>
      <span class="anim-text" aria-label="Purpose">Purpose</span>
    </h2>
</div>

<script>
  // 1. Wait for the page to be fully ready
  document.addEventListener("DOMContentLoaded", (event) => {
    
    // Register the ScrollTrigger plugin
    // (Ensure you have loaded the ScrollTrigger script in your WP header/footer!)
    if (typeof ScrollTrigger !== 'undefined') {
        gsap.registerPlugin(ScrollTrigger);
    }

    // --- ANIMATION PART 1: "Moving with" ---
    gsap.from(".gsap-slide-title", {
      scrollTrigger: {
        trigger: ".gsap-slide-title",
        start: "top 85%", 
        toggleActions: "play none none reverse" 
      },
      x: 100,      
      opacity: 0,   
      duration: 1.5, 
      ease: "power3.out" 
    });
    
    // --- ANIMATION PART 2: "Purpose" ---
    const textElement = document.querySelector(".anim-text");

    // SAFETY CHECK: Only run this if the element actually exists on this page
    if (textElement) {
        
        const textContent = textElement.textContent;
        let splitHTML = "";

        // Manual Split Text Logic
        for (let letter of textContent) {
          splitHTML += letter === " " ? "&nbsp;" : `<span aria-hidden="true">${letter}</span>`;
        }
        textElement.innerHTML = splitHTML;

        // Run the Animation
        gsap.fromTo(".anim-text span", 
          {
            y: 100,           
            opacity: 0,       
          },
          {
            y: 0,             
            opacity: 1,       
            duration: 1, 
            delay: 1.5,
            stagger: 0.1,     
            ease: "back.out(1.7)",
            
            // IMPORTANT: Add ScrollTrigger here too so it waits for the user!
            scrollTrigger: {
                trigger: ".anim-text",
                start: "top 85%",
                toggleActions: "play none none reverse"
            }
          }
        );
    }

  }); // <--- THE CLOSING BRACKET GOES HERE AT THE VERY END
</script>



<p>Static text is safe. It is also very easy to ignore.</p>



<p>Some of the most effective websites use "Kinetic Typography"—text that moves, reacts, or transforms as you scroll. It’s not just about flashiness; it’s about biology. Human eyes are hardwired to detect motion. When a headline unspools itself as a user scrolls down, or a button subtly magnetizes to their cursor, it triggers a "micro-surprise"—a tiny hit of dopamine that keeps their brain engaged.</p>



<p>We use these moments to turn a flat brochure into a living conversation. </p>



<p>But be INTENTIONAL about your motion usage. Nothing kills a user experience faster than a website that makes your visitors feel sea-sick.</p>



<p>If you simply slap animation onto every element, you aren’t just being annoying; you are likely violating the <strong>European Accessibility Act</strong>, <strong>ADA</strong>, <strong>AODA</strong> and the overall <strong>WCAG 2.2 standards</strong>. Motion triggers vestibular disorders (dizziness/nausea) in a significant portion of the population.</p>



<p>MBD builds in mechanisms that allow users to stop, pause and avoid motion, because it should be like a good spice: used to enhance the flavor, not drown out the meal.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<h2 class="wp-block-heading">Making Pixels Feel Real</h2>
</div>



<div class="wp-block-column is-vertically-aligned-bottom is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<style>
  /* Container for centering */
  .skeuo-container {
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: #ffffff;
  }

  /* 1. Base Button Styles */
  .morph-btn {
    position: relative;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    border: none;
    border-radius: 12px;
    background-color: #3498db; /* Flat Blue Base */
    outline: none;
    -webkit-appearance: none;
  }
</style>

<div class="skeuo-container">
  <button id="skeuo-btn-id" class="morph-btn">Morph Me</button>
</div>

<script>
  // We use an "Immediately Invoked Function" (the curly braces) 
  // to create a local scope. This prevents "already declared" errors completely.
  {
    // 1. Select the button with a unique variable name
    const skeuoButton = document.getElementById("skeuo-btn-id");

    // 2. Define the states with unique names
    const skeuoFlatState = {
      y: 0,
      boxShadow: "0px 0px 0px rgba(0,0,0,0), inset 0px 0px 0px rgba(255,255,255,0)",
      scale: 1
    };

    const skeuo3DState = {
      y: -5, 
      scale: 1.05, 
      // The Skeuomorphic Shadow: Drop Shadow + Top Highlight + Bottom Shade
      boxShadow: "0px 15px 25px -5px rgba(0,0,0,0.3), inset 0px 3px 2px rgba(255,255,255,0.6), inset 0px -4px 8px rgba(0,0,0,0.1)",
      ease: "elastic.out(1, 0.5)", 
      duration: 0.8
    };

    // 3. Interactions
    if (skeuoButton) {
        // HOVER ENTER
        skeuoButton.addEventListener("mouseenter", () => {
          gsap.to(skeuoButton, skeuo3DState);
        });

        // HOVER LEAVE
        skeuoButton.addEventListener("mouseleave", () => {
          gsap.to(skeuoButton, {
            ...skeuoFlatState, 
            ease: "power2.out", 
            duration: 0.4
          });
        });
        
        // MOUSE DOWN (Press)
        skeuoButton.addEventListener("mousedown", () => {
          gsap.to(skeuoButton, {
            y: 0, 
            scale: 0.98,
            boxShadow: "0px 2px 5px rgba(0,0,0,0.2), inset 0px 2px 5px rgba(0,0,0,0.2)",
            duration: 0.1
          });
        });
        
        // MOUSE UP (Release)
        skeuoButton.addEventListener("mouseup", () => {
          gsap.to(skeuoButton, skeuo3DState); 
        });
    }
  }
</script>
</div>
</div>



<p>For a long time, "Flat Design" was the king. Everything was 2D, solid colors, and simple icons. It was clean, but eventually, it started to feel... cheap.&nbsp;</p>



<p>In 2026, we are seeing a return to <strong>Tactile Depth</strong>.</p>



<p>This isn't the old-school "leather and wood" textures of the early internet. This is what designers call "Light Skeuomorphism" or "Glassmorphism." It’s about giving digital objects physical weight and texture so they feel like they exist in the real world.</p>



<p><strong>Why we are bringing depth back:</strong></p>



<ul class="wp-block-list">
<li><strong>The Trust Factor:</strong> When a button has a subtle shadow, or a card looks like frosted glass floating over a background, it feels "expensive." It subconsciously tells the user that this isn't a fly-by-night landing page; it's a robust platform.</li>



<li><strong>Better Usability:</strong> Depth isn't just decoration; it's a map. By using layering and shadows, we show the user exactly which element is "on top" and requires their attention right now. It creates a natural hierarchy that flat design struggles to achieve.</li>



<li><strong>The "Touch" Sensation:</strong> Even on a glass screen, our brains crave texture. We use grainy gradients and soft lighting effects to make buttons look like you could actually press them.</li>
</ul>



<p>In order to rock this trend, make sure you always take accessibility standards into account. Ensure button edges have enough contrast and that glass effect items maintain text contrast minimums on all background colors.</p>



<h2 class="wp-block-heading">Ready to stand out?</h2>



<p>You don't just need a website; you need a vibe. You need a digital presence that feels organic, moves with purpose, and has enough depth to touch.</p>



<p>That is where <strong>MBD</strong> comes in.</p>



<p>We build custom, high-performance engines that happen to look and perform beautifully. We handle the complex math of fluid layouts, the legal headaches of accessibility compliance, and the technical SEO strategies so you can focus on running your business.</p>



<p><strong>Is your current website stuck in the grid?</strong></p>



<p>You don’t have to tear it all down today. Let’s start with a look under the hood. <a href="mailto:hello@mybrotheredarryl.com">Contact us today</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>RGD AccessAbility Feature</title>
		<link>https://www.mybrotherdarryl.com/rgd-accessability-feature/</link>
		
		<dc:creator><![CDATA[Candace Morgan]]></dc:creator>
		<pubDate>Mon, 15 Dec 2025 15:48:41 +0000</pubDate>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Design & Development]]></category>
		<guid isPermaLink="false">https://www.mybrotherdarryl.com/?p=8974</guid>

					<description><![CDATA[We’re thrilled to announce that our work has been handpicked for the Registered Graphic Designers (RGD) website.]]></description>
										<content:encoded><![CDATA[
<p>We’re thrilled to announce that our work has been handpicked for the <a href="https://rgd.ca/" target="_blank" rel="noreferrer noopener">Registered Graphic Designers</a> (RGD) website, featured alongside standout examples in their <a href="https://accessability.rgd.ca/" target="_blank" rel="noreferrer noopener">new digital AccessAbility site</a>. As one of the Canadian design community’s most trusted resources, RGD highlights projects that move accessibility forward and our case study for Community Care Durham (CCD) is now one of them.</p>



<p>CCD is an amazing community program that provides all kinds of essential community supports such as Meals on Wheels, Assisted Living, Adult day programs, Community Food Box and so much more.</p>



<p>CCD not only needed to have their website redesigned and developed to meet accessibility standards, but they also needed ongoing support to ensure that their website remains accessible in order to meet both their clients needs and the <a href="https://www.ontario.ca/laws/statute/05a11" target="_blank" rel="noreferrer noopener">Accessibility for Ontario with Disabilities Act (AODA)</a>.  It was important that the website was designed in a way that it could be easily navigated by both caregivers and clients, in order to obtain these essential services. </p>



<p>Over the last 10+ years our team has actively grown and developed the advanced skills in order to become experts in the website accessibility space. We are so proud that MBD was given the opportunity to guide them through the whole website accessibility process from design, to development, and then provide them with ongoing monitoring and auditing support by an IAAP Certified Specialist led service.</p>



<p>We&#8217;d like to thank RGD for the privilege&nbsp;of having our case study included in the AccessAbility website. If you would like to read the Case Study for Community Care Durham&#8217;s website redesign <a href="https://accessability.rgd.ca/case-studies/community-care-durham-website-redesign/" target="_blank" rel="noreferrer noopener">you can find it here</a>. If you would like to visit the RGD&#8217;s website on web AccessAbility you can <a href="https://accessability.rgd.ca/web-accessibility/" target="_blank" rel="noreferrer noopener">visit it by clicking here</a>.</p>



<p></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>The Overlay Odyssey:</title>
		<link>https://www.mybrotherdarryl.com/the-overlay-odyssey/</link>
		
		<dc:creator><![CDATA[Candace Morgan]]></dc:creator>
		<pubDate>Mon, 22 Jan 2024 14:40:30 +0000</pubDate>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Design & Development]]></category>
		<guid isPermaLink="false">https://mybrotherdarry.wpenginepowered.com/?p=8313</guid>

					<description><![CDATA[I’ve got a one-stop fix-it-all elixir for your accessibility issues here! If that sounds too good to be true... it is!]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading">Pitfalls, Promises, and the Pursuit of Genuine Accessibility</h2>



<p>Hear ye! Hear ye! I’ve got a one-stop fix-it-all elixir for your accessibility issues here!&nbsp; You’ll never have an issue with accessibility again! Just step right up and pay this marginal monthly fee and all your accessibility problems will be in the past!</p>



<p><strong>If that sounds too good to be true…&nbsp; it is.</strong></p>



<p>As you look for website accessibility solutions you will encounter a lot of companies selling accessibility overlays or accessibility widgets to make your site compliant. They are a very tempting, quick, low cost solution. They come with promises of fixing all accessibility issues on your site and protecting you from complaints and litigation &#8211; but in truth &#8211; they don’t do nearly as much as they promise.</p>



<p>As with many things, accessibility overlays are not all bad, and not all good. The key is to know when to use them, and ensure you never rely too heavily on them.</p>



<h2 class="wp-block-heading">What is an Accessibility Overlay?</h2>



<p>Accessibility overlays or accessibility widgets are a set of user accessible tools that modify code on a website to allow for better accessibility. They are normally accessible through a small floating button that opens into an overlay window that allows the user to choose different options. The options allow the user to change the page in various ways in order to make it easier to consume. Some of these ways include: contrast, color, zoom, stop all motion, etc.</p>



<h2 class="wp-block-heading">The Good</h2>



<ul class="wp-block-list">
<li>If you have an already compliant website, this is a great way to ensure that inaccessible changes made by a contributor or editor are not completely inaccessible until it’s repaired. When using this solution it’s important to pair this with an ongoing scan tool that alerts the site manager when an accessibility problem appears.</li>



<li>There are many times when a company cannot make all accessibility remediations at once. In these cases, resolving the items that cause the biggest hardships for your users is the priority. Using an accessibility overlay or widget could be an effective way to bridge the gap until the next update is ready.&nbsp;</li>
</ul>



<h2 class="wp-block-heading">The Bad</h2>



<ul class="wp-block-list">
<li>Relying heavily and/or long-term on an overlay tool can give you a false sense of security. In recent years, the US saw many lawsuits filed against companies who used accessibility overlays / widgets.&nbsp;</li>



<li>Accessibility overlays and widgets can have accessibility errors built right into them! As these are software, they have the potential to have releases with bugs in them. Having a separate automated scan accessibility tool can help find these issues as they arise.&nbsp;&nbsp;</li>



<li>Not all accessibility issues can be solved with overlays and widgets. Some of them are:
<ul class="wp-block-list">
<li>Missing headings or improperly coded headings</li>



<li>Missing Alt text on images (although some have AI alt text creation)</li>



<li>Missing link text</li>



<li>Missing form field labels</li>



<li>Missing required form field indications</li>



<li>Missing submit button on form / missing submit button label</li>



<li>Missing sectional landmarks</li>



<li>Improperly coded content structure causing the user navigation issues</li>
</ul>
</li>



<li>Users must put forth a fair bit of effort to turn on the feature(s) that they require.&nbsp;</li>



<li>Some users have issues navigating / finding the overlay launch button. If the user is unable to use a mouse, or unable to see, they may have difficulties accessing the accessibility options.</li>



<li>Overlays and widgets can cause issues with assistive devices by overriding the users options and preferences.</li>



<li>Accessibility overlays and widgets do not work if Javascript is disabled on the user&#8217;s device. Some users disable Javascript to ensure it does not affect their assistive device.</li>



<li>Overlays can reduce your website’s performance. If your website is built with accessibility in mind it will usually run in an optimized state, whereas using a secondary program to change your website on-the-fly can cause performance issues.</li>
</ul>



<p>Overall, accessible overlays and widgets are seen by the disabled community as a band-aid to cover up issues and not solve them. The good news is that overlays do have a real legitimate use case, and they are constantly evolving to become a better tool. BUT they are not a replacement for having a properly developed accessible website.&nbsp;</p>



<h2 class="wp-block-heading">Building an Inclusive Website</h2>



<p>Making web accessibility a priority from the beginning of development does not necessarily increase the cost of development. The My Brother Darryl website team is experienced in the full scope of website development and post-launch accessibility monitoring. <a href="mailto:hello@mybrotheredarryl.com" data-type="mailto" data-id="mailto:hello@mybrotheredarryl.com">Contact us today for a quote on your next accessible website build.</a></p>



<p class="source has-small-font-size">Sources:<br>Photo by <a href="https://www.pexels.com/photo/woman-in-gray-sweater-sitting-on-chair-6116868/" data-type="link" data-id="https://www.pexels.com/photo/woman-in-gray-sweater-sitting-on-chair-6116868/">Cottonbro Studio</a> </p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>2024 SEO Trends</title>
		<link>https://www.mybrotherdarryl.com/seo-trends-for-2024/</link>
		
		<dc:creator><![CDATA[Candace Morgan]]></dc:creator>
		<pubDate>Wed, 10 Jan 2024 16:24:31 +0000</pubDate>
				<category><![CDATA[Design & Development]]></category>
		<guid isPermaLink="false">https://mybrotherdarry.wpenginepowered.com/?p=8251</guid>

					<description><![CDATA[Ready to find out what's trending in SEO for 2024? Get ready to EEAT!]]></description>
										<content:encoded><![CDATA[
<p>One of my FAVOURITE subjects to cover for 2024 is definitely the one that can have the most impact on your website. There are many factors that work together to affect your website&#8217;s ranking, and in essence it&#8217;s much like baking a cake. We mix ingredients together to make a scrumptious cake &#8211; and the higher quality your ingredients, the better your cake will taste! &nbsp; </p>



<p>So with that in mind, let’s dig into the main SEO Factors for 2024!</p>



<h2 class="wp-block-heading"><strong>AI will play a larger role in content creation.</strong></h2>



<p>Content creators are going to use AI to create content at a much faster rate. But, content created by AI doesn’t automatically equal <strong>QUALITY</strong> content, and it doesn’t equal <strong>ORIGINAL</strong> content either. AI generates content based on what it has access to, therefore users can end up with factually incorrect content and/or plagiarized content. If you are using AI to support your content creation, it’s extremely important to play the role of an editor and thoroughly vet the content. Although Google does not directly downrank pages based on incorrect statements or duplicated content, there are other signals of low quality content that will cause a loss of ranking.</p>



<p>**Note: Google has mentioned that they may consider AI a negative ranking factor in the future. </p>



<h2 class="wp-block-heading"><strong>Content quality is a ranking factor you should never ignore</strong></h2>



<p>Ensuring your content is palatable and consumable is at the very top of the list.&nbsp; You should review every article for E-E-A-T (Experience, Expertise, Authoritativeness &amp; Trustworthiness), &#8212; these are major ranking factors. The length of your content is not as important as the content itself, (although very short articles are not likely to contain the depth needed for good ranking). Your article should provide thorough coverage of your topic, without inflating it unnecessarily. The goal is to prove that you have expertise, that you&#8217;re a voice of authority on the topic and that you are a trusted source for this topic. This can be done by providing linked references to your conclusions, and ensuring that jargon, industry terms and processes are explained in layman&#8217;s terms. Also don&#8217;t forget the basics: check your spelling, grammar and punctuation!</p>



<h2 class="wp-block-heading"><strong>Voice Search Content Optimization</strong></h2>



<p>Voice assistants like Google, Siri and Alexa are changing how we create content for the web. With the number of active voice assistant devices expected to shoot beyond the world&#8217;s population in 2024, optimizing your site for voice search is becoming very important. In short, this means using conversational language and long-tailed keywords, as well as providing direct answers to common questions.</p>



<h2 class="wp-block-heading"><strong>Focus on high-intent keywords</strong></h2>



<p>One of the SEO tactics you may want to integrate on your site is the use of high-intent keywords. “High-intent keyword” simply means a word or phrase that often depicts a desire to purchase. Crafting content with this tactic can help customers find your business at the moment of their highest interest.</p>



<p>There are 3 different main intents to focus on: </p>



<ul class="wp-block-list">
<li>navigational (intent to visit) </li>



<li>informational (intent to acquire information) </li>



<li>transactional (intent to purchase) </li>
</ul>



<p>Some examples of high-intent keywords are: “purchase” or “buy”, but it could also be “near me” or “directions to”. When using these terms, you should focus on the long-tailed keyword. For example; instead of just mentioning “best price”, be more specific: “We&#8217;ll give you the best price on Samsung Galaxy Z phones”. This is much more detailed and targeted using the same high-intent keywords.</p>



<h2 class="wp-block-heading"><strong>Build it right &#8211; Prioritize technical SEO</strong></h2>



<p>Technical SEO is the process of optimizing areas other than content on your website, to improve both SEO and user experience. This includes: using <a href="https://en.wikipedia.org/wiki/HTTPS" target="_blank" rel="noreferrer noopener">secure https</a>, <a href="https://developers.google.com/search/docs/crawling-indexing/mobile/mobile-sites-mobile-first-indexing" target="_blank" rel="noreferrer noopener">mobile friendliness</a>, <a href="https://support.google.com/webmasters/answer/9205520?hl=en" target="_blank" rel="noreferrer noopener">Optimized core web vitals</a>, <a href="https://developers.google.com/search/docs/appearance/structured-data/intro-structured-data" target="_blank" rel="noreferrer noopener">structured data markup</a>, <a href="https://developers.google.com/search/docs/crawling-indexing/sitemaps/overview" data-type="link" data-id="https://developers.google.com/search/docs/crawling-indexing/sitemaps/overview" target="_blank" rel="noreferrer noopener">xml sitemap</a>, <a href="https://developers.google.com/search/docs/crawling-indexing/robots/intro" data-type="link" data-id="https://developers.google.com/search/docs/crawling-indexing/robots/intro" target="_blank" rel="noreferrer noopener">robots.txt</a>, <a href="https://developers.google.com/search/docs/crawling-indexing/canonicalization" target="_blank" rel="noreferrer noopener">Canonicalization (fix duplicate content issues)</a>, site architecture, and <a href="https://developers.google.com/search/docs/crawling-indexing/valid-page-metadata" data-type="link" data-id="https://developers.google.com/search/docs/crawling-indexing/valid-page-metadata" target="_blank" rel="noreferrer noopener">meta tags</a>.</p>



<p>Other items that encompass technical SEO are things like broken links or images, redirect loops, and other issues that affect user experience and readability. In essence, check your site for errors and use Google Search Console tools to help identify issues and improve your ranking factors.</p>



<h2 class="wp-block-heading"><strong>Google Core Web Vitals</strong></h2>



<p id="cwvAnchor">3 aspects to be the core of user experience when visiting a website:</p>



<ul class="wp-block-list">
<li>Largest Contentful Paint (LCP) measures website loading performance. This means improving image size compression, and minifying CSS and JavaScript files. Testing your pages using Google’s page speed insights can help you identify issues. Your aim is to have the LCP occur within the first 2.5 seconds of the page starting to load.<br></li>



<li>Interaction to Next Paint (INP) is replacing First Input Delay (FID) in March of 2024. FID measured  the time it took for a website to respond to a user&#8217;s first interaction. But the INP metric will instead focus on the measurement of the page&#8217;s overall responsiveness throughout its lifecycle. This is assessed through observing the latency of all click, tap and keyboard interactions. You should aim for an INP below or at 200 milliseconds.<br></li>



<li>Cumulative Layout Shifts (CLS) measures the visual stability of a site. Specifically, the amount of unexpected layout shifts of visual elements on the page. The CLS should have a score of less than 0.1.</li>
</ul>



<h2 class="wp-block-heading"><strong>Video SEO has impressive results</strong></h2>



<p>Video content is increasingly important for SEO with video results appearing more frequently in search results. In video, SEO transcripts and/or captioning are absolutely essential. Remember that search engines cannot crawl video content &#8211; they need text-based content to be able to understand the video. (Transcripts are direct audio to text document, while captioning is the process of splitting the transcript up into text chunks and time coding each to synchronize with a video.)</p>



<p>Another key area of video SEO is timestamps. When you search for things like “how-to” videos with multiple steps, search will provide these key moments that match with search.</p>



<p>Don&#8217;t forget to optimize your video title and description. Whether your video is using YouTube or another video streaming service, you need to ensure that the video&#8217;s description has at least one live link back to your website.&nbsp;</p>



<h2 class="wp-block-heading"><strong>Local SEO keeps playing a big role in 2024</strong></h2>



<p>Local SEO is a strategy that allows&nbsp; your company to be found in local search results and increases local traffic.&nbsp; Beyond your website, a very effective tool is <a href="https://www.google.com/intl/en_ca/business/" target="_blank" rel="noreferrer noopener">Google Business Profile</a>. It&#8217;s important to ensure that you&#8217;ve optimized this profile, and ensure that it is actively managed, updated and maintained! Make sure your listing’s business hours are up-to-date, add and remove products/services as needed, and respond promptly and professionally to online reviews &#8211; both negative and positive!</p>



<p>Whatever avenue you use for your local SEO (Google, Facebook, Homestars, etc.) I cannot underscore enough, the importance of ASKING happy clients to give you an online review. Some clients have a business card with the Google review instructions on it, so it’s easy to leave behind. You never need a PERFECT 5 stars &#8211; (in fact, perfect sometimes looks fake.) &#8211; but having a large amount of good reviews is important to offset any bad reviews that might come in. This absolutely contributes to a healthy local SEO!</p>



<p>While I’ve tried to give you a high-level look at the SEO factors for 2024, there&#8217;s always unique situations and circumstances. My Brother Darryl is proud to help companies thrive online. </p>



<p>You can <a href="mailto:hello@mybrotheredarryl.com" data-type="mailto" data-id="mailto:hello@mybrotheredarryl.com">contact us by email</a> or give us a call at <a href="tel:19058522615">1-905-852-2615</a>.</p>



<p></p>



<p class="source has-small-font-size">Sources: <br><a href="https://www.linkedin.com/pulse/future-seo-predictions-trends-2024-omoseye-alebiosu/">https://www.linkedin.com/pulse/future-seo-predictions-trends-2024-omoseye-alebiosu/<br></a><a href="https://www.juniperresearch.com/press/number-of-voice-assistant-devices-in-use">https://www.juniperresearch.com/press/number-of-voice-assistant-devices-in-use</a><br><a href="https://www.tutorialspoint.com/the-role-of-technical-seo-in-site-security">https://www.tutorialspoint.com/the-role-of-technical-seo-in-site-security<br></a><a href="https://developers.google.com/search/docs/appearance/core-web-vitals" target="_blank" rel="noreferrer noopener">https://developers.google.com/search/docs/appearance/core-web-vitals</a></p>



<p class="source has-small-font-size">Photo by Monstera Production: <a href="https://www.pexels.com/photo/excited-black-woman-using-laptop-9429552/" target="_blank" rel="noreferrer noopener">https://www.pexels.com/photo/excited-black-woman-using-laptop-9429552/</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Website font trends for 2024</title>
		<link>https://www.mybrotherdarryl.com/website-font-trends-for-2024/</link>
		
		<dc:creator><![CDATA[Candace Morgan]]></dc:creator>
		<pubDate>Tue, 10 Oct 2023 12:02:07 +0000</pubDate>
				<category><![CDATA[Design & Development]]></category>
		<guid isPermaLink="false">https://mybrodarryl.flywheelstaging.com/?p=8130</guid>

					<description><![CDATA[The bold and the beautiful - we're focusing on the web font treatments for 2024 and it's huge!]]></description>
										<content:encoded><![CDATA[
<p>The bold and the beautiful &#8211; we&#8217;re focusing on the web font treatments for 2024 and it&#8217;s huge. No really, I mean it&#8217;s HUGE. Big vibrant colors, big images, and big font styles! We&#8217;re expecting to see a continued focus on minimalism and simplicity in web design, which means lots of sans-serif fonts and lots of text-heavy design. Let&#8217;s jump into the font trends for 2024!</p>



<h2 class="wp-block-heading">Oversized Typography</h2>



<p>Might as well start with the biggest trend! Oversized font sizes have become more popular, but looking at 2024, you&#8217;re going to find it even more so. Whether the text is paired with images or simply standing alone, the text is oversized and bold with lots of contrast. Overall the trend is using sans-serif fonts and ultra-bold for headline fonts.</p>



<p>Text-Only Design: While some sites are image heavy, there is a beauty and a simplicity to text-only (or minimal-image) designs. They allow the user to focus on the message and are perfect for messages that need to get to the point quickly and effectively. For many, the lack of distractions is refreshing.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large source-image"><img decoding="async" src="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/thevariable.com_-1024x501.jpg" alt="Large Text &quot;We Exist to Beat Indifference&quot;" class="wp-image-7996" title="source-image"/><figcaption class="wp-element-caption">Source: The Variable</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large source-image"><img fetchpriority="high" decoding="async" width="1024" height="501" src="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/pergano.de_-1024x501.jpg" alt="Homepage of pergano.de" class="wp-image-7991" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/pergano.de_-1024x501.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/pergano.de_-300x147.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/pergano.de_-768x376.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/pergano.de_-1536x752.jpg 1536w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/pergano.de_-2048x1003.jpg 2048w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/pergano.de_-200x98.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/pergano.de_-400x196.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/pergano.de_-600x294.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/pergano.de_-800x392.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/pergano.de_-1200x587.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Source: Pergano</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large source-image"><img decoding="async" width="1024" height="499" src="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/qubex.ai_-1024x499.jpg" alt="Homepage of Qubex: Large Text: Critical Moments Demand An Immediate Response." class="wp-image-7992" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/qubex.ai_-1024x499.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/qubex.ai_-300x146.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/qubex.ai_-768x374.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/qubex.ai_-1536x749.jpg 1536w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/qubex.ai_-2048x999.jpg 2048w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/qubex.ai_-200x98.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/qubex.ai_-400x195.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/qubex.ai_-600x293.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/qubex.ai_-800x390.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/qubex.ai_-1200x585.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Source: Qubex</figcaption></figure>
</div>
</div>



<p>The trick to success is to LOVE your white space! (&#8220;<em><a href="https://www.tiktok.com/discover/love-her-leave-her-alone-cooking" data-type="link" data-id="https://www.tiktok.com/discover/love-her-leave-her-alone-cooking">Love her, leave her alone</a></em>&#8220;). As well, understanding when, where and how to style the most important emphasis words is key to a flawless execution. Remember big text means mistakes are HIGHLY visible.</p>



<p><strong>Bold Text Paired with Bold Images.</strong> Bring the WOW factor by pairing SUPER bold text with strong and moody imagery! This treatment really embodies the feel of a book cover or a movie poster. It really invites the user to engage with the site to find out more.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large source-image"><img decoding="async" width="1024" height="494" src="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/dominquesire.com_-1024x494.jpg" alt="Homepage of website for Dominique Sire" class="wp-image-7993" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/dominquesire.com_-1024x494.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/dominquesire.com_-300x145.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/dominquesire.com_-768x371.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/dominquesire.com_-1536x741.jpg 1536w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/dominquesire.com_-2048x988.jpg 2048w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/dominquesire.com_-200x97.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/dominquesire.com_-400x193.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/dominquesire.com_-600x290.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/dominquesire.com_-800x386.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/dominquesire.com_-1200x579.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Source: Dominque Sire</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large source-image"><img loading="lazy" decoding="async" width="1024" height="499" src="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/escapeplanvr.com_-1024x499.jpg" alt="Homepage of Website For Meta Escape Plan VR" class="wp-image-7994" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/escapeplanvr.com_-1024x499.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/escapeplanvr.com_-300x146.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/escapeplanvr.com_-768x374.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/escapeplanvr.com_-1536x748.jpg 1536w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/escapeplanvr.com_-2048x997.jpg 2048w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/escapeplanvr.com_-200x97.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/escapeplanvr.com_-400x195.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/escapeplanvr.com_-600x292.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/escapeplanvr.com_-800x390.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/escapeplanvr.com_-1200x584.jpg 1200w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Source: Meta Escape Plan VR</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large source-image"><img decoding="async" src="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/dooconsult.com_-1024x502.jpg" alt="Homepage for Webpage for Doo Consult" class="wp-image-7995"/><figcaption class="wp-element-caption">Source: Doo Consult</figcaption></figure>
</div>
</div>



<h2 class="wp-block-heading">Animated Text</h2>



<p><strong>Movement on load/scroll:</strong> Text with motion on load adds a new level of user engagement. It gives them a feeling of truly interacting with more than just a static website. As with anything, it can be taken too far, but simple elegant movements can really give the site polish. Generally this type of animation is accomplished with HTML &amp; CSS, which allows for the maximum compatibility with assistive devices. When adding this to your website, you should consider the readability impact on various consumer groups.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column three-column-media is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.3%">
<p>Fade-In Text</p>



<figure class="wp-block-video source-image"><video controls loop muted src="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/Fade-in-font-Recording-2023-09-19-110107.mp4"></video><figcaption class="wp-element-caption">Source: <a href="https://codepen.io/alvarotrigo/pen/ExvqdNa" target="_blank" rel="noreferrer noopener">Álvaro</a></figcaption></figure>
</div>



<div class="wp-block-column three-column-media is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.3%">
<p>Wipe-in Text</p>



<figure class="wp-block-video source-image"><video controls loop muted src="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/text-wipe.mp4"></video><figcaption class="wp-element-caption">Source: <a href="https://codepen.io/RobinTreur/pen/QKjgPX" target="_blank" rel="noreferrer noopener" data-type="link" data-id="https://codepen.io/bbosmedia/pen/pQoYoR">Robin Treur</a></figcaption></figure>
</div>



<div class="wp-block-column three-column-media is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.3%">
<p>Slide-Up Text on Scroll</p>



<figure class="wp-block-video source-image"><video controls loop muted src="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/Slide-up-Recording-2023-09-19-130320.mp4"></video><figcaption class="wp-element-caption">Source: <a href="https://codepen.io/chriscoyier/pen/ndMLOR">Chris Coyier</a></figcaption></figure>
</div>
</div>



<p>The impact of text animation speed, repetition, complexity and flashing are all things that should be carefully considered. Movements that are too fast or feature non-stop animation can be too distracting. Animations that are too complex, or animate letter by letter may be hard to read. Flashing could cause headaches or seizures. In the end, the animation should add to &#8211; not take away from &#8211; the understanding and comprehension of your site.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.3%">
<p>Too Complex</p>



<figure class="wp-block-video source-image"><video controls loop muted src="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/complex-movement-Recording-2023-09-19-112051.mp4"></video><figcaption class="wp-element-caption">Source: <a href="https://codepen.io/alvarotrigo/pen/qBXeJab" target="_blank" rel="noreferrer noopener">Álvaro</a></figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.3%">
<p>Non-stop Movement</p>



<figure class="wp-block-video source-image"><video controls loop muted src="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/non-stop-movement-text-Recording-2023-09-19-111343-1.mp4"></video><figcaption class="wp-element-caption">Source: <a href="https://codepen.io/bbosmedia/pen/pQoYoR" target="_blank" rel="noreferrer noopener">Abbos Nurgulshanov</a></figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.3%">
<p>Letter-by-letter Movement</p>



<figure class="wp-block-video source-image"><video controls loop muted src="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/Jumping-text-Recording-2023-09-19-111808.mp4"></video><figcaption class="wp-element-caption">Source: <a href="https://codepen.io/alvarotrigo/pen/xxLvyOG" target="_blank" rel="noreferrer noopener">Álvaro</a></figcaption></figure>
</div>
</div>



<p><strong>Kinetic Typography:</strong> Although the definition of Kinetic Typography is simply &#8220;moving text&#8221; &#8211; this term is used to refer to a specific motion technique that integrates animation with text to express ideas. This effect is normally used most often in film and video applications, but with the web becoming a more interactive video-like space, this technique is transitioning over to webspace more and more. While this effect is very engaging and can be used to effectively enhance storytelling, it does pose a problem when it comes to those who are visually or cognitively impaired.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.3%">
<figure class="wp-block-image size-full is-resized source-image"><img decoding="async" src="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/yes-no-dribbble-.gif" alt="Animated Yes / No text. &quot;No&quot; drops down then turns into a &quot;Yes&quot;, &quot;Yes&quot; pops up and turns into &quot;No&quot;." class="wp-image-8032" style="width:274px;height:206px"/><figcaption class="wp-element-caption">Source: <a href="https://dribbble.com/visually">Alena Hovorkova</a></figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.3%">
<figure class="wp-block-image size-full source-image"><img decoding="async" src="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/mobil-dribbble.gif" alt="Mobil Gas logo animation where gas level gauge rotates and turns into the &quot;o&quot; in the Mobil logo." class="wp-image-8033"/><figcaption class="wp-element-caption">Source: <a href="https://dribbble.com/irmahasanic">Irma Hasanic</a></figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.3%">
<figure class="wp-block-image size-full source-image"><img decoding="async" src="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/space-kinetic-text.gif" alt="Example of Kinetic Text animation - fast and hard to read" class="wp-image-8035"/><figcaption class="wp-element-caption">Source: <a href="https://hackernoon.com/images/1*wA4AcOHCQY7UuzN3EhwxaQ.gif" target="_blank" rel="noreferrer noopener" data-type="link" data-id="https://hackernoon.com/images/1*wA4AcOHCQY7UuzN3EhwxaQ.gif">Hackernoon</a></figcaption></figure>
</div>
</div>



<p>Kinetic typography is often created with programs like Adobe After Effects, and exported as gif image or video files which will need to have assistive information added. Even with adding alternate text or captions, it&#8217;s easy to see how people with visual impairment will have a lesser experience. Those who have cognitive issues may have a problem with the speed and/or flashing, and it could lessen their experience as well. That doesn&#8217;t mean that these graphics <em>cannot</em> be used, but this means that special attention should be paid to how the site will be experienced by users with differing abilities.</p>



<p><strong>Interactive Fonts:</strong> Interactive fonts are exactly what they sound like. Standard fonts can be coded to change on user interaction such as: hover, click, etc. but will cause a content shift as seen below:</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:80%">
<figure class="wp-block-image size-full is-resized source-image"><img decoding="async" src="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/interactive-menu-reg-google.gif" alt="menu showing how user hovers over each item, it becomes bold and the text to the right shifts." class="wp-image-8038" style="object-fit:contain;width:658px;height:46px"/><figcaption class="wp-element-caption">Source: Google Fonts</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:80%">
<figure class="wp-block-image size-full source-image"><img decoding="async" src="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/interactive-parag-reg-google.gif" alt="paragraph showing how when the user hovers over each item, it becomes bold and the text to the right shifts." class="wp-image-8039"/><figcaption class="wp-element-caption">Source: Google Fonts</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>
</div>



<p>But <strong><a href="https://fonts.google.com/knowledge/using_variable_fonts_on_the_web/interactive_animations_with_variable_fonts" target="_blank" rel="noreferrer noopener" data-type="link" data-id="https://fonts.google.com/knowledge/using_variable_fonts_on_the_web/interactive_animations_with_variable_fonts">multiplexed fonts</a></strong> allow the font to change its weight with minimal shifting to the surrounding content. Regular and bold weights can occupy the same amount of horizontal spacing, causing the transition to and from the hover effect to feel seamless.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:80%">
<figure class="wp-block-image size-full source-image"><img decoding="async" src="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/interactive-menu-Int-google.gif" alt="menu showing how user hovers over each item, it becomes bold but the surrounding text does not shift." class="wp-image-8041"/><figcaption class="wp-element-caption">Source: Google Fonts</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:80%">
<figure class="wp-block-image size-full source-image"><img decoding="async" src="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/interactive-parag-Int-google.gif" alt="paragraph showing how when user hovers over each item, it becomes bold but the surrounding text does not shift." class="wp-image-8042"/><figcaption class="wp-element-caption">Source: Google Fonts</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>
</div>



<p>To create these effects, the developer must code the bold using a variation setting &#8211; versus the traditional bold font settings. You can find more information on variable font coding at <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_fonts/Variable_fonts_guide" target="_blank" rel="noreferrer noopener">Mozilla developer resources</a>.</p>



<p>Variable fonts can also do more than just a standard normal/bold shift. Multiplexing fonts can also have a variable italic axis and hover effect options that can create really fun little animated touches:</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:80%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="1250" height="453" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/multiplexed-melt-cheee-variable.gif" alt="Font that looks like it's melting when letters are hovered over." class="wp-image-8202"/></figure>



<p class="has-text-align-center source-image has-small-font-size">Source: Google Fonts, Multiplexed hover effects with more expressive variations, on a letter-by-letter basis. <br>Typeface: Cheee Variable.</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>
</div>



<p><strong>An Important Note about Animated Fonts</strong> Animation is fun &#8212; BUT the motion can cause actual headaches, and other physical issues to some people. This can really harm your overall user experience. Whenever you&#8217;re adding animation you MUST ensure that your animation respects the users choice for reduced motion. Please also keep in mind that if your site is relying on the animation/motion to communicate an important message to the user, there are many people with disabilities who you will not get the chance to connect with.</p>



<h2 class="wp-block-heading">In Conclusion: User-First Thinking Wins</h2>



<p>These trends are fun, engaging and can really push the boundaries of what we can develop for our users. As much as we may long to incorporate these trendy features, we have to ensure our main priority is always on user experience for all. But as long as we incorporate them in a user-first design way, the site will be a success.</p>



<p>If you&#8217;d like us to help you make your site a success, <a href="mailto:hello@mybrotheredarryl.com" data-type="mailto" data-id="mailto:hello@mybrotheredarryl.com">give us a shout</a>! Our studio of seasoned web professional designers and developers will take your site from concept, through to creation.</p>



<p class="source has-small-font-size">Hero photo by <a href="https://unsplash.com/@octadan?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Octavian Dan</a> on <a href="https://unsplash.com/photos/vCXa_VozlMM?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Unsplash</a></p>
]]></content:encoded>
					
		
		<enclosure url="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/Fade-in-font-Recording-2023-09-19-110107.mp4" length="369082" type="video/mp4" />
<enclosure url="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/text-wipe.mp4" length="775202" type="video/mp4" />
<enclosure url="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/Slide-up-Recording-2023-09-19-130320.mp4" length="325847" type="video/mp4" />
<enclosure url="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/complex-movement-Recording-2023-09-19-112051.mp4" length="812892" type="video/mp4" />
<enclosure url="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/non-stop-movement-text-Recording-2023-09-19-111343-1.mp4" length="796987" type="video/mp4" />
<enclosure url="https://www.mybrotherdarryl.com//wp-content/uploads/2023/09/Jumping-text-Recording-2023-09-19-111808.mp4" length="525167" type="video/mp4" />

			</item>
		<item>
		<title>Website Color Trends for 2024</title>
		<link>https://www.mybrotherdarryl.com/website-color-trends-for-2024/</link>
		
		<dc:creator><![CDATA[Darryl Holtby]]></dc:creator>
		<pubDate>Tue, 19 Sep 2023 12:02:00 +0000</pubDate>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Design & Development]]></category>
		<category><![CDATA[2024]]></category>
		<category><![CDATA[Color trends]]></category>
		<guid isPermaLink="false">https://mybrotherdarry.wpenginepowered.com/?p=7903</guid>

					<description><![CDATA[Vibrant, bold, and color combinations with tons of contrast are what 2024 web design is all about! ]]></description>
										<content:encoded><![CDATA[
<p>Vibrant, bold, and color combinations with tons of contrast are what 2024 web design is all about! Design next year is all about getting attention and causing a little drama! (Electric blue, neon pink, vibrant yellows) Don&#8217;t fret if you need something a little softer though. There&#8217;s also soft earth tones, punctuated with bold colors like jet blacks, dark greens and vibrant oranges and reds. Here are some of our favorite website color trends for the upcoming year.</p>



<h2 class="wp-block-heading">Black &amp; White</h2>



<p>Clean, simple and easy to read. Black and white punctuated with bright vibrant color touches is absolutely on trend. It pairs perfectly with the current trend of large bold text treatments. Dark backgrounds are ever increasing in popularity as they have been shown to reduce eye fatigue &amp; save battery life.</p>



<p>We love the way the bright colors sit on the black! We feel it really represents the dramatic and fun energy of the TikTok brand. Remember that you don&#8217;t have to use the black background everywhere! Swap that out for a soft background color to accentuate a separate area, but keep the text bold and highly contrasted to keep the trend throughout.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="471" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-01-1024x471.jpg" alt="Color palette  for the TikTok brand, HEX colors Black: #000000, White: #fffff, Teal blue: #74F0ED, Dark Grey: #3d3d3d, and Bright Pink #EA445A" class="wp-image-7928" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-01-1024x471.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-01-300x138.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-01-768x353.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-01-200x92.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-01-400x184.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-01-600x276.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-01-800x368.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-01-1200x552.jpg 1200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-01.jpg 1250w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large source-image"><img loading="lazy" decoding="async" width="1024" height="492" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-partners-tiktok-pc-en-2023-09-08-14_10_29-1024x492.png" alt="TikTok Partners Homepage" class="wp-image-7906" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-partners-tiktok-pc-en-2023-09-08-14_10_29-1024x492.png 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-partners-tiktok-pc-en-2023-09-08-14_10_29-300x144.png 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-partners-tiktok-pc-en-2023-09-08-14_10_29-768x369.png 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-partners-tiktok-pc-en-2023-09-08-14_10_29-1536x738.png 1536w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-partners-tiktok-pc-en-2023-09-08-14_10_29-2048x984.png 2048w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-partners-tiktok-pc-en-2023-09-08-14_10_29-200x96.png 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-partners-tiktok-pc-en-2023-09-08-14_10_29-400x192.png 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-partners-tiktok-pc-en-2023-09-08-14_10_29-600x288.png 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-partners-tiktok-pc-en-2023-09-08-14_10_29-800x384.png 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-partners-tiktok-pc-en-2023-09-08-14_10_29-1200x577.png 1200w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Source: TikTok Partners</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large source-image"><img loading="lazy" decoding="async" width="1024" height="502" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/sasstock-dublin-1024x502.jpg" alt="SASStock Dublin Homepage" class="wp-image-7940" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/sasstock-dublin-1024x502.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/sasstock-dublin-300x147.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/sasstock-dublin-768x376.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/sasstock-dublin-1536x752.jpg 1536w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/sasstock-dublin-2048x1003.jpg 2048w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/sasstock-dublin-200x98.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/sasstock-dublin-400x196.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/sasstock-dublin-600x294.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/sasstock-dublin-800x392.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/sasstock-dublin-1200x588.jpg 1200w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Source: SAAStock Dublin</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large source-image"><img loading="lazy" decoding="async" width="1024" height="492" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-goldensuisse-2023-09-08-14_20_51-1024x492.png" alt="Golden Suisse Homepage" class="wp-image-7908" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-goldensuisse-2023-09-08-14_20_51-1024x492.png 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-goldensuisse-2023-09-08-14_20_51-300x144.png 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-goldensuisse-2023-09-08-14_20_51-768x369.png 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-goldensuisse-2023-09-08-14_20_51-1536x738.png 1536w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-goldensuisse-2023-09-08-14_20_51-2048x984.png 2048w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-goldensuisse-2023-09-08-14_20_51-200x96.png 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-goldensuisse-2023-09-08-14_20_51-400x192.png 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-goldensuisse-2023-09-08-14_20_51-600x288.png 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-goldensuisse-2023-09-08-14_20_51-800x384.png 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-goldensuisse-2023-09-08-14_20_51-1200x577.png 1200w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Source: Golden Suisse</figcaption></figure>
</div>
</div>



<h2 class="wp-block-heading">Boldly Earthy</h2>



<p>Environmental colors don&#8217;t have to be soft and sweet. Instead of light and airy colors, try creating serious drama with dark earth tones! Accentuate your messages with bright pops of yellow, green and orange. This palette also works quite well with the <a href="https://www.wgsn.com/en/blogs/introducing-our-colour-year-2024-apricot-crush" target="_blank" rel="noreferrer noopener" data-type="link" data-id="https://www.wgsn.com/en/blogs/introducing-our-colour-year-2024-apricot-crush">Pantone 2024 Color of the year Apricot Crush</a>.</p>



<p>The right treatment of these colors can be extremely sophisticated and luxurious while still giving off an inspired-by-nature feel. Throw in more shades of bright green to get a more fresh spring-like feel. While adding more oranges and shades of brown will inspire an organic fall feel.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="472" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-02-1024x472.jpg" alt="Bold Earthtones: Dark Green #2E4412, Golden Yellow:: #F6C500, Apricot Crush: #F78C56, Beige: #F9EBCD, White: #ffffff, Dark Brown: #432616" class="wp-image-7929" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-02-1024x472.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-02-300x138.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-02-768x354.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-02-200x92.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-02-400x184.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-02-600x276.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-02-800x369.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-02-1200x553.jpg 1200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-02.jpg 1250w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large source-image"><img loading="lazy" decoding="async" width="1024" height="496" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/zooParcBeauval-1024x496.jpg" alt="Zoo Beauval, dark blue/green background organic image overlayed with white and gold text and colorful images." class="wp-image-7931" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/zooParcBeauval-1024x496.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/zooParcBeauval-300x145.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/zooParcBeauval-768x372.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/zooParcBeauval-1536x744.jpg 1536w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/zooParcBeauval-2048x992.jpg 2048w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/zooParcBeauval-200x97.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/zooParcBeauval-400x194.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/zooParcBeauval-600x291.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/zooParcBeauval-800x387.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/zooParcBeauval-1200x581.jpg 1200w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Source: Zoo Beauval</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large source-image"><img loading="lazy" decoding="async" width="1024" height="503" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/famingo-estate-1024x503.jpg" alt="Flamingo Estate. Dark green header bar followed by dark and moody product shots with white text on top." class="wp-image-7935" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/famingo-estate-1024x503.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/famingo-estate-300x147.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/famingo-estate-768x377.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/famingo-estate-1536x754.jpg 1536w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/famingo-estate-2048x1006.jpg 2048w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/famingo-estate-200x98.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/famingo-estate-400x196.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/famingo-estate-600x295.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/famingo-estate-800x393.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/famingo-estate-1200x589.jpg 1200w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Source: Flamingo Estate</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large source-image"><img loading="lazy" decoding="async" width="1024" height="501" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/humbly_healthy-1024x501.jpg" alt="Humbly Healthy Website with an image of fall vegetables in the background covered by a dark green semi-transparent layer with White text on top." class="wp-image-7936" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/humbly_healthy-1024x501.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/humbly_healthy-300x147.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/humbly_healthy-768x376.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/humbly_healthy-1536x752.jpg 1536w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/humbly_healthy-2048x1003.jpg 2048w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/humbly_healthy-200x98.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/humbly_healthy-400x196.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/humbly_healthy-600x294.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/humbly_healthy-800x392.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/humbly_healthy-1200x587.jpg 1200w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Source: Humbly Healthy</figcaption></figure>
</div>
</div>



<h2 class="wp-block-heading">80&#8217;s Craze</h2>



<p>Pull out your florescent windbreaker, tease your hair and throw on another layer of hair spray &#8211; the 80&#8217;s are back baby! This decade wasn&#8217;t called the &#8216;<em>Decade of Decadence</em>&#8216; for no reason! This style is all about over-the-top boldness, confidence, crazy luxury and even gaudiness! In retail stores and film, we&#8217;re seeing more fashion and characters from the iconic 80&#8217;s &#8216;pop&#8217; back up &#8211; which is a huge influence on web design trends. Don&#8217;t forget to add abstract patterns and irregular shapes to help pull the look together. But you don&#8217;t have to go full 80&#8217;s &#8220;mullet, shoulder pads &amp; boombox&#8221;, you can use these retro colors and design touches to bring a little excess into the 20th century.</p>



<p>The main thing to be cautious of with this particular trend is how it will affect colorblind or visually impaired users. Remember to ensure that your text is always paired with background colors that give it enough contrast to be highly readable.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="472" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-03-1024x472.jpg" alt="Bright 80's Sample colors: Black: #000000, White: #ffffff, Bright Pink #Ec016E, Purple: #ED72F8, Florescent Green: #74F131, Medium green: #19E963" class="wp-image-7939" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-03-1024x472.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-03-300x138.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-03-768x354.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-03-200x92.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-03-400x184.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-03-600x276.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-03-800x369.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-03-1200x553.jpg 1200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-03.jpg 1250w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large source-image"><img loading="lazy" decoding="async" width="1024" height="502" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/threesidedcube-1024x502.jpg" alt="3 Sided Cube Homepage uses Bright Pinks and greens in the background, white and black for text areas." class="wp-image-7938" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/threesidedcube-1024x502.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/threesidedcube-300x147.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/threesidedcube-768x377.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/threesidedcube-1536x753.jpg 1536w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/threesidedcube-2048x1005.jpg 2048w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/threesidedcube-200x98.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/threesidedcube-400x196.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/threesidedcube-600x294.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/threesidedcube-800x392.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/threesidedcube-1200x589.jpg 1200w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Source: 3 Sided Cube</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large source-image"><img loading="lazy" decoding="async" width="1024" height="500" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/CodeCraftsman-1024x500.jpg" alt="Code Craftsmen Homepage uses a black background with a retro pixelized green image on the right and pixelized white and green text on the left" class="wp-image-7941" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/CodeCraftsman-1024x500.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/CodeCraftsman-300x147.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/CodeCraftsman-768x375.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/CodeCraftsman-1536x751.jpg 1536w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/CodeCraftsman-2048x1001.jpg 2048w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/CodeCraftsman-200x98.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/CodeCraftsman-400x196.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/CodeCraftsman-600x293.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/CodeCraftsman-800x391.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/CodeCraftsman-1200x587.jpg 1200w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Source: Code Craftsmen</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large source-image"><img loading="lazy" decoding="async" width="1024" height="502" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/citymuseum-1024x502.jpg" alt="City Museum website uses bright colors matched with 80's style shapes to give it a retro feel." class="wp-image-7942" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/citymuseum-1024x502.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/citymuseum-300x147.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/citymuseum-768x376.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/citymuseum-1536x752.jpg 1536w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/citymuseum-2048x1003.jpg 2048w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/citymuseum-200x98.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/citymuseum-400x196.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/citymuseum-600x294.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/citymuseum-800x392.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/citymuseum-1200x588.jpg 1200w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Source: City Museum</figcaption></figure>
</div>
</div>



<h2 class="wp-block-heading">Pastels are not Passé</h2>



<p>While we&#8217;ve focused on mostly bold colors, pastels are still being used, but in more of a supporting role. As 2024 keeps accessibility in higher priority than ever before, pastels move to the background, while bold colors take precedence for the sake of readability.</p>



<p>Three pastel color combos that are trending are:</p>



<p>White &amp; Blue</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:30%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="392" height="478" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-04-1.jpg" alt="Blue colour palette: Black #000000, White: #ffffff, Blue 1: #331D66, Blue 2: #3c3FA3, Blue 3: #4E68F0, Blue 4: #8795FE" class="wp-image-7972" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-04-1.jpg 392w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-04-1-246x300.jpg 246w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-04-1-200x244.jpg 200w" sizes="auto, (max-width: 392px) 100vw, 392px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:50%">
<figure class="wp-block-image size-large source-image"><img loading="lazy" decoding="async" width="1024" height="503" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/hodlbot-1024x503.jpg" alt="Hodlbot homepage" class="wp-image-7947" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/hodlbot-1024x503.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/hodlbot-300x147.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/hodlbot-768x377.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/hodlbot-1536x754.jpg 1536w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/hodlbot-2048x1005.jpg 2048w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/hodlbot-200x98.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/hodlbot-400x196.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/hodlbot-600x295.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/hodlbot-800x393.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/hodlbot-1200x589.jpg 1200w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Source: Hodlbot</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>
</div>



<p>Beige &amp; Dark Grey/Back</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:30%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="392" height="280" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-05.jpg" alt="Beige Colour Palette: Black: #000000, White: #fffff, Beige: #E8D5C6" class="wp-image-7973" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-05.jpg 392w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-05-300x214.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-05-200x143.jpg 200w" sizes="auto, (max-width: 392px) 100vw, 392px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:50%">
<figure class="wp-block-image size-large source-image"><img loading="lazy" decoding="async" width="1024" height="503" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/ipl-1024x503.jpg" alt="IPL Packaging website homepage" class="wp-image-7948" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/ipl-1024x503.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/ipl-300x147.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/ipl-768x377.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/ipl-1536x754.jpg 1536w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/ipl-2048x1005.jpg 2048w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/ipl-200x98.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/ipl-400x196.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/ipl-600x295.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/ipl-800x393.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/ipl-1200x589.jpg 1200w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Source: IPL Packaging</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>
</div>



<p>Orange &amp; Blue</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:30%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="393" height="478" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-06.jpg" alt="Orange and Blue Color Palette: Dark Blue: #074978, Light Yellow/orange: #fff1d0, Medium Orange: #feb775 , Dark Orange: #ae371f, Brown: #6a5e44, Light Blue: #bbe0e8" class="wp-image-7974" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-06.jpg 393w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-06-247x300.jpg 247w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-06-200x243.jpg 200w" sizes="auto, (max-width: 393px) 100vw, 393px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:50%">
<figure class="wp-block-image size-large source-image"><img loading="lazy" decoding="async" width="1024" height="503" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/alto-1024x503.jpg" alt="Alto Website Homepage" class="wp-image-7950" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/alto-1024x503.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/alto-300x147.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/alto-768x377.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/alto-1536x754.jpg 1536w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/alto-2048x1005.jpg 2048w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/alto-200x98.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/alto-400x196.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/alto-600x295.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/alto-800x393.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/alto-1200x589.jpg 1200w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Source: Alto</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>
</div>



<h2 class="wp-block-heading">And Finally Complex Gradients</h2>



<p>Gradients are back but in a slightly different way. These are gradients that are adding depth and movement to an otherwise boring static page. In the case of <a href="https://marble.studio/" target="_blank" rel="noreferrer noopener">Marble</a> the background gradient has texture and moves as though it is a real item blowing in the wind. For those who have problems with motion or attention issues, the speed of the animation or the motion itself could be an issue, but this is a very creative and unique gradient treatment nonetheless.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="76" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-08-1-1024x76.jpg" alt="Complex Blue/Purple Gradient colors: Blue 1: #00156b, Blue 2: #0342c6, Blue 3: #9fc2de, Purple 1: #9b90d4, Purple 2: #643a99, Purple 3: #1c0c35 " class="wp-image-7981" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-08-1-1024x76.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-08-1-300x22.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-08-1-768x57.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-08-1-200x15.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-08-1-400x30.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-08-1-600x45.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-08-1-800x59.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-08-1-1200x89.jpg 1200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-08-1.jpg 1251w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:80%">
<figure class="wp-block-video"><video height="576" style="aspect-ratio: 720 / 576;" width="720" controls loop muted poster="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/marble.jpg" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Marble-576.m4v"><track src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/11/marble.vtt" label="marble homepage" srclang="en" kind="descriptions"/></video></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>
</div>



<p>In the case of <a href="https://stripe.com/en-gb-ca" data-type="link" data-id="https://stripe.com/en-gb-ca">Stripe</a>, they are also using an animated color gradient treatment that runs through quite a few smooth and bold color changes. The speed is much slower and it&#8217;s less likely to cause a distraction, but it is best to follow WCAG accessibility rules and have these animations stop for those with the reduced motion setting.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="75" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-09-1-1024x75.jpg" alt="Complex Gradient colors: Magenta: #dc4c85, Purple: #b04ae2, Cyan: #91cefe,  Yellow: #fdbb58, Red: #fa2d46" class="wp-image-7982" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-09-1-1024x75.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-09-1-300x22.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-09-1-768x56.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-09-1-200x15.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-09-1-400x29.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-09-1-600x44.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-09-1-800x59.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-09-1-1200x88.jpg 1200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-09-1.jpg 1251w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:80%">
<figure class="wp-block-video"><video height="576" style="aspect-ratio: 720 / 576;" width="720" controls loop muted src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Stripe-576.m4v"><track src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/11/stripe.vtt" label="Stripe description" srclang="en" kind="descriptions"/></video></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>
</div>



<p><a href="https://cosmos.network/" target="_blank" rel="noreferrer noopener" data-type="link" data-id="https://cosmos.network/">Cosmos</a> has created an amazing example of how you can use complex gradients to create depth without the distraction of motion. The stunning gradient design actually creates an illusion of movement without any actual motion.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="76" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-10-1-1024x76.jpg" alt="Dark Complex Gradient Colors: Black: #000000,  Dark Blue: #526590,  Dark Purple: #a5f8ff,  Cyan: #af4298, Dark Pink: #622571, Orange: #e95e42" class="wp-image-7983" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-10-1-1024x76.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-10-1-300x22.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-10-1-768x57.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-10-1-200x15.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-10-1-400x30.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-10-1-600x45.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-10-1-800x59.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-10-1-1200x89.jpg 1200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Website-Trends-2023-Color-10-1.jpg 1251w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:80%">
<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="481" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/cosmos-1024x481.jpg" alt="Cosmos website is a black background with gradients behind planet like circles." class="wp-image-7958" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/cosmos-1024x481.jpg 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/cosmos-300x141.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/cosmos-768x361.jpg 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/cosmos-1536x721.jpg 1536w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/cosmos-2048x961.jpg 2048w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/cosmos-200x94.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/cosmos-400x188.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/cosmos-600x282.jpg 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/cosmos-800x376.jpg 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/cosmos-1200x563.jpg 1200w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>
</div>



<h2 class="wp-block-heading">Conclusion</h2>



<p>As for all color trends, the developer and designer need to work closely together to ensure that no matter what treatment is used, <a href="https://kb.mybrotherdarryl.com/kb/ux/" data-type="link" data-id="https://kb.mybrotherdarryl.com/kb/ux/" target="_blank" rel="noreferrer noopener">UX</a> and <a href="https://kb.mybrotherdarryl.com/kb/accessibility-testing/" data-type="link" data-id="https://kb.mybrotherdarryl.com/kb/accessibility-testing/" target="_blank" rel="noreferrer noopener">accessibility</a> is retained. There is no point in creating an amazing website if your users have issues using it! If you’re struggling with any areas of development &#8211; from User Experience, to Accessibility, to planning or testing &#8211; <a href="mailto:hello@mybrotheredarryl.com" data-type="mailto" data-id="mailto:hello@mybrotheredarryl.com">contact My Brother Darryl</a> for more information on how we can help support you.</p>



<p class="source has-small-font-size">Hero Photo by <a href="https://unsplash.com/@octopus_photo?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText" target="_blank" rel="noreferrer noopener">Pete Godfrey</a> on <a href="https://unsplash.com/photos/Fm05hcMP0aE?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText" target="_blank" rel="noreferrer noopener">Unsplash</a></p>
]]></content:encoded>
					
		
		<enclosure url="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Marble-576.m4v" length="417935" type="video/mp4" />
<enclosure url="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Stripe-576.m4v" length="273885" type="video/mp4" />

			</item>
		<item>
		<title>Website User Experience Trends for 2024</title>
		<link>https://www.mybrotherdarryl.com/website-user-experience-trends-for-2024/</link>
		
		<dc:creator><![CDATA[Candace Morgan]]></dc:creator>
		<pubDate>Tue, 12 Sep 2023 12:51:17 +0000</pubDate>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Design & Development]]></category>
		<guid isPermaLink="false">https://mybrotherdarry.wpenginepowered.com/?p=7870</guid>

					<description><![CDATA[Have a look at the trends for 2024 that affect user experience and how each of them rank for cost and accessibility.]]></description>
										<content:encoded><![CDATA[
<p>Year after year, <a href="https://kb.mybrotherdarryl.com/kb/ux/" data-type="link" data-id="https://kb.mybrotherdarryl.com/kb/ux/" target="_blank" rel="noreferrer noopener">UX</a> is the TOP of every website trend list &#8211; as it should be! Creating sites that are intuitive and easy to navigate is good for all users &#8211; regardless of technical expertise, which is good for your <a href="https://kb.mybrotherdarryl.com/kb/roi/" target="_blank" rel="noreferrer noopener">ROI</a>! User experience focuses on accessibility, ease of use as well as creating delightful, streamlined and engaging experiences that encourage users to come back. We’re going to look at some of the current &amp; upcoming trends for 2024 that affect user experience and how each of them rank for cost and accessibility.</p>



<h2 class="wp-block-heading">PERSONALIZE, PERSONALIZE, PERSONALIZE!</h2>



<p>The most important user experience trend is personalization. This trend is increasingly difficult, but will often give you the largest ROI. Customers are increasingly finding themselves with limited personal time. They want to find their products quickly and efficiently then move on with their day. This means presenting them with dynamic content generated based on their preferences.<br><br>Ensuring that customers retain their privacy is extremely important. This means that you may only be able to give a personalized experience to those who are logged-in and have given access to their preferences. It also means that you will need to <a href="https://www.mybrotherdarryl.com/services" data-type="link" data-id="https://www.mybrotherdarryl.com/#hosting">ensure high security hosting</a>.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:40%">
<p>Average Development Cost:</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:220px">
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="625" height="126" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Med-High.jpg" alt="Scale showing Medium to High pricing" class="wp-image-7873" style="width:200px;height:undefinedpx" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Med-High.jpg 625w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Med-High-300x60.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Med-High-200x40.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Med-High-400x81.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Med-High-600x121.jpg 600w" sizes="auto, (max-width: 625px) 100vw, 625px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:90%">
<p>The development cost will vary depending on the complexity of your project, but with proper planning during the initial development of your site, you can keep the costs to a minimum.</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:40%">
<p>Accessibility Impact:</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:220px">
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="626" height="126" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High.jpg" alt="Scale showing high Impact" class="wp-image-7876" style="width:200px;height:undefinedpx" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High.jpg 626w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-300x60.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-200x40.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-400x81.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-600x121.jpg 600w" sizes="auto, (max-width: 626px) 100vw, 626px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:90%">
<p>How does the website personalization concept impact disabled users? Any time you&#8217;re serving up relatable and personalized results to users, it also impacts accessibility in a positive way. You&#8217;re making the process better for all users!</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<h2 class="wp-block-heading">ARTIFICIAL INTELLIGENCE (AI)</h2>



<p>Chatbot or virtual assistants are the most common place to find AI integrated into websites right now. These technologies can offer substantial labor savings since they only redirect customers to a human if the question cannot be answered by AI. But &#8211;&nbsp;the startup costs can be high and these technologies are not seamless from the start. The upfront cost to integrate AI can be steep, and the technology needs time to learn &#8211; which means you’ll need to partner the AI with human labor for a while.<br><br>Pricing varies wildly depending on complexity, technologies, features, customization and integrations needed. While a simple, low-volume, out of the box AI solution might be free, a high volume company might choose to create their own in-house AI solution costing $500,000+ USD.<br></p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:40%">
<p>Average Development Cost:</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:220px">
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="625" height="125" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale.jpg" alt="Scale showing large range of low to high pricing" class="wp-image-7883" style="width:200px;height:undefinedpx" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale.jpg 625w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-300x60.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-200x40.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-400x80.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-600x120.jpg 600w" sizes="auto, (max-width: 625px) 100vw, 625px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:40%">
<p>Accessibility Impact:</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:220px">
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="626" height="126" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High.jpg" alt="Scale showing high Impact" class="wp-image-7876" style="width:200px;height:undefinedpx" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High.jpg 626w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-300x60.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-200x40.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-400x81.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-600x121.jpg 600w" sizes="auto, (max-width: 626px) 100vw, 626px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:90%">
<p>AI chatbots and assistants can be very helpful for people with disabilities. It allows them to ask questions based on their unique needs. It&#8217;s important that the AI be developed to use an eighth grade reading level to allow for the highest level of understanding among your audience.</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<h2 class="wp-block-heading">VOICE SEARCH</h2>



<p>Every year voice is on the trends list &#8211; but it’s not something that is still widely implemented on the average website.&nbsp; Users can easily add a Google Search with the voice search option to their site for free &#8211; (example: the WordPress website search widget comes out of the box with a voice button) &#8211; but will it give users good search results?<br><br>Unlike typing into a search block, a user is more likely to use full speech instead of a short text snippet. For example a user might type “Color Theory”, while a speech search user might search for “I want to know more about color theory”. While these searches might look the same, the system can recognize them as two distinctly different searches. This is why it&#8217;s highly recommended that if you&#8217;re going to target a voice search audience, you employ specific changes to optimize and help drive good quality search results. Optimization includes ensuring that you’ve added structured data markup to help search engines better understand your content. It also means ensuring that your content is phrased to answer specific questions &#8211; for example “If you want to know more about color theory please read….”. Voice search is very conversational, so ensuring that your content is more closely related with natural speech is extremely important.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:40%">
<p>Average Development Cost:</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:220px">
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="625" height="125" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale.jpg" alt="Scale showing wide range of Low to high pricing" class="wp-image-7883" style="width:200px;height:undefinedpx" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale.jpg 625w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-300x60.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-200x40.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-400x80.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-600x120.jpg 600w" sizes="auto, (max-width: 625px) 100vw, 625px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:90%">
<p>Pricing for using voice search can be anything from $0 &#8211; $10,000+ USD, while voice search page optimization can be anywhere from $300 &#8211; $600 USD per page. </p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:40%">
<p>Accessibility Impact:</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:220px">
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="626" height="126" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High.jpg" alt="Scale showing high impact" class="wp-image-7876" style="width:200px;height:undefinedpx" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High.jpg 626w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-300x60.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-200x40.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-400x81.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-600x121.jpg 600w" sizes="auto, (max-width: 626px) 100vw, 626px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:90%">
<p>Any time you&#8217;re integrating technology that allows a user to use voice and natural speech you&#8217;re going to also positively affect your site accessibility. </p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<h2 class="wp-block-heading">AUGMENTED REALITY (AR)</h2>



<p>Touted as “The next big thing” for the web, the application of this technology has already made waves in sectors such as retail, tourism, marketing, etc. Web-based AR can use a device’s camera, digital content and/or sensors to create a 3d interactive experience. A potential customer can virtually add different furniture to their room to see how it looks. They can virtually try on different styles of glasses, clothing or change the colors and options of a vehicle to see it in real-time. <br><br>For the marketing industry &#8211; creating this real-time visual application creates an emotional connection between the product and the customer. The customer no longer needs to guess about how the product will look, they can actually SEE the product in use in their unique environment. </p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:40%">
<p>Average Development Cost:</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:220px">
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="625" height="126" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Med-High.jpg" alt="Scale showing Medium to High pricing" class="wp-image-7873" style="width:200px;height:undefinedpx" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Med-High.jpg 625w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Med-High-300x60.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Med-High-200x40.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Med-High-400x81.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Med-High-600x121.jpg 600w" sizes="auto, (max-width: 625px) 100vw, 625px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:90%">
<p>Pricing for AR is normally high. While there are out of the box applications that can be used, many companies need custom application creation. On average a company can expect anywhere from $10,000 &#8211; $300,000 USD</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:40%">
<p>Accessibility Impact:</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:220px">
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="626" height="126" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-Scale-Low.jpg" alt="Accessibility scale - Low Accessibility" class="wp-image-7892" style="width:200px;height:undefinedpx" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-Scale-Low.jpg 626w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-Scale-Low-300x60.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-Scale-Low-200x40.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-Scale-Low-400x81.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-Scale-Low-600x121.jpg 600w" sizes="auto, (max-width: 626px) 100vw, 626px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:90%">
<p>Unfortunately, while there are some disabilities that benefit from AR, the problem is that not everyone can access or enjoy augmented reality equally.</p>



<p>Some Examples:</p>



<ul class="wp-block-list">
<li>An online glasses retailer shows users wearing different glasses by using live video of the users&#8217; face. The live view allows the user to turn their head and see all angles of the glasses on their face. This application will only work well for someone who does not NEED their current glasses to see the image on the screen. In this case the retail store will need to allow users to upload a static image so that they can see options with their glasses on.</li>
</ul>



<ul class="wp-block-list">
<li>A retail company is offering discounts through an AR scavenger hunt. The AR uses the camera to capture live video of the store and throughout the store there are coins to collect that count towards a discount. Someone who is legally blind will need to have an alternate experience in order to obtain the discounts.</li>
</ul>



<p>When developing these immersive experiences you should conduct research and testing with diverse users, including people with disabilities. This will help you understand the preferences, challenges and expectations of the widest possible range of users. You should also consider the comfort and safety of users when designing the AR content and interactions. This includes things such as motion sickness, eye strain, fatigue or discomfort. Ensure that you always provide warnings and alternatives to avoid potential hazards as well as ensuring the privacy of users.</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<h2 class="wp-block-heading">MICRO-INTERACTIONS &amp; MICRO-ANIMATIONS </h2>



<p>Creating tactile experiences is still very important to help bring the website alive and give the user helpful feedback. Overall this enhances user engagement. Ensuring that this trend has enough contrast to ensure that users see the change is important.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:80%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="880" height="440" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Confetti-Pop-Out-On-Button-Click.gif" alt="Animated Submit button - Microinteraction" class="wp-image-7895"/></figure>



<p class="has-small-font-size">Button Design by <a href="https://codepen.io/coopergoeke/pens/showcase" data-type="link" data-id="https://codepen.io/coopergoeke/pens/showcase">Cooper Coeke</a></p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:40%">
<p>Average Development Cost:</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:220px">
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="625" height="126" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Low.jpg" alt="Pricing Scale - Low Cost" class="wp-image-7894" style="width:200px;height:undefinedpx" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Low.jpg 625w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Low-300x60.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Low-200x40.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Low-400x81.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Low-600x121.jpg 600w" sizes="auto, (max-width: 625px) 100vw, 625px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:40%">
<p>Accessibility Impact:</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:220px">
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="626" height="126" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High.jpg" alt="Accessibility Scale - Highly Accessible" class="wp-image-7876" style="width:200px;height:undefinedpx" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High.jpg 626w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-300x60.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-200x40.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-400x81.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-600x121.jpg 600w" sizes="auto, (max-width: 626px) 100vw, 626px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:90%">
<p>While these can be accessible in the way that it makes it simple for users to see the different button states. BUT the caveat here is that for these to be 100% accessible you must ensure:</p>



<ul class="wp-block-list">
<li>Adequate color contrast in all states</li>



<li>For motion sensitive users, the button must abide by the users choice to have reduced motion. This means you may need a secondary button that has little to no motion.</li>



<li>That all states of the button are available to accessible devices.</li>
</ul>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<h2 class="wp-block-heading">USEFUL 404 PAGES</h2>



<p>Your user hits a 404 page &#8211; &#8220;Page Not Found!&#8221; &#8211; don’t leave them hanging!&nbsp; </p>



<p>Savvy website authors have transitioned a “page not found” from a frustrating experience into an opportunity! Oops the page isn’t here, what about other products? Can we help you find something? Instead of forcing these people back to where they came from, give them the opportunity to easily find something else that might be of value to them. </p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:80%">
<figure class="wp-block-image size-large is-resized"><img loading="lazy" decoding="async" width="1024" height="877" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-nintendo-en-ca-whereami-2023-09-08-12_48_31-1024x877.png" alt="Nintendo.ca 404 page that gives users options to keep exploring instead of forcing them to go back." class="wp-image-7896" style="width:658px;height:undefinedpx" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-nintendo-en-ca-whereami-2023-09-08-12_48_31-1024x877.png 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-nintendo-en-ca-whereami-2023-09-08-12_48_31-300x257.png 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-nintendo-en-ca-whereami-2023-09-08-12_48_31-768x658.png 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-nintendo-en-ca-whereami-2023-09-08-12_48_31-200x171.png 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-nintendo-en-ca-whereami-2023-09-08-12_48_31-400x343.png 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-nintendo-en-ca-whereami-2023-09-08-12_48_31-600x514.png 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-nintendo-en-ca-whereami-2023-09-08-12_48_31-800x685.png 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-nintendo-en-ca-whereami-2023-09-08-12_48_31-1200x1028.png 1200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/screencapture-nintendo-en-ca-whereami-2023-09-08-12_48_31.png 1453w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="has-small-font-size"><em>Source: nintendo.ca 404 page</em></p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>
</div>



<p>You can quite easily add a search area, show alternate products, blog posts and more to redirect the user to alternate content. This is a much better user experience that will increase your engagement rate!&nbsp;</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:40%">
<p>Average Development Cost:</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:220px">
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="625" height="126" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Low.jpg" alt="Pricing Scale - Low Cost" class="wp-image-7894" style="width:200px;height:undefinedpx" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Low.jpg 625w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Low-300x60.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Low-200x40.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Low-400x81.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Low-600x121.jpg 600w" sizes="auto, (max-width: 625px) 100vw, 625px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:40%">
<p>Accessibility Impact:</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:220px">
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="626" height="126" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High.jpg" alt="Accessibility Scale - Highly Accessible" class="wp-image-7876" style="width:200px;height:undefinedpx" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High.jpg 626w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-300x60.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-200x40.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-400x81.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-600x121.jpg 600w" sizes="auto, (max-width: 626px) 100vw, 626px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<h2 class="wp-block-heading">SOCIAL PROOF</h2>



<p>One of the biggest factors in a positive overall website user experience is trust. To turn a visitor into a customer, you need to find ways to quickly prove that your business can be trusted. Over the last couple of years, we&#8217;ve seen consumer trust levels fall. For 2024, online businesses need to work hard to show their worthiness. Provide statistics, consumer testimonials and other forms of reliable information to help build a relationship with your users. </p>



<p>Things that reduce consumer trust online:</p>



<ul class="wp-block-list">
<li>Unaddressed complaints and/or a large number of social complaints</li>



<li>Website spelling and grammar mistakes</li>



<li>Website bugs and glitches</li>



<li>Low quality website design</li>
</ul>



<p>Giving customers &#8220;proof&#8221; might be supplying them with coupons or samples for a product. It could be  video product reviews, testimonials, product ratings and/or other types of social commenting. This type of ‘social proof’ can be implemented in many different ways. It could take the form of product ratings and comments or it could be client testimonials.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:40%">
<p>Average Development Cost:</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:220px">
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="625" height="126" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Low.jpg" alt="Pricing Scale - Low Cost" class="wp-image-7894" style="width:200px;height:undefinedpx" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Low.jpg 625w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Low-300x60.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Low-200x40.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Low-400x81.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Price-Scale-Low-600x121.jpg 600w" sizes="auto, (max-width: 625px) 100vw, 625px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:40%">
<p>Accessibility Impact:</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:220px">
<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="626" height="126" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High.jpg" alt="Accessibility Scale - Highly Accessible" class="wp-image-7876" style="width:200px;height:undefinedpx" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High.jpg 626w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-300x60.jpg 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-200x40.jpg 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-400x81.jpg 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/09/Scales_Accessibility-High-600x121.jpg 600w" sizes="auto, (max-width: 626px) 100vw, 626px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:5%"></div>
</div>



<h2 class="wp-block-heading">NOW LET&#8217;S GET DEVELOPING!</h2>



<p>If these concepts are intriguing, you&#8217;ve come to the right place! Let us help you get your website on the right track to succeed in 2024! <strong><a href="#footer" data-type="mailto" data-id="mailto:hello@mybrotherdarryl.com">Conta</a><a href="mailto:hello@mybrotheredarryl.com" data-type="mailto" data-id="mailto:hello@mybrotheredarryl.com">ct My Brother Darryl today.</a></strong></p>



<p class="source has-small-font-size">Sources:<br>Hero Photo by <a href="https://unsplash.com/@charlesdeluvio?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">charlesdeluvio</a> on <a href="https://unsplash.com/photos/Lks7vei-eAg?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Unsplash</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>TREND ALERT: Direct Personalized Deals</title>
		<link>https://www.mybrotherdarryl.com/trend-alert-direct-personalized-deals/</link>
		
		<dc:creator><![CDATA[Candace Morgan]]></dc:creator>
		<pubDate>Mon, 28 Aug 2023 17:47:22 +0000</pubDate>
				<category><![CDATA[Design & Development]]></category>
		<category><![CDATA[User Experience]]></category>
		<guid isPermaLink="false">https://mybrotherdarry.wpenginepowered.com/?p=7852</guid>

					<description><![CDATA[As inflation increases, so does the demand for deals, sales and coupons. Emails are one of the avenues that consumers welcome receiving deals.]]></description>
										<content:encoded><![CDATA[
<p>As inflation increases, so does the demand for deals, sales and coupons. One of the avenues that consumers are willing to receive those deals is through email &#8211; and if your email provides them value, they will absolutely welcome you into their inbox. From the perspective of retailers, it’s an inexpensive but extremely effective direct touchpoint. Some of the most successful email campaigns have employed a savvy tailoring of email content to the interests and behaviors of specific consumers.</p>



<blockquote class="wp-block-quote has-text-align-center is-layout-flow wp-block-quote-is-layout-flow">
<p class="has-text-align-center"><em>On average, email drives an ROI of $45 (USD)</em><br><em> for every dollar spent, higher than any other channel.</em></p>
<cite><em>(CPG, E-Commerce &amp; Retail Industries) </em><br>&#8211; litmus.com</cite></blockquote>



<h2 class="wp-block-heading"><strong>Email Personalization improves open rate by 42%</strong> <em>(source: WebFx) </em></h2>



<p>Adding the users name is great but segmenting your audience to tailor promotions or recommend specific products for them is even better! For example: for customers who purchased a specific software program, send them an email with promos featuring products that complement that software.</p>



<h2 class="wp-block-heading"><strong>Subject line is a make or break</strong></h2>



<p>After reading your subject line, a consumer will decide whether your email is worth opening or if it’s spam. Subject lines that are exciting, allude to a deal or invoke FOMO (Fear of missing out) can be extremely effective.</p>



<h2 class="wp-block-heading"><strong>Mobile first in every way</strong></h2>



<p>81% of emails are opened on mobile devices. This means your email design MUST cater to mobile first design. Email text must be high contrast for all environments, bold, easy to read text, touch-friendly button sizing and clean, uncluttered design.  Don’t forget about graphic file size and ensuring that your graphics are clear on small screens.</p>



<h2 class="wp-block-heading"><strong>Absolutely no bait and switch</strong></h2>



<p>It might seem obvious; but if you’re hoping to get more eyes on product “A” by promoting a more popular product “B” but ensuring the email link goes to product “A” &#8211; you will annoy and potentially lose your audience. This is spammy,  disingenuous and it will erode consumer trust.</p>



<h2 class="wp-block-heading"><strong>Test, Test, Test</strong></h2>



<p>WYSIWIG (what you see is what your get) is not meant for email. There are too many programs, platforms and devices that will change how your email is viewed.  You should never send an email without proper testing.</p>



<ul class="wp-block-list">
<li><strong>Device testing:</strong> Building your email within a templated email marketing platform does not mean your email will look perfect on every email program and device.&nbsp;</li>



<li><strong>Dark Mode Testing:</strong> Many find it easier on their eyes to use dark mode. Darkmode can make areas of your design unreadable when it swaps out background and foreground colors. Forgetting to test darkmode could lead to some consumers receiving a unreadable email.&nbsp;</li>



<li><strong>Accessibility &amp; Text Only:</strong> Ensure all graphics have alternative text added, just incase graphics do not load, or the end user uses plain text email or an assistive device.&nbsp;</li>



<li><strong>Spam Testing:</strong> Specific words and phrases can trigger spam filters. Make sure you run that spam check to ensure you end up in the inbox.</li>
</ul>



<h2 class="wp-block-heading"><strong>Tracking Email ROI in a Privacy Conscious World</strong></h2>



<p>Data privacy measures are stripping away the reliability of the open rate metric. To be able to track ROI we need to move beyond open rate, and focus on measuring direct engagement. This means using the links in your email to track how many visitors engaged with the email content. Adding UTM codes to your email links is an extremely important step to be able to track email campaign traffic to your website. Once you have these visitors identified you can use your website analytics to determine your ROI.</p>



<h2 class="wp-block-heading"><strong>Caution: </strong></h2>



<p>The unsubscribe button is only a click away. </p>



<ul class="wp-block-list">
<li>If your emails do not provide value, if you do not cater to their needs or wants and if you do not actively make them feel valued as a consumer, they will unsubscribe from your mailing list.</li>



<li>Evaluate how often you send and what time you send at. Too often is annoying, too infrequent and you become forgotten. <br><em><br>“An insurance company increased revenue by 45% by sending MORE email. An ecommerce store’s revenue dropped 30% after adding a weekly email newsletter. These are both examples of the powerful effects changing email cadence can have on your bottom line. “</em>&nbsp;<br>&#8211; <a href="https://www.theseventhsense.com/blog/email-marketing-frequency-best-practices" target="_blank" rel="noreferrer noopener">theseventhsense.com</a><br><br>Your industry, products and customer behaviors will all contribute to finding the best email frequency and send time. Research and testing will be needed to find your specific sweet spot!</li>
</ul>



<p>Do you want to find out how email marketing can impact your business? <br><a href="mailto:hello@mybrotherdarryl.com" target="_blank" rel="noreferrer noopener">Contact us today</a> to find out how My Brother Darryl can help you create and implement email marketing campaigns.</p>



<p class="source has-small-font-size">Hero Photo by <a href="https://unsplash.com/@joshuachun?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Joshua Chun</a> on <a href="https://unsplash.com/photos/y_gFnFzr0HY?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Unsplash</a><br><br>Sources: <br><a href="https://martech.org/its-time-to-say-goodbye-to-your-email-open-rate/">https://martech.org/its-time-to-say-goodbye-to-your-email-open-rate/</a><br><a href="https://www.linkedin.com/pulse/7-hot-email-marketing-trends-2023-alyson-shane">https://www.linkedin.com/pulse/7-hot-email-marketing-trends-2023-alyson-shane<br></a><a href="https://www.theseventhsense.com/blog/email-marketing-frequency-best-practices" target="_blank" rel="noreferrer noopener">https://www.theseventhsense.com/blog/email-marketing-frequency-best-practices</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Web Accessibility Design, Development, Auditing, and Remediation</title>
		<link>https://www.mybrotherdarryl.com/accessibility-design-development/</link>
		
		<dc:creator><![CDATA[Candace Morgan]]></dc:creator>
		<pubDate>Wed, 17 May 2023 12:23:00 +0000</pubDate>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Design & Development]]></category>
		<guid isPermaLink="false">https://mybrotherdarry.wpenginepowered.com/?p=7806</guid>

					<description><![CDATA[A web accessibility professional doesn’t have to be certified – but a certified professional is the best way to know that the candidate has proven capabilities.]]></description>
										<content:encoded><![CDATA[
<p>Did you know that there is currently a shortage of web accessibility professionals? According to the <a rel="noreferrer noopener" href="https://www.wsj.com/articles/more-companies-are-looking-to-hire-accessibility-specialists-11630501200" target="_blank">Wall Street Journal</a>, more companies are looking to hire accessibility specialists, pushed to the forefront by the effects of the COVID-19 pandemic, aging population, lawsuits, as well as diversity and inclusion efforts. And they’re struggling to find suitable candidates with strong accessibility skill sets.</p>



<blockquote class="wp-block-quote has-text-align-center is-layout-flow wp-block-quote-is-layout-flow">
<p class="has-text-align-center"><em>“The number of job listings with “accessibility” in the title <br>grew 78% in the year ended in July from the <br>previous 12 months, LinkedIn said”</em></p>
<cite>&#8211; Wall Street Journal (2021)</cite></blockquote>



<p>While a good Web Accessibility Specialist doesn’t HAVE to be certified to be competent – hiring a certified professional is the best way to know that the candidate has proven their capabilities through a comprehensive certification examination. Certification also ensures that the person has, and maintains a high level of knowledge and skill with current technology, guidelines, and laws.</p>



<h2 class="wp-block-heading">We ARE IAAP WAS Certified</h2>



<p><strong>What is IAAP?</strong></p>



<p><a href="https://www.accessibilityassociation.org/" target="_blank" rel="noreferrer noopener"><strong>IAAP</strong></a><strong> stands for the International Association of Accessibility Professionals.</strong> IAAP is a Division of the Global Initiative for Inclusive Information Communication Technology Services (ICTs) &#8211; otherwise known as <a href="https://g3ict.org/" target="_blank" rel="noreferrer noopener">G3ict</a>. </p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><em>“G3ict is an advocacy initiative launched in December 2006 by the United Nations Global Alliance for ICT and Development, in cooperation with the Secretariat for the Convention on the Rights of Persons with Disabilities under UN DESA. G3ict relies on an international network of ICT accessibility experts to develop and promote good practices, technical resources and benchmarks for ICT accessibility advocates around the world. G3ict is incorporated as a nonprofit organization in the State of Georgia, USA, and headquartered in Atlanta.”</em>  &#8211; IAAP</p>
</blockquote>



<h2 class="wp-block-heading">What is a Web Accessibility Specialist (WAS) Certification?</h2>



<p>Many countries have created or are in the process of developing guidelines and laws supporting a base accessibility level for websites. Because of this, the demand for web developers and designers with <a rel="noreferrer noopener" href="https://www.w3.org/TR/WCAG21/" target="_blank">WCAG</a> accessibility knowledge has increased dramatically.&nbsp;</p>



<p>With this demand, comes a need for a verified level of expertise. The WAS Certification gives web professionals the credibility that they can perform the evaluation and remediation of websites and digital content. For front-end developers and designers this certification shows their proficiency to create, code and maintain accessible websites.&nbsp;</p>



<p><a rel="noreferrer noopener" href="https://www.accessibilityassociation.org/s/wascertification" target="_blank"><strong>WAS</strong></a> certification also includes not just being aware &#8211; but how to use assistive technologies, such as screen readers and common iOS and Android assistive apps.</p>



<p>Before applying for a certification exam, the professional must provide proof of a minimum of 3 years of experience in Web Accessibility and must have first-person experience in the following areas:</p>



<ul class="wp-block-list">
<li>HTML</li>



<li>JavaScript&nbsp;</li>



<li>Accessibility/usability testing in iOS environments</li>



<li>Accessibility/usability testing in Android environments</li>



<li>Accessibility/usability testing in Windows environments</li>



<li>Accessibility/usability testing with multiple forms of assistive technology</li>



<li>browser-specific assistive technologies</li>



<li><a href="https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA" target="_blank" rel="noreferrer noopener">ARIA (Accessible Rich Internet Applications)&nbsp;</a></li>



<li><a href="https://www.w3.org/TR/ATAG20/">ATAG (Authoring Tool Accessibility Guidelines)</a></li>



<li><a href="https://www.w3.org/TR/WCAG21/" target="_blank" rel="noreferrer noopener">WCAG (Web Content Accessibility Guidelines) 2.1</a> Standards</li>



<li>Understanding and implementation of accessibility best practices.</li>



<li>Web accessibility auditing and remediation.</li>



<li>Understanding the impacts of web accessibility on disabled people.</li>
</ul>



<p>The WAS certification exam is a 2-hour exam, and once certified, it is valid for 3 years, during which the professional must earn Continuing Accessibility Education Credits (CAECs).</p>



<h2 class="wp-block-heading">What are the Real World Implications of Hiring the Wrong Person?</h2>



<p><strong>Shortcuts are Leading to Lawsuits</strong></p>



<p>Inaccessible websites are affecting companies in a real tangible way. Lawsuits due to inaccessibility in the US have continued to increase. According to <a href="https://usablenet.com/" target="_blank" rel="noreferrer noopener">Usablenet</a>, “ADA-based cases, where the subject of the claim was either a website, mobile application or video content, reached a rate of over 10 per day in 2021 with over 4000 in total.”</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:80%">
<figure class="wp-block-image size-large source-image"><img loading="lazy" decoding="async" width="1024" height="490" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/accessibility-lawsuit-chart-01-1024x490.png" alt="Chart: Number of accessibility lawsuit cases between 2018-2020 (Text alternative below)" class="wp-image-7808" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/accessibility-lawsuit-chart-01-1024x490.png 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/accessibility-lawsuit-chart-01-300x144.png 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/accessibility-lawsuit-chart-01-768x368.png 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/accessibility-lawsuit-chart-01-200x96.png 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/accessibility-lawsuit-chart-01-400x191.png 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/accessibility-lawsuit-chart-01-600x287.png 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/accessibility-lawsuit-chart-01-800x383.png 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/accessibility-lawsuit-chart-01.png 1166w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Source: <a href="https://blog.usablenet.com/five-years-of-ada-web-and-app-lawsuits-key-observations-and-trends" target="_blank" rel="noreferrer noopener">https://blog.usablenet.com/five-years-of-ada-web-and-app-lawsuits-key-observations-and-trends</a></figcaption></figure>



<div class="wp-block-pb-accordion-item c-accordion__item js-accordion-item no-js" data-initially-open="false" data-click-to-close="true" data-auto-close="true" data-scroll="false" data-scroll-offset="0"><button id="at-78060" class="c-accordion__title js-accordion-controller c-accordion__title--button" role="button"><em>Chart full-text alternative</em></button><div id="ac-78060" class="c-accordion__content">
<p>Number of accessibility lawsuit cases in the USA between 2018 and 2022</p>



<p>2018: 2314 cases<br>2019: 2890 cases<br>2020: 3503 cases<br>2021: 4011 cases<br>2022: 4061 cases</p>
</div></div>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>
</div>



<p><strong>Quick-Fix Plugins are Leading to Lawsuits</strong></p>



<p>The simplicity and growth of plug-in web accessibility solutions are also causing companies some unexpected headaches. Plug-in, widget or accessibility add-on solutions are marketed as a way to quickly become compliant and prevent lawsuits. These solutions do have their place but it&#8217;s important to know their pros and cons. Unfortunately, many companies are using them as a fix-all solution and in all cases I&#8217;ve seen, they&#8217;re not able to fix malformed code or major issues leading to a barrier for assistive device users.&nbsp; Lawsuits have been filed and settled against companies using accessibility plugins for this exact reason.&nbsp; One of the largest examples is the suit against ADP. When ADP started receiving complaints about the inaccessibility of their site, they installed an accessibility overlay &#8211; which created a host of accessibility issues. What’s most important about this case is that it wasn&#8217;t the accessibility plugin developer that was sued &#8211; it was the company that deployed it.&nbsp; In July 2022 alone, UsableNet reports there were 79 defendants sued while using a 3rd party accessibility-related control (widget) (source: https://info.usablenet.com/ada-website-compliance-lawsuit-tracker)</p>



<p>In Canada, Ontario already adopted <a rel="noreferrer noopener" href="https://www.aoda.ca/" target="_blank">AODA</a> legislation, and other provinces are working on their accessibility legislation. In Canada a user cannot sue, but instead, the government evaluates the sites and can levy stiff daily fines to both the company, the directors and officers of a corporation.</p>



<ul class="wp-block-list">
<li>A corporation/organization that is guilty can be fined up to $100,000 per day</li>



<li>Directors and officers of a corporation/organization that is guilty can be fined up to $50,000 per day (source: <a href="https://accessibilitycanada.ca/aoda/" target="_blank" rel="noreferrer noopener">https://accessibilitycanada.ca/aoda/</a>)</li>
</ul>



<p>Some Eastern European countries are far ahead of the curve, having developed website accessibility laws well before the Western world. Companies with international websites need to be reviewed by an accessibility professional to ensure that they are meeting web accessibility standards in that specific country, as international penalties can be very expensive.</p>



<h2 class="wp-block-heading">Advantages of Hiring a Certified Web Accessibility Specialist through an Agency</h2>



<ul class="wp-block-list">
<li>You’ll save money. Pay for only the time you need, when you need it.</li>



<li>An agency can give you the full backbone of multiple disciplines that can intertwine to help with complex issue identification &amp; resolution</li>



<li>Not having to worry about the cost of ongoing education and certification</li>
</ul>



<h2 class="wp-block-heading">Is Your Website Accessible?</h2>



<p>Website audits are the best way to start and see if you&#8217;re website needs work to become accessible. If you’d like more information on how to find out if your site is accessible or how to fix your website, <a href="mailto:hello@mybrotheredarryl.com" data-type="mailto" data-id="mailto:hello@mybrotheredarryl.com">click here to contact us</a>.</p>



<p class="source has-small-font-size">Sources:<br>Photo by <a rel="noreferrer noopener" href="https://www.pexels.com/photo/man-people-woman-sign-11035385/" target="_blank">RealToughCandy.com</a><br><a href="https://www.vecteezy.com/free-vector/checklist">Checklist Vectors by Vecteezy</a></p>



<p></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>SEO and AI-Generated Content</title>
		<link>https://www.mybrotherdarryl.com/seo-and-ai-generated-content/</link>
		
		<dc:creator><![CDATA[Candace Morgan]]></dc:creator>
		<pubDate>Mon, 08 May 2023 20:29:21 +0000</pubDate>
				<category><![CDATA[Design & Development]]></category>
		<category><![CDATA[SEO]]></category>
		<guid isPermaLink="false">https://mybrotherdarry.wpenginepowered.com/?p=7786</guid>

					<description><![CDATA[Getting your website up to the top of search is becoming more and more complicated.]]></description>
										<content:encoded><![CDATA[
<p>Getting your website up to the top of search is becoming more and more complicated. In highly competitive industries, having a wealth of online content can help push your site up in the rankings. With the explosion of AI-generated content &#8211; the current temptation is to find a faster way to create mass amounts of content. But while artificial intelligence can be a fast way to create content, more &gt; faster is not always better. Let’s talk about how AI can help, and hurt your website SEO. In 1996 Bill Gates uttered the words that would resonate for years “Content is King”. But in 2019 with Google&#8217;s launch of BERT they started pushing the idea that only “QUALITY content is king”.&nbsp; Bert pushed the concept of <strong>E-E-A-T</strong> (<em>experience, expertise, authoritativeness, and trust</em>) when ranking content.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:80%">
<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="647" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/EEAT-graphic-2-1024x647.png" alt="Write Tasty Content by following EEAT. Expertise, Experience, Authoritativeness, Trust" class="wp-image-7791" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/EEAT-graphic-2-1024x647.png 1024w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/EEAT-graphic-2-300x190.png 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/EEAT-graphic-2-768x485.png 768w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/EEAT-graphic-2-320x202.png 320w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/EEAT-graphic-2-700x441.png 700w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/EEAT-graphic-2-200x126.png 200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/EEAT-graphic-2-400x253.png 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/EEAT-graphic-2-600x379.png 600w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/EEAT-graphic-2-800x506.png 800w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/EEAT-graphic-2-1200x758.png 1200w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/EEAT-graphic-2.png 1402w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>
</div>



<h2 class="wp-block-heading">What is considered quality web content?</h2>



<p>“Quality content” is content that has depth and richness within the topic. It should make sure that special terms have descriptive explanations either within the copy or via links. It should also make sure that the reader gains a deep understanding of the subject. Writing the article at an eighth grade level is a good way to communicate to a large audience. It should be well researched, original, engaging and relevant. That is a VERY high bar for content to hit &#8211; but it is achievable.</p>



<h2 class="wp-block-heading">AI-generated content in Google</h2>



<p>It’s important to note right off the bat that Google is not AGAINST AI-generated copy, and you will not lose ranking JUST for using it. AI can be extremely helpful to help you come up with topics, ideas or re-writing content. The issue is that AI can only spit out what it has been given… meaning that the content it spits out is not 100% original material. So no, if you’re using AI-generated content, you are not going to lose your ranking &#8212; but you do need to keep some things in mind that WILL cause you to lose ranking.</p>



<p><strong>SPAM:</strong> Black hat SEO techniques are still bad no matter who writes the content. Stuffing your content with keyphrases, cloaking, and private link networking is still bad. If your content was created to manipulate search engines, search engines will still drop your ranking.&nbsp;</p>



<p><strong>DUPLICATE CONTENT:</strong> Google does not “penalize” duplicate content &#8212; but there are a host of other issues duplicate content can cause. When Google finds pages with the same content, it has to decide which content is the most relevant to the user. Often, this can lead to the wrong version of your content being shown, or your content being virtually invisible. Going back to Google’s E-E-A-T, the content that will rank is the one that has the highest experience, expertise, authority and trustworthiness.</p>



<p>As budgets tighten and AI becomes more affordable, it&#8217;s important to understand that AI does not create unique content. AI (at this point) can only create and regurgitate content from what has already been published. Which is an important consideration for those using an external content creation company. How do you know the content that you&#8217;re paying for is unique?</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:80%"><div class="wp-block-image">
<figure class="aligncenter size-full"><a href="https://originality.ai?lmref=0czRBQ"><img loading="lazy" decoding="async" width="400" height="100" src="https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/originality.AI-400.png" alt="Originality.ai - Plagarism Checker and AI Detector" class="wp-image-7789" srcset="https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/originality.AI-400.png 400w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/originality.AI-400-300x75.png 300w, https://www.mybrotherdarryl.com/wp-content/uploads/2023/05/originality.AI-400-200x50.png 200w" sizes="auto, (max-width: 400px) 100vw, 400px" /></a></figure>
</div></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:10%"></div>
</div>



<h2 class="wp-block-heading">Get a premium tool to identify plagiarism and non-original Ai-generated content</h2>



<p>After you&#8217;ve finished confirming that the article you&#8217;re about to publish &#8211; follows E-E-A-T, we recommend checking for plagiarism. One of the tools we recommend is <a href="https://originality.ai?lmref=0czRBQ" target="_blank" rel="noreferrer noopener">Originality.ai</a>. This is a modern content checking solution to help identify content duplication across the web. They boast that they are currently the most accurate ai detection application on the market to date. This could be really helpful if you want to ensure that your are publishing unique content that will benefit your website ranking.</p>



<p>If you want to know more about SEO and how we can help with your website ranking contact us at <a href="mailto:hello@mybrotherdarryl.com">hello@mybrotherdarryl.com</a></p>



<p class="source has-small-font-size">Sources: <br><a href="https://www.searchenginejournal.com/google-says-ai-generated-content-is-against-guidelines/444916/">https://www.searchenginejournal.com/google-says-ai-generated-content-is-against-guidelines/444916/</a><br><a href="https://zenbrief.com/blog/why-content-is-king-is-no-longer-the-rule/">https://zenbrief.com/blog/why-content-is-king-is-no-longer-the-rule/</a><br><a href="https://developers.google.com/search/blog/2023/02/google-search-and-ai-content">https://developers.google.com/search/blog/2023/02/google-search-and-ai-content</a><br><a href="https://www.vecteezy.com/free-vector/spoon">Spoon Vectors by Vecteezy</a><br><a href="https://www.vecteezy.com/free-vector/cupcake">Cupcake Vectors by Vecteezy</a><br>Robot Photo by <a href="https://unsplash.com/@mrsunburnt?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Xu Haiwei</a> on <a href="https://unsplash.com/photos/_3KdlCgHAn0?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Unsplash</a></p>



<p>&nbsp;</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
