<?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>User Experience Design &#8211; SymSoft Solutions</title>
	<atom:link href="https://www.symsoftsolutions.com/blog/topic/ux-design/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.symsoftsolutions.com</link>
	<description>High Performance Websites for Enterprises</description>
	<lastBuildDate>Fri, 14 Mar 2025 22:21:08 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>

<image>
	<url>https://www.symsoftsolutions.com/wp-content/uploads/2020/07/cropped-logo-square-32x32.png</url>
	<title>User Experience Design &#8211; SymSoft Solutions</title>
	<link>https://www.symsoftsolutions.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Browser (Web) based Notifications using Azure Notification Hub</title>
		<link>https://www.symsoftsolutions.com/ux-design/browser-web-based-notifications-using-azure-notification-hub/</link>
		
		<dc:creator><![CDATA[Pushkal Shetty]]></dc:creator>
		<pubDate>Fri, 14 Mar 2025 19:54:03 +0000</pubDate>
				<category><![CDATA[User Experience Design]]></category>
		<category><![CDATA[Digital Experience]]></category>
		<guid isPermaLink="false">https://www.symsoftsolutions.com/?p=13223</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<div class="et_pb_section et_pb_section_0 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_0">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p><span data-contrast="auto">Azure Notification Hub is a scalable push notification service that allows sending messages to multiple platforms, including Web Push (VAPID), Apple Push Notification Service (APNs), and Firebase Cloud Messaging (FCM)<b>. </b>Recently, we integrated web browser based push notifications into our web application using </span>this service<span data-contrast="auto">. The journey involved overcoming multiple challenges, from .NET SDK issues to REST API implementation, service worker interactions, and platform-specific limitations, particularly on iOS. This post summarizes our approach, the issues we faced, and the solutions we implemented.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></p>
<h2><span data-contrast="none">Registering a Web Push Subscription</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h2>
<p><span data-contrast="auto">We implemented a browser service worker to handle push notifications and used the </span>VAPID protocol<span data-contrast="auto"> to securely register subscriptions on the client. More information on service workers can be found </span><a href="https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration" target="_blank" rel="noopener"><span data-contrast="none">here</span></a><span data-contrast="auto">.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></p>
<pre><span data-contrast="auto">navigator.serviceWorker.register("/sw.js").then(async (registration) =&gt; {</span> 
<span data-contrast="auto">    const subscription = await registration.pushManager.subscribe({</span> 
<span data-contrast="auto">        userVisibleOnly: true,</span> 
<span data-contrast="auto">        applicationServerKey: "YOUR_PUBLIC_VAPID_KEY"</span> 
<span data-contrast="auto">    });</span> 
<span data-contrast="auto">    console.log("Push Subscription:", subscription);</span> 
<span data-contrast="auto">});</span><span data-ccp-props="{&quot;201341983&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240,&quot;469777462&quot;:&#091;916,1832,2748,3664,4580,5496,6412,7328,8244,9160,10076,10992,11908,12824,13740,14656&#093;,&quot;469777927&quot;:&#091;0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0&#093;,&quot;469777928&quot;:&#091;1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1&#093;}"> </span></pre>
<p><span data-contrast="auto">We then sent the </span>subscription object<span data-contrast="auto"> to our backend, which registers our browser with Azure Notification Hub using the I</span>nstallation API<span data-contrast="auto">. This allows Azure Notification Hub to send notifications to our browser.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></p>
<pre><span data-contrast="auto">var installation = new</span><span data-ccp-props="{&quot;201341983&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240,&quot;469777462&quot;:&#091;916,1832,2748,3664,4580,5496,6412,7328,8244,9160,10076,10992,11908,12824,13740,14656&#093;,&quot;469777927&quot;:&#091;0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0&#093;,&quot;469777928&quot;:&#091;1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1&#093;}"> </span>
<span data-contrast="auto">{</span> 
<span data-contrast="auto">    installationId = "unique-user-id",</span> 
<span data-contrast="auto">    platform = "web",</span> 
<span data-contrast="auto">    pushChannel = subscription.endpoint,</span> 
<span data-contrast="auto">    tags = new[] { "user-123" }</span> 
<span data-contrast="auto">};</span><span data-ccp-props="{&quot;201341983&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240,&quot;469777462&quot;:&#091;916,1832,2748,3664,4580,5496,6412,7328,8244,9160,10076,10992,11908,12824,13740,14656&#093;,&quot;469777927&quot;:&#091;0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0&#093;,&quot;469777928&quot;:&#091;1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1&#093;}"> </span>

<span data-contrast="auto">string apiUrl = $"https://{Namespace}.servicebus.windows.net/{HubName}/installations/{installationId}?api-version=2020-06";</span> 
<span data-contrast="auto">string sasToken = GenerateSasToken(apiUrl, SasKeyName, SasKey); -- SasKeyName, SasKey can be obtained from Azure Notification Hub. Code for GenerateSasToken not provided here. </span> 
<span data-contrast="auto">string jsonPayload = Newtonsoft.Json.JsonConvert.SerializeObject(installation);</span> 
<span data-contrast="auto">var request = new HttpRequestMessage(HttpMethod.Put, apiUrl)</span> 
<span data-contrast="auto">{</span> 
<span data-contrast="auto">    Headers = { { "Authorization", sasToken } },</span> 
<span data-contrast="auto">    Content = new StringContent(jsonPayload, Encoding.UTF8, "application/json")</span> 
<span data-contrast="auto">};</span> 
<span data-contrast="auto">HttpResponseMessage response = await _httpClient.SendAsync(request);</span><span data-ccp-props="{&quot;201341983&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240,&quot;469777462&quot;:&#091;916,1832,2748,3664,4580,5496,6412,7328,8244,9160,10076,10992,11908,12824,13740,14656&#093;,&quot;469777927&quot;:&#091;0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0&#093;,&quot;469777928&quot;:&#091;1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1&#093;}"> </span></pre>
<h2><span data-contrast="none">Service Worker Interactions</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h2>
<p><span data-contrast="auto">The service worker plays a crucial role in receiving and handling push notifications.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></p>
<pre><span data-contrast="auto">self.addEventListener("push", event =&gt; {</span> 
<span data-contrast="auto">    const data = event.data.json();</span> 
<span data-contrast="auto">    event.waitUntil(</span> 
<span data-contrast="auto">        self.registration.showNotification(data.title, {</span> 
<span data-contrast="auto">            body: data.message,</span> 
<span data-contrast="auto">            icon: "/icon.png",</span> 
<span data-contrast="auto">            data: { url: data.url }</span> 
<span data-contrast="auto">        })</span> 
<span data-contrast="auto">    );</span> 
<span data-contrast="auto">});</span><span data-ccp-props="{&quot;201341983&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240,&quot;469777462&quot;:&#091;916,1832,2748,3664,4580,5496,6412,7328,8244,9160,10076,10992,11908,12824,13740,14656&#093;,&quot;469777927&quot;:&#091;0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0&#093;,&quot;469777928&quot;:&#091;1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1&#093;}"> </span></pre>
<p><span data-contrast="auto">We also implemented </span>click handling on the notification<span data-contrast="auto"> to open a custom URL when the notification is clicked.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></p>
<pre><span data-contrast="auto">self.addEventListener("notificationclick", event =&gt; {</span> 
<span data-contrast="auto">    event.notification.close();</span> 
<span data-contrast="auto">    event.waitUntil(clients.openWindow(event.notification.data.url));</span> 
<span data-contrast="auto">});</span><span data-ccp-props="{&quot;201341983&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240,&quot;469777462&quot;:&#091;916,1832,2748,3664,4580,5496,6412,7328,8244,9160,10076,10992,11908,12824,13740,14656&#093;,&quot;469777927&quot;:&#091;0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0&#093;,&quot;469777928&quot;:&#091;1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1&#093;}"> </span><span data-ccp-props="{&quot;201341983&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240,&quot;469777462&quot;:&#091;916,1832,2748,3664,4580,5496,6412,7328,8244,9160,10076,10992,11908,12824,13740,14656&#093;,&quot;469777927&quot;:&#091;0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0&#093;,&quot;469777928&quot;:&#091;1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1&#093;}"> </span></pre>
<h2>Challenges</h2>
<p><span data-contrast="auto">Here are some of the issues we faced during the implementation:</span></p>
<h3><span data-contrast="none">Issue with the Azure SDK and switching to REST API</span><span data-ccp-props="{}"> </span></h3>
<p><span data-contrast="auto">The primary problem with the Azure SDK was that it </span>did not match the official documentation<span data-contrast="auto">, and the version we used was outdated, therefore making it unsuitable for our web push notification implementation.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></p>
<p><span data-contrast="auto">To gain full control over push subscriptions, we switched to using the </span>Azure Notification Hub REST API<span data-contrast="auto">. This allowed us to manually register, update, and manage push subscriptions.</span><span data-ccp-props="{&quot;201341983&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:240,&quot;469777462&quot;:&#091;916,1832,2748,3664,4580,5496,6412,7328,8244,9160,10076,10992,11908,12824,13740,14656&#093;,&quot;469777927&quot;:&#091;0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0&#093;,&quot;469777928&quot;:&#091;1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1&#093;}"> </span></p>
<h3><span data-contrast="none">Issue with Subject Name in Azure Notification Hub</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h3>
<p><span data-contrast="auto">One major issue we faced was </span>incorrect subject names<span data-contrast="auto"> when configuring VAPID keys in Azure Notification Hub. This resulted in authentication failures. To resolve this, we ensured that the </span>subject name in the VAPID settings matched the expected format<span data-contrast="auto"> required by Azure. The correct format it’s looking for is </span><a href="mailto:&#091;emailaddress&#093;"><span data-contrast="none">mailto:[emailaddress]</span></a><span data-contrast="auto">, for example </span><a href="mailto:john@hotmail.com"><span data-contrast="none">mailto:john@hotmail.com</span></a><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}">.</span></p>
<h3><span data-contrast="none">Handling Push Notifications</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> on iOS</span></h3>
<p><span data-contrast="auto">We encountered an issue where push notifications worked on macOS but </span>not on iOS Safari<span data-contrast="auto">. Some of the solutions we had to implement on iOS were:</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></p>
<ul>
<li data-leveltext="" data-font="Symbol" data-listid="2" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:&#091;8226&#093;,&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><span data-contrast="auto">We ensured that our site properly requested notification permissions. The permissions needs to be requested at the click of a button, rather than at page load, which was sufficient for other browser platforms.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
</ul>
<ul>
<li data-leveltext="" data-font="Symbol" data-listid="2" data-list-defn-props="{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:&#091;8226&#093;,&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}" data-aria-posinset="2" data-aria-level="1"><span data-contrast="auto">Additionally, on iOS, the </span>permission prompt does not appear unless the website is installed as a PWA<span data-contrast="auto">. The only way around this is to provide the user of the application with a suitable message/banner for installing the app as a PWA.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
</ul>
<h2><span data-contrast="none">Conclusion</span><span data-ccp-props="{&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;335559738&quot;:160,&quot;335559739&quot;:80}"> </span></h2>
<p><span data-contrast="auto">Despite the hurdles, the final implementation using Azure Notification Hub works seamlessly across major browsers. The key takeaways were:</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></p>
<ol>
<li data-leveltext="%1." data-font="Times New Roman" data-listid="1" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:&#091;65533,0&#093;,&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><b><span data-contrast="auto">Switching from the Azure SDK to REST API</span></b><span data-contrast="auto"> provided more control over subscriptions and tags.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
<li data-leveltext="%1." data-font="Times New Roman" data-listid="1" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:&#091;65533,0&#093;,&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><b><span data-contrast="auto">Service workers</span></b><span data-contrast="auto"> played a critical role in handling push events and opening URLs.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
<li data-leveltext="%1." data-font="Times New Roman" data-listid="1" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:&#091;65533,0&#093;,&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><b><span data-contrast="auto">Subject name issues in VAPID</span></b><span data-contrast="auto"> caused authentication failures and required proper configuration.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
<li data-leveltext="%1." data-font="Times New Roman" data-listid="1" data-list-defn-props="{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:&#091;65533,0&#093;,&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;multilevel&quot;}" data-aria-posinset="1" data-aria-level="1"><b><span data-contrast="auto">iOS requires PWA installation</span></b><span data-contrast="auto"> for push notifications, unlike macOS or Windows.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></li>
</ol>
<p><span data-contrast="auto">If you’re looking to implement Browser based notifications for your website, don’t hesitate to reach out to us.</span><span data-ccp-props="{&quot;134233117&quot;:true,&quot;134233118&quot;:true,&quot;201341983&quot;:0,&quot;335559740&quot;:240}"> </span></p></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Happy Global Accessibility Awareness Day 2024!</title>
		<link>https://www.symsoftsolutions.com/digital-experience/happy-global-awareness-day-2024/</link>
		
		<dc:creator><![CDATA[Mark Aplet]]></dc:creator>
		<pubDate>Thu, 16 May 2024 19:42:48 +0000</pubDate>
				<category><![CDATA[Digital Experience]]></category>
		<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[User Experience Design]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[ADA]]></category>
		<category><![CDATA[Color]]></category>
		<category><![CDATA[GAAD]]></category>
		<category><![CDATA[Web design]]></category>
		<guid isPermaLink="false">https://www.symsoftsolutions.com/?p=12696</guid>

					<description><![CDATA[Together, let's strive to build a digital landscape where everyone can access and engage with content without barriers.]]></description>
										<content:encoded><![CDATA[<h2>Understanding Color Contrast on Global Accessibility Awareness Day 2024</h2>
<p>Global Accessibility Awareness Day (GAAD) is an annual event celebrated on the third Thursday of May, dedicated to raising awareness about digital accessibility. It&#8217;s a day to reflect on the importance of creating inclusive digital experiences that cater to individuals of all abilities. As we mark GAAD, let&#8217;s delve into one of the fundamental aspects of accessibility:<strong> color contrast</strong>.</p>
<h2>Understanding Color Contrast</h2>
<p>Color contrast refers to the difference in luminance or color between two elements in a design. It plays a crucial role in ensuring readability and usability for everyone, especially for individuals with visual impairments, color vision deficiencies, or other disabilities. For these individuals, insufficient color contrast can make content difficult or even impossible to perceive.</p>
<h2>Impact of Color Contrast</h2>
<p>According to the <a href="https://webaim.org/projects/million/" target="_blank" rel="noopener">2024 WebAIM Million report</a>, lack of sufficient color contrast is one of the leading causes of accessibility barriers in digital content. Consider this: for someone with low vision, reading text with poor color contrast can be akin to trying to decipher blurred or indistinguishable characters. Similarly, individuals with color vision deficiencies (color blindeness) may struggle to differentiate between certain colors, further complicating their interaction with digital content.</p>
<h2>Tips for Ensuring Adequate Color Contrast</h2>
<p>Fortunately, there are simple yet effective measures we can take to address color contrast issues and enhance digital accessibility:</p>
<ul>
<li>Use Contrast Checking Tools: There are numerous online tools available that can help assess the color contrast of text and background combinations. Tools like <a href="https://webaim.org/resources/contrastchecker/" target="_blank" rel="noopener">WebAIM&#8217;s Contrast Checker</a> or the <a href="https://www.tpgi.com/color-contrast-checker/" target="_blank" rel="noopener">Color Contrast Analyzer</a> by The Paciello Group can quickly determine if your design meets accessibility standards.</li>
<li>Follow WCAG Guidelines: The Web Content Accessibility Guidelines (WCAG) provide specific criteria for color contrast ratios that ensure content is perceivable by all users. Aim for a minimum contrast ratio of 4.5:1 for normal text and 3:1 for large text to meet WCAG standards. Use color contrast tools such as those mentioned in this article to ensure text meets the requirement.</li>
<li>Choose Colors Wisely: Opt for color combinations that provide sufficient contrast. If you struggle in this area, tools like <a href="https://www.accessiblecolorpalette.com/" target="_blank" rel="noopener">Accessible Color Palette Generator</a> will generate an accessible color palette based on a starting color.</li>
</ul>
<h2>Need More Help?</h2>
<p>At SymSoft Solutions, we understand the importance of accessibility and are dedicated to helping businesses and organizations create more accessible digital experiences. Whether you&#8217;re seeking guidance on color contrast optimization or comprehensive accessibility audits, full accessibility solutions, or looking to establish an accessibility program in your organization, Symsoft is here to support you every step of the way.</p>
<p>Together, let&#8217;s strive to build a digital landscape where everyone can access and engage with content without barriers. <strong>Happy Global Accessibility Awareness Day!</strong></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Why Government Website UX Matters?</title>
		<link>https://www.symsoftsolutions.com/ux-design/why-government-website-ux-matters/</link>
		
		<dc:creator><![CDATA[SymSoft Solutions]]></dc:creator>
		<pubDate>Thu, 22 Apr 2021 21:03:00 +0000</pubDate>
				<category><![CDATA[User Experience Design]]></category>
		<category><![CDATA[Digital Experience]]></category>
		<category><![CDATA[Web Design]]></category>
		<guid isPermaLink="false">https://www.symsoftsolutions.com/?p=8713</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_1 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_1">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_0  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						<h1 class="et_pb_module_header"><span>Why Government Website UX Matters?</span></h1>
						<div class="et_pb_blurb_description"><p><strong>Summary:</strong><span> Multiple case studies (provided below) demonstrate that better User Experience leads to better digital transaction completion rates. Great UX help constituents complete what they need fast and at their convenience.</span></p></div>
					</div>
				</div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div><div class="et_pb_section et_pb_section_2 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_2">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_0">
				
				
				
				
				<span class="et_pb_image_wrap "><img fetchpriority="high" decoding="async" width="2400" height="1200" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/05/why-ux-matters-hero.jpg" alt="Illustration of brands included in UX case studies" title="" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/05/why-ux-matters-hero.jpg 2400w, https://www.symsoftsolutions.com/wp-content/uploads/2021/05/why-ux-matters-hero-1280x640.jpg 1280w, https://www.symsoftsolutions.com/wp-content/uploads/2021/05/why-ux-matters-hero-980x490.jpg 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/05/why-ux-matters-hero-480x240.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2400px, 100vw" class="wp-image-8844" /></span>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_3">
				<div class="et_pb_column et_pb_column_1_5 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_3_5 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_1  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						
						<div class="et_pb_blurb_description"><p>User experience as a concept has been around since the 1990s, but only in the last decade has it entered mainstream conversations and crossed from the technology sector into the business world. <strong>The private sector pays attention to user experience because it directly affects customer and brand experience, which ultimately impacts consumer spending.</strong></p>
<p>Government websites can benefit from optimized user experience as well. As we shared before in our guide on <a href="https://www.symsoftsolutions.com/ux-design/government-websites-best-practices-performance/">government website performance best practices</a>, by approaching the <a href="https://www.computerweekly.com/news/252486191/Covid-19-accelerates-UK-digital-transformation-efforts-by-over-five-years" target="_blank" rel="noopener">digital transformation project</a> with the business mindset, the award-winning <a href="https://gds.blog.gov.uk/2015/10/23/how-digital-and-technology-transformation-saved-1-7bn-last-year/" target="_blank" rel="noopener">GOV.UK website saved £61.5 million ($85.9 million) in 2015</a>. The UK government focused on streamlining digital transactions in order to help users accomplish as many digital transactions as possible online, instead of visiting offices and filling out paper forms.</p>
<p>Replacing paper forms with web forms is the first step in digital transformation. The next step is providing access to content and services on a range of devices, form factors, and assistive technologies. But in order to improve digital service adoption in a country, state, county, or city, government websites must provide quick access to the information the user needs, open up the content to all levels of literacy, education and expertise, and make it easy to use, accomplish tasks, bookmark and share.</p>
<p>A few examples of digital services that benefit from improved user experience include:</p>
<ol>
<li>Power outage or wildfire reporting.</li>
<li>Discount or equity program application.</li>
<li>Application for school or college.</li>
<li>Public transportation ticket purchase.</li>
<li>Climate change incentive registration and renewal.</li>
</ol>
<p>Continue reading below to learn <a href="#how-to-convince-your-organization-to-improve-your-website-ux">how to convince your organization with examples of UX successes and failures</a>.</p></div>
					</div>
				</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_5 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column_empty">
				
				
				
				
				
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_5 et_pb_equal_columns et_pb_gutters1">
				<div class="et_pb_column et_pb_column_1_3 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_2_3 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_cta_0 et_pb_promo  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_promo_description"><h2 class="et_pb_module_header">Read more content like this.</h2><div><p>We write about <a href="https://www.symsoftsolutions.com/ux-design/government-websites-best-practices-performance/">page speed performance</a>, accessibility, usability, a variety of technology topics and more. Subscribe to our newsletter and <a href="https://www.linkedin.com/company/symsoft-solutions" target="_blank" rel="noopener">connect with us on LinkedIn</a> to receive future updates.</p></div></div>
				<div class="et_pb_button_wrapper"><a class="et_pb_button et_pb_promo_button" href="https://www.symsoftsolutions.com/newsletter/">Subscribe to our Newsletter</a></div>
			</div>
			</div>
				
				
				
				
			</div><div id="how-to-convince-your-organization-to-improve-your-website-ux" class="et_pb_row et_pb_row_6">
				<div class="et_pb_column et_pb_column_1_5 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_3_5 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_2  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						<h2 class="et_pb_module_header"><span>How to convince your organization to improve your website UX?</span></h2>
						<div class="et_pb_blurb_description"><p>Here are a few examples of <strong>why user experience matters</strong> and how a good user interface, as well as concise, clear, and well-organized content, help audiences to complete tasks:</p>
<ol>
<li>User experience is a matter of survival for your business and can be the reason your competition puts you out of business.<a href="https://www.forbes.com/sites/forbestechcouncil/2015/11/19/good-ux-is-good-business-how-to-reap-its-benefits/?sh=62ef440b4e51" class="rank-math-link" target="_blank" rel="noopener"> Large companies such as Amazon, Intuit, and Airbnb have invested heavily into UX and credit their success to improved UX</a>. Research from <a href="https://www.forrester.com/report/The+Six+Steps+For+Justifying+Better+UX/-/E-RES117708" target="_blank" rel="noopener">Forrester</a> (paid report) shows that, on average, every dollar invested in UX brings 100 in return, which is an ROI of 9,900%.</li>
<li>In 2009, <a href="https://articles.uie.com/three_hund_million_button/" target="_blank" rel="noopener">UIE redesigned a major retailer site</a>, renaming the “register” button to “continue,” explaining that the registration was optional when completing the checkout process. Sales went up 45% / $15 million in the first month and $300 million in the first year.</li>
<li>In February 2021, <a href="https://arstechnica.com/tech-policy/2021/02/citibank-just-got-a-500-million-lesson-in-the-importance-of-ui-design/" target="_blank" rel="noopener">Citibank got a $500 million lesson on the importance of UI design</a>. Ambiguous user interface caused a transaction error, and instead of sending $7.8M in interest to creditors, they sent $900M of the principal.</li>
</ol></div>
					</div>
				</div>
			</div><div class="et_pb_module et_pb_image et_pb_image_1 et_pb_image_sticky">
				
				
				
				
				<span class="et_pb_image_wrap "><img decoding="async" width="1200" height="675" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/05/AdobeStock_295854200-1200x675-1.jpg" alt="Internal hands-on meeting with optimistic participants" title="AdobeStock_295854200_Preview" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/05/AdobeStock_295854200-1200x675-1.jpg 1200w, https://www.symsoftsolutions.com/wp-content/uploads/2021/05/AdobeStock_295854200-1200x675-1-980x551.jpg 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/05/AdobeStock_295854200-1200x675-1-480x270.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1200px, 100vw" class="wp-image-8937" /></span>
			</div><div class="et_pb_module et_pb_blurb et_pb_blurb_3  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						
						<div class="et_pb_blurb_description"><ol start="4">
<li>In 2011, Netflix spurred outrage and 800,000 account cancellations when it unexpectedly announced it was <a href="https://customersincluded.com/chapter1.html#chap1" target="_blank" rel="noopener">increasing the subscription price by 60% without additional benefits</a>, and days later stated that it was spinning off its DVD rental services into another business, Qwikster. <a href="https://creativegood.com/mark-hurst/" target="_blank" rel="noopener">Mark Hurst</a>, the author of the book <em>Customers Included</em>, writes: “Customers’ emotional attachment came directly from the convenience and ease-of-use of the service. Netflix’s brand was (and still is) fully defined by the experience it creates for customers. Hastings’ mistake may be summed up in a simple rule of thumb: Harm the customer experience and you harm the company.” (At that time, the stock price fell from $298 to $54 within a year.)</li>
<li>“In a recent project, an airline approached IBM to improve its kiosks to speed up passenger gate check-ins. While the engineers started by improving the kiosk’s software, designers went straight to gate agents to ask why the check-in kiosks weren’t used more effectively. Designers found out that female gate agents struggled to keep kiosks charged because their constricting uniforms prevented them from reaching electrical plugs behind the machines. By finding the root of the problem, IBM delivered a mobile app that significantly eased the boarding process and reduced airline costs.”<em> – </em><a href="https://qz.com/755741/ibm-is-becoming-the-worlds-largest-design-company/" target="_blank" rel="noopener">Anne Quito</a></li>
<li>To write content that everyone can understand, use plain language. A <a href="https://nces.ed.gov/pubs93/93275.pdf" target="_blank" rel="noopener">2003 Department of Education literacy assessment conducted with 26,000 adults</a> (PDF) showed that 21–23% of adults—40 to 44 million people—in the US demonstrated literacy skills in the lowest level of prose, document, and quantitative proficiencies. “Many of the individuals in this level were born in other countries; had not attended school beyond the eighth grade; were elderly; or had a disability, illness, or impairment.”</li>
</ol>
<p>Take a moment to see how your website compares, or <a href="#more-case-studies">skip to the next case study</a></div>
					</div>
				</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_5 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column_empty">
				
				
				
				
				
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_8 et_pb_equal_columns et_pb_gutters1">
				<div class="et_pb_column et_pb_column_1_3 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_2_3 et_pb_column_12 pa-inline-buttons  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_4  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						<h2 class="et_pb_module_header"><span>How does your website compare?</span></h2>
						<div class="et_pb_blurb_description"><p>Have your website evaluated by our experts and see how you compare to the industry leaders. We will review your website for free as a part of our initial consultation.</p></div>
					</div>
				</div>
			</div><div class="et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_phone_center et_pb_module ">
				<a class="et_pb_button et_pb_button_0 et_pb_bg_layout_dark" href="https://www.symsoftsolutions.com/contact/">Request a Free Review</a>
			</div>
			</div>
				
				
				
				
			</div><div id="more-case-studies" class="et_pb_row et_pb_row_9">
				<div class="et_pb_column et_pb_column_1_5 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_3_5 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_5  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						
						<div class="et_pb_blurb_description"><ol start="7">
<li>“If the customer can’t find the product, the customer can’t buy it”. <a href="https://www.nngroup.com/articles/ia-task-failures-remain-costly/" target="_blank" rel="noopener">Usability studies conducted by Jakob Nielsen</a> show that poor information architecture and content design have a negative impact on users being able to complete tasks on websites. It can also leave users frustrated with the website, causing them to leave, and can even cost you money.</li>
<li>Extensive research by Baymard Institute showed that <a href="https://baymard.com/blog/ecommerce-over-categorization" target="_blank" rel="noopener">over-categorization can lead to website abandonment</a>. With over-categorization, users are siloed into overly narrow category scopes where they can overlook the bulk of a site’s options. <a href="https://www.nngroup.com/articles/navigation-cognitive-strain/" class="rank-math-link" target="_blank" rel="noopener">Certain other website navigation approaches</a> such as overly elaborate navigation menus challenge users’ motor skills, unfamiliar labels increase ambiguity, and duplicate links (for example in the navigation and on the page) increase the number of choices and move the user from the <a href="https://www.youtube.com/watch?v=PirFrDVRBo4" target="_blank" rel="noopener">cognitive ease of shopping or browsing, into the cognitively strained mode of thinking</a>.</li>
<li>Larking and Picard demonstrated that people perform better in cognitive tests — such as the<a href="https://en.wikipedia.org/wiki/Candle_problem" target="_blank" rel="noopener"> Candle problem</a> — after being exposed to a more appealing design. For example,<a href="https://affect.media.mit.edu/pdfs/05.larson-picard.pdf" target="_blank" rel="noopener"> the participants who received good typography afterward performed better on Isen’s cognitive tasks as well as on subjective duration assessment (PDF)</a>.</li>
<li>Microsoft’s Research on <a href="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.5.6189&amp;rep=rep1&amp;type=pdf" target="_blank" rel="noopener">subjective duration assessment</a> demonstrated that people perceive successful task completion as faster, and unsuccessful tasks as slower. We know from research on website performance that <a href="https://www.symsoftsolutions.com/ux-design/government-websites-best-practices-performance/">webpage performance and the perception of speed are critical factors</a> that improve conversions.</li>
<li>Hitachi Design Center research found a <a href="https://lawsofux.com/aesthetic-usability-effect/" target="_blank" rel="noopener">stronger correlation between the participants’ ratings of aesthetic appeal and perceived ease of use than the correlation between their ratings of aesthetic appeal and <em>actual</em> ease of use</a>. This is called the aesthetic-usability effect. With an aesthetically pleasing design, users are more likely to tolerate usability issues, which can lead to unsolved usability problems.</li>
</ol>
<p>It is clear that government websites’ improved user experiences can empower constituents to more efficiently utilize government digital services, reduce operational and customer support costs, and increase the likelihood of users completing the goals around which the sites are built. Also, for millions of Californians, in addition to <a href="https://www.symsoftsolutions.com/ux-design/government-websites-best-practices-performance/">the fast loading pages</a>, simple and easy-to-use websites mean more equitable access to digital services.</p></div>
					</div>
				</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_5 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column_empty">
				
				
				
				
				
			</div>
				
				
				
				
			</div><div class="et_pb_with_border et_pb_row et_pb_row_10">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_16  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_6  et_pb_text_align_center  et_pb_blurb_position_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						
						<div class="et_pb_blurb_description"><p><strong>Read next:</strong> <a href="/ux-design/government-websites-best-practices-user-experience/">Government Websites Best Practices: User Experience</a> — or — <a href="/ux-design/7-government-websites-with-the-best-ux-design/">Government Websites with the Best UX Design</a></p></div>
					</div>
				</div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_12 et_pb_equal_columns et_pb_gutters1">
				<div class="et_pb_column et_pb_column_1_3 et_pb_column_17  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_2_3 et_pb_column_18  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_7  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						<h2 class="et_pb_module_header"><span>We can help.</span></h2>
						<div class="et_pb_blurb_description"><p>We have <a href="https://www.symsoftsolutions.com/content-services/california-community-colleges-design-lab/">extensive experience in setting up organizations for user-centered design</a> and improving their digital assets. For all questions, please <a href="http://symsoftsolutions.com/contact/">reach out to our team of experts</a>. Our favorite approach to solving user experience problems is <a href="https://www.symsoftsolutions.com/web-design/web-design-brainstorming-through-a-google-design-sprint/" style="font-size: 16px;">Design Sprints</a>, which we utilized in award-winning projects developed for SMUD Utility, California Community Colleges, and the California Energy Commission.</p></div>
					</div>
				</div>
			</div><div class="et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_left et_pb_module ">
				<a class="et_pb_button et_pb_button_1 et_pb_bg_layout_light" href="https://www.symsoftsolutions.com/contact/">Contact Us for a Free Consultation</a>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Five Simple Steps to Improve Government Website User Experience</title>
		<link>https://www.symsoftsolutions.com/ux-design/five-simple-ux-improvements/</link>
		
		<dc:creator><![CDATA[SymSoft Solutions]]></dc:creator>
		<pubDate>Thu, 08 Apr 2021 20:45:00 +0000</pubDate>
				<category><![CDATA[User Experience Design]]></category>
		<category><![CDATA[Digital Experience]]></category>
		<category><![CDATA[Web Design]]></category>
		<guid isPermaLink="false">https://www.symsoftsolutions.com/?p=8701</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<div class="et_pb_section et_pb_section_3 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_13">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_19  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_8  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						<h1 class="et_pb_module_header"><span>Five Simple Steps to Improve Government Website User Experience</span></h1>
						<div class="et_pb_blurb_description"><p><strong>Summary:</strong><span> Creating an excellent government website user experience is not unattainable, but it requires consistency and organizational commitment.</span></p></div>
					</div>
				</div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_14">
				<div class="et_pb_column et_pb_column_1_5 et_pb_column_20  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_9  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					<div class="et_pb_main_blurb_image"><span class="et_pb_image_wrap et_pb_only_image_mode_wrap"><img loading="lazy" decoding="async" width="326" height="260" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/chart-network@2x.png" alt="Network analysis" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/chart-network@2x.png 326w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/chart-network@2x-282x225.png 282w" sizes="(max-width: 326px) 100vw, 326px" class="et-waypoint et_pb_animation_off et_pb_animation_off_tablet et_pb_animation_off_phone wp-image-8533" /></span></div>
					<div class="et_pb_blurb_container">
						<h4 class="et_pb_module_header"><span>Regularly review website analytics</span></h4>
						
					</div>
				</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_5 et_pb_column_21  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_10  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					<div class="et_pb_main_blurb_image"><span class="et_pb_image_wrap et_pb_only_image_mode_wrap"><img loading="lazy" decoding="async" width="195" height="260" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/mouse@2x.png" alt="Mouse" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/mouse@2x.png 195w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/mouse@2x-169x225.png 169w" sizes="(max-width: 195px) 100vw, 195px" class="et-waypoint et_pb_animation_off et_pb_animation_off_tablet et_pb_animation_off_phone wp-image-8535" /></span></div>
					<div class="et_pb_blurb_container">
						<h4 class="et_pb_module_header"><span>Learn how people use the website</span></h4>
						
					</div>
				</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_5 et_pb_column_22  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_11  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					<div class="et_pb_main_blurb_image"><span class="et_pb_image_wrap et_pb_only_image_mode_wrap"><img loading="lazy" decoding="async" width="330" height="231" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/fighter-jet@2x.png" alt="Fast jet" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/fighter-jet@2x.png 330w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/fighter-jet@2x-300x210.png 300w" sizes="(max-width: 330px) 100vw, 330px" class="et-waypoint et_pb_animation_off et_pb_animation_off_tablet et_pb_animation_off_phone wp-image-8534" /></span></div>
					<div class="et_pb_blurb_container">
						<h4 class="et_pb_module_header"><span>Improve page loading speed</span></h4>
						
					</div>
				</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_5 et_pb_column_23  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_12  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					<div class="et_pb_main_blurb_image"><span class="et_pb_image_wrap et_pb_only_image_mode_wrap"><img loading="lazy" decoding="async" width="260" height="260" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/typewriter@2x.png" alt="Typewriter" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/typewriter@2x.png 260w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/typewriter@2x-225x225.png 225w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/typewriter@2x-150x150.png 150w" sizes="(max-width: 260px) 100vw, 260px" class="et-waypoint et_pb_animation_off et_pb_animation_off_tablet et_pb_animation_off_phone wp-image-8536" /></span></div>
					<div class="et_pb_blurb_container">
						<h4 class="et_pb_module_header"><span>Rewrite high-profile pages</span></h4>
						
					</div>
				</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_5 et_pb_column_24  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_13  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					<div class="et_pb_main_blurb_image"><span class="et_pb_image_wrap et_pb_only_image_mode_wrap"><img loading="lazy" decoding="async" width="260" height="260" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/universal-access@2x.png" alt="Universal access" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/universal-access@2x.png 260w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/universal-access@2x-225x225.png 225w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/universal-access@2x-150x150.png 150w" sizes="(max-width: 260px) 100vw, 260px" class="et-waypoint et_pb_animation_off et_pb_animation_off_tablet et_pb_animation_off_phone wp-image-8537" /></span></div>
					<div class="et_pb_blurb_container">
						<h4 class="et_pb_module_header"><span>Develop an accessible design system</span></h4>
						
					</div>
				</div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div><div class="et_pb_section et_pb_section_4 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_15">
				<div class="et_pb_column et_pb_column_1_5 et_pb_column_25  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_3_5 et_pb_column_26  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_14  et_pb_text_align_left  et_pb_blurb_position_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						
						<div class="et_pb_blurb_description"><p>While methodologies and techniques for improving User Experience are not some mysterious well-kept set of practices, where organizations fail to meet user needs is in not committing to perpetual improvements, optimizations, and course-correction over time.</p>
<p>As different brands innovate and new technologies emerge, users are introduced to ever-evolving experience trends. However, while visual design or graphic asset style is oftentimes a matter of seasonal reinvention, by going back to the basics of communication and interaction we can keep up with the user expectation and provide delightful digital services.</p>
<p>Keep reading below to learn about five simple things you can do to improve the website user experience.</p></div>
					</div>
				</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_5 et_pb_column_27  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column_empty">
				
				
				
				
				
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_17 et_pb_equal_columns et_pb_gutters1">
				<div class="et_pb_column et_pb_column_1_3 et_pb_column_28  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_2_3 et_pb_column_29  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_cta_1 et_pb_promo  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_promo_description"><h2 class="et_pb_module_header">Read more content like this.</h2><div><p>We write about <a href="https://www.symsoftsolutions.com/ux-design/government-websites-best-practices-performance/">page speed performance</a>, accessibility, usability, a variety of technology topics and more. Subscribe to our newsletter and <a href="https://www.linkedin.com/company/symsoft-solutions" target="_blank" rel="noopener">connect with us on LinkedIn</a> to receive future updates.</p></div></div>
				<div class="et_pb_button_wrapper"><a class="et_pb_button et_pb_promo_button" href="https://www.symsoftsolutions.com/newsletter/">Subscribe to our Newsletter</a></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_18">
				<div class="et_pb_column et_pb_column_1_5 et_pb_column_30  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_3_5 et_pb_column_31  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_15  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						<h3 class="et_pb_module_header"><span>Regularly review website analytics</span></h3>
						<div class="et_pb_blurb_description"><p>You’ll never know what visitors are looking for if you don’t observe website metrics, such as page visits, document downloads, and webform interactions. Document downloads and interactions are not tracked automatically in Google Analytics, but they can be set up with <a href="https://support.google.com/analytics/answer/1012044" target="_blank" rel="noopener">Universal Analytics properties</a> or <a href="https://support.google.com/analytics/answer/9216061?hl=en&amp;ref_topic=9756175" target="_blank" rel="noopener">Google Analytics 4 Events</a>. We often find that a handful of popular pages generate the majority of traffic. It’s worth addressing such pages first when improving content, accessibility, webpage performance, and interactive features.</p></div>
					</div>
				</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_5 et_pb_column_32  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column_empty">
				
				
				
				
				
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_19">
				<div class="et_pb_column et_pb_column_1_5 et_pb_column_33  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_3_5 et_pb_column_34  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_16  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						<h3 class="et_pb_module_header"><span>Learn how people use the website</span></h3>
						<div class="et_pb_blurb_description"><p><span>Learn why and how visitors use the website by watching them navigate the content or perform specific tasks. Common user research methods include usability testing, card sort, and tree test, but there are many more, such as </span><a href="https://www.symsoftsolutions.com/web-design/validating-aesthetics-in-a-web-design-project/">visual design validation</a><span>, and they can be combined in mixed-method user research that maximizes each user session. For best results, establish a regular cadence and conduct user research at least once a month. User sessions can be as simple as loading up the website over a video conference call with a participant and asking them to complete a task, or publishing a survey.</span></p></div>
					</div>
				</div>
			</div><div class="et_pb_module et_pb_image et_pb_image_2">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2560" height="1427" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/05/AdobeStock_334484054-scaled.jpeg" alt="Remote user session" title="" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/05/AdobeStock_334484054-scaled.jpeg 2560w, https://www.symsoftsolutions.com/wp-content/uploads/2021/05/AdobeStock_334484054-1280x714.jpeg 1280w, https://www.symsoftsolutions.com/wp-content/uploads/2021/05/AdobeStock_334484054-980x546.jpeg 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/05/AdobeStock_334484054-480x268.jpeg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2560px, 100vw" class="wp-image-8799" /></span>
			</div>
			</div><div class="et_pb_column et_pb_column_1_5 et_pb_column_35  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column_empty">
				
				
				
				
				
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_20">
				<div class="et_pb_column et_pb_column_1_5 et_pb_column_36  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_3_5 et_pb_column_37  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_17  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						<h3 class="et_pb_module_header"><span>Improve page loading speed</span></h3>
						<div class="et_pb_blurb_description"><p><span>Studies have shown that fast websites increase online transactions, reduce customer support inquiries, and lower website abandonment rates. By order of priority, optimize images, video files, and fonts, combine and minify CSS and JavaScript files, disable unused plugins, and enable caching. Read more in our </span><a href="https://www.symsoftsolutions.com/ux-design/government-websites-best-practices-performance/#five-simple-improvements-for-better-website-performance">website performance best practices guide</a><span>.</span></p></div>
					</div>
				</div>
			</div><div class="et_pb_module et_pb_blurb et_pb_blurb_18  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						<h3 class="et_pb_module_header"><span>Rewrite high profile pages</span></h3>
						<div class="et_pb_blurb_description"><span>User-centered content means </span><a href="https://www.symsoftsolutions.com/content-services/">inclusive content</a><span>. Translate expert language into clear instructions and streamlined information by following the </span><a href="https://www.plainlanguage.gov/" class="rank-math-link" target="_blank" rel="noopener">plainlanguage.gov guidelines</a> (there are many more content style guides applicable to government websites). Aim for the ultimate experience and provide concise information in Google Search results descriptions that are useful even before the visitor clicks to visit the website.</div>
					</div>
				</div>
			</div><div class="et_pb_module et_pb_blurb et_pb_blurb_19  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						<h3 class="et_pb_module_header"><span>Develop an accessible design system</span></h3>
						<div class="et_pb_blurb_description"><p><span>Design systems improve brand recognition, increase trust and credibility, and reduce the learning curve for new visitors. Maintain accessibility compliance and improve website usability with </span><a href="https://www.symsoftsolutions.com/ux-design/design-systems-for-enterprises-benefits-challenges-and-best-practices/">comprehensive design guidelines and interface examples</a><span>.</span></p></div>
					</div>
				</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_5 et_pb_column_38  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column_empty">
				
				
				
				
				
			</div>
				
				
				
				
			</div><div class="et_pb_with_border et_pb_row et_pb_row_21">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_39  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_20  et_pb_text_align_center  et_pb_blurb_position_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						
						<div class="et_pb_blurb_description"><p><strong>Read next:</strong> <a href="/ux-design/government-websites-best-practices-user-experience/">Government Websites Best Practices: User Experience</a> — or — <a href="/ux-design/7-government-websites-with-the-best-ux-design/">Government Websites with the Best UX Design</a></p></div>
					</div>
				</div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_23 et_pb_equal_columns et_pb_gutters1">
				<div class="et_pb_column et_pb_column_1_3 et_pb_column_40  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_2_3 et_pb_column_41  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_21  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						<h2 class="et_pb_module_header"><span>We can help.</span></h2>
						<div class="et_pb_blurb_description"><p>We have <a href="https://www.symsoftsolutions.com/content-services/california-community-colleges-design-lab/">extensive experience in setting up organizations for user-centered design</a> and improving their digital assets. For all questions, please <a href="http://symsoftsolutions.com/contact/">reach out to our team of experts</a>. Our favorite approach to solving user experience problems is <a href="https://www.symsoftsolutions.com/web-design/web-design-brainstorming-through-a-google-design-sprint/" style="font-size: 16px;">Design Sprints</a>, which we utilized in award-winning projects developed for SMUD Utility, California Community Colleges, and the California Energy Commission.</p></div>
					</div>
				</div>
			</div><div class="et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_left et_pb_module ">
				<a class="et_pb_button et_pb_button_2 et_pb_bg_layout_light" href="https://www.symsoftsolutions.com/contact/">Contact Us for a Free Consultation</a>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>7 Government Websites with the Best UX Design</title>
		<link>https://www.symsoftsolutions.com/ux-design/7-government-websites-with-the-best-ux-design/</link>
		
		<dc:creator><![CDATA[SymSoft Solutions]]></dc:creator>
		<pubDate>Tue, 16 Mar 2021 21:31:38 +0000</pubDate>
				<category><![CDATA[User Experience Design]]></category>
		<category><![CDATA[Digital Experience]]></category>
		<guid isPermaLink="false">https://www.symsoftsolutions.com/?p=8168</guid>

					<description><![CDATA[If you already read our comprehensive article on Government Website Best Practices: User Experience, you know that we reviewed and rated more than 300 government websites for page speed performance, accessibility, technology, and user experience (UX). Subscribe to our newsletter and be the first one to learn about our upcoming reports. For each best-practice pattern [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>If you already read our comprehensive article on <a class="rank-math-link" href="https://www.symsoftsolutions.com/ux-design/government-websites-best-practices-user-experience/">Government Website Best Practices: User Experience</a>, you know that we reviewed and rated more than 300 government websites for page speed performance, accessibility, technology, and user experience (UX). <a href="https://www.symsoftsolutions.com/newsletter/">Subscribe to our newsletter</a> and be the first one to learn about our upcoming reports.</p>



<p>For each best-practice pattern that we identified, we provided an example website and elaborated on why it works. While many top websites share the same attributes, some are especially good examples that everyone in the public sector of digital services should look up to. These websites, which represent some of the best in government UX design, are examined in the article below. </p>



<p>If you want to jump to a specific website review, click the corresponding link:</p>



<ol class="wp-block-list">
<li><a class="rank-math-link" href="#simple-design">Simple design: The White House</a></li>
<li><a class="rank-math-link" href="#clear-interaction-cues">Clear interaction cues: California DMV</a></li>
<li><a class="rank-math-link" href="#easy-navigation">Easy navigation: Gov.uk</a></li>
<li><a class="rank-math-link" href="#engaging-visual-design">Engaging visual design: Save Our Water</a></li>
<li><a class="rank-math-link" href="#plain-language">Plain language: U.S. Department of Veterans Affairs</a></li>
<li><a class="rank-math-link" href="#interactivity">Interactivity: U.S. Small Business Administration</a></li>
<li><a class="rank-math-link" href="#graphic-design-and-branding">Graphic design and branding: U.S. Department of State</a></li>
</ol>



<p>When evaluating website user experience, we use a framework common in expert reviews, for instance design award competitions such as the Webby Awards. We looked at content quality, interaction, ease of navigation, attractiveness, cleanliness, and simplicity of the layout. We also assessed the quality of visual design and if websites featured custom design outside of the standard and generic templates. </p>



<p>We took note of details such as a modern design, distinctive branding, and authentic and engaging photography. We wanted to evaluate how, if at all, a more custom solution has an impact on the user experience scores and if the two are correlated. (It turns out they are, as our selected websites are all custom designed.)</p>



<p>While there are many other aspects and attributes of great user experience websites, we focused on these common patterns that you can hopefully take away and implement on your website. However, when considering implementing patterns like the ones we present here, always regularly research user needs, validate any updates with your target audience, and review the website analytics data. What works in one case might not work in another, so use the examples below as inspiration and a starting point in your own project, and customize it to your project’s objectives.</p>



<p>Without further ado, let’s dive into reviews!</p>



<h2 class="wp-block-heading" id="simple-design">1. Simple design: The White House</h2>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8211" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/whitehouse.gov_-1024x624.png" alt="whitehouse.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/whitehouse.gov_-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/whitehouse.gov_-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<h3 class="wp-block-heading">What is whitehouse.gov?</h3>



<p>Whitehouse.gov is the official website of the White House owned and managed by the United States government. It provides a means for the general public to learn about the operations of the current administration. It contains information about the administration and executive offices,  as well as press releases, the history of the White House, and overviews of the critical issues the administration aims to solve.</p>



<h3 class="wp-block-heading">What stands out in the White House website?</h3>



<p>The White House website is straightforward and easy on the eye. Information is broken down into bite-size pieces and laid out in a streamlined single-column layout. This makes it easy for visitors to read the information on a range of devices, from mobile phones to tablets and large desktop monitors. Web forms are also laid out in a streamlined fashion and accessible on mobile devices too, like for instance the newsletter form at the bottom of each page.</p>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8209" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/whitehouse.gov-02-1024x624.png" alt="whitehouse.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/whitehouse.gov-02-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/whitehouse.gov-02-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<p>The website navigation (displayed both in the header and footer) is easy-to-follow with a focus on <a href="https://www.whitehouse.gov/administration/" target="_blank" rel="noopener">the administration</a> that contains biographies and a list of key offices, personnel, and presidential priorities. (At the time of this writing, <a href="https://www.whitehouse.gov/priorities/covid-19/" target="_blank" rel="noopener">the top priority is COVID-19 mitigation</a>.) The <a href="https://www.whitehouse.gov/briefing-room/" target="_blank" rel="noopener">briefing room</a> section includes topics such as Legislation, Presidential Actions, Press Briefings, Speeches and Remarks, and Statements and Releases. Such simple and straight-forward navigation helps visitors find all the information they need with just a few clicks.</p>



<p>We especially like the <a href="https://www.whitehouse.gov/about-the-white-house/" target="_blank" rel="noopener">White House section</a> that provides general information about the past presidents, their families, the grounds, and the educational subsection about how the government works.</p>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8210" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/whitehouse.gov-03-1024x624.png" alt="whitehouse.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/whitehouse.gov-03-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/whitehouse.gov-03-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<p>Subtle choices like the photography selection and cropping, rounded instead of sharp corners, typographic detail such as the consistent use of uppercase for run-in headers, captions, metadata, and interface elements, as well as exceptionally balanced white space make this simple website quite interesting to explore and read. The color hues are very delicate (we like the light yellow as an alternative color to white), but in combination with the first-class typographic treatment they establish a very clear hierarchy of information.</p>



<h3 class="wp-block-heading">What can we learn?</h3>



<p>The whole minimalistic approach reflects the administration’s simplicity in communication. The lack of ornamentation spotlights the high-quality photography and copy-text and aids navigation and user orientation around the website. However, they avoid oversimplification by introducing typographic detail reminiscent of print optimized to work well on screens, and make things interesting with strategic photography art-direction.</p>



<h3 class="wp-block-heading">Key takeaway</h3>



<p>The simple design usually comes off as attractive. But more importantly, using fewer attention-grabbing elements on the page reduces memory strain and choice overload, making the communication and messaging clear and easy to follow.</p>



<p><a href="https://www.whitehouse.gov/" target="_blank" rel="noopener">View the White House website</a></p>



<h2 class="wp-block-heading" id="clear-interaction-cues">2. Clear interaction cues: California DMV</h2>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8187" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/dmv.ca_.gov_-1024x624.png" alt="dmv.ca.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/dmv.ca_.gov_-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/dmv.ca_.gov_-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<h3 class="wp-block-heading">What is dmv.ca.gov?</h3>



<p>Dmv.ca.gov is the official website of the California Department of Motor Vehicles, which regulates motor vehicle usage and sales. It offers online services for the public including licensing drivers, registering vehicles, issuing identification cards, etc. Besides, it provides online resources of driver education, safety guidelines, studies and reports, and DMV local offices. </p>



<h3 class="wp-block-heading">What stands out in the California DMV website?</h3>



<p>The California DMV website is well-rounded with a great blend of clear communication, illustrations, and interaction cues. It packs a number of calls to action on the homepage but in a very balanced way. The user is encouraged to complete transactions that DMV offers online.</p>



<p>What stands out is the cleanliness of the layout once the visitor enters the digital transaction process. Such an unobtrusive layout helps users focus on the task at hand and removes any unnecessary distractions. Any extra white space is balanced out with relevant illustrations that additionally provide visual anchors to hold your attention.</p>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8185" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/dmv.ca_.gov-02-1024x624.png" alt="dmv.ca.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/dmv.ca_.gov-02-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/dmv.ca_.gov-02-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<p>The basic idea of digital transactions is replacing physical office visits, saving time and reducing workload related to in-person transaction processing. For this to be successful, websites need to walk the user through the process and leave no stone unturned when it comes to exceptions and special conditions. </p>



<p>In such cases, the breakdown of steps is beneficial, and we saw this technique in many successful digital transaction websites, including <a href="https://www.gov.uk/" target="_blank" rel="noopener">Gov.uk</a>, mentioned later in this article, and our projects for <a href="https://www.symsoftsolutions.com/sitecore/california-community-colleges-chancellors-office/">California Community Colleges</a> and <a href="https://www.symsoftsolutions.com/sitecore/california-department-of-general-services/">California Department of General Services</a>.</p>



<p>We like the intelligent user experience design, instructional copy and lists on service pages, such as “Before you begin…” and “What to expect?,” that makes the user feel comfortable and prepares them before they begin the transaction. Trust is an incredibly important factor when asking people to complete a digital transaction, so any extra effort to put the users at ease and relieve some of that uncertainty is always appreciated. </p>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8186" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/dmv.ca_.gov-03-1024x624.png" alt="dmv.ca.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/dmv.ca_.gov-03-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/dmv.ca_.gov-03-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<h3 class="wp-block-heading">What can we learn?</h3>



<p>Interaction cues are not only about how the buttons and links look like or what the labels read. Often, great interaction cues include a conversational approach to communication, easy-to-follow instructions and checklists, and aligning the digital service with the users’ mental models (the ways people perceive the world).</p>



<h3 class="wp-block-heading">Key takeaway</h3>



<p>In the user-interaction world, affordances are hints and cues to the user on how to use an interface element. Well-designed websites offer many affordances, such as navigation cues, interface graphics, and linguistic and pattern affordances. </p>



<p><a href="https://www.dmv.ca.gov/" target="_blank" rel="noopener">View the California DMV website</a></p>



<h2 class="wp-block-heading" id="easy-navigation">3. Easy navigation: Gov.uk</h2>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8191" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/gov.uk_-1024x624.png" alt="gov.uk screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/gov.uk_-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/gov.uk_-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<h3 class="wp-block-heading">What is gov.uk?</h3>



<p>Gov.uk is the central information website representing all government departments and many other agencies and public bodies of the United Kingdom. The public can find government services and information through the website, as well as news, communication, statistics, and consultations. </p>



<h3 class="wp-block-heading">What stands out in the Gov.uk website?</h3>



<p>Gov.uk is the industry standard when it comes to government digital services. It’s a favorite case study for digital government teams worldwide who improve digital transactions at the country, state, and local levels. And rightly so, <a href="https://gds.blog.gov.uk/2015/10/23/how-digital-and-technology-transformation-saved-1-7bn-last-year/" target="_blank" rel="noopener">the Gov.uk website saved £61.5 million ($85.9 million) in 2015</a>.</p>



<p>Many things are great about this website, from the extremely fast loading speeds to well-organized services and content, to consistency in communication, but most importantly, to the way they prioritize user experience. To successfully onboard all constituents, they removed quite a lot of barriers, including the main website navigation, the mission statement, administrative updates, key facts, and other organization-focused content still seen on too many government websites.</p>



<p>But let’s talk about the brilliant service navigation. Technically the whole homepage is the main navigation. It organizes services and information into logical categories without forcing the user to think about the government organizational structure and which service belongs to which department or office. Constituents can get things done without having to learn the ins and outs of different government offices.</p>



<p>Each top category link takes you to the next level in the content organization, but to set the right expectations, the website also provides a clear list of subtopics with the minimal necessary verbiage under each link. Such concise descriptions give users the confidence to select the right category because they have a mini-preview of what to expect when they start drilling deeper.</p>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8188" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/gov.uk-02-1024x624.png" alt="gov.uk screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/gov.uk-02-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/gov.uk-02-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<p>Another user-centered concept that the team behind the Gov.uk pioneered is breaking down tasks into bite-size steps. This technique helps users get a good sense of the process’s length and the effort required to complete the job. It works almost like a to-do list, helping you make progress and ultimately achieve clarity about the task at hand.</p>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8189" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/gov.uk-03-1024x624.png" alt="gov.uk screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/gov.uk-03-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/gov.uk-03-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<p>Many Gov.uk pages are free of any sidebar content. When there’s nothing to add to the page, the website doesn’t try to use up the available space. We do, however, think that a simple survey widget found at the bottom of many service pages is a smart move to help improve each page further. It asks a simple question, “Is this page useful?” and offers a couple of answers. If the answer is:</p>



<ol class="wp-block-list">
<li>“Yes,” they politely thank you for the feedback.</li>
<li>“No,” they direct you to a 2-minute survey.</li>
<li>“There is something wrong on this page,” they ask you for specific feedback.</li>
</ol>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="96" class="wp-image-8190" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/gov.uk-04-1024x96.png" alt="gov.uk screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/gov.uk-04-980x92.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/gov.uk-04-480x45.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<h3 class="wp-block-heading">What can we learn?</h3>



<p>As a consumer, if you don’t like the customer experience with one brand, you have at least a few more alternatives to choose from and take your business there. However, with the government, people don’t have other options than to use government websites or visit government offices. </p>



<p>So, why not remove all possible barriers for them? Gov.uk demonstrates how a government website shouldn’t attract users with creative artwork and elaborate layout, but instead should provide quick access to information and services. Government website branding should be defined by convenience and effortless navigation, instead of graphic design elements and entertaining copy.</p>



<h3 class="wp-block-heading">Key takeaway</h3>



<p>Easy navigation steers the user toward the correct information they are looking for. This includes providing breadcrumbs and intuitive dropdown options, as well as matching navigation and link labels to destination page titles. On the topic of easy navigation, as long as the user can follow a clear <a href="https://www.nngroup.com/articles/information-scent/" target="_blank" rel="noopener">information scent</a>, they don’t mind exploring multiple pages.</p>



<p><a href="https://gov.uk/" target="_blank" rel="noopener">View the Gov.uk website</a></p>



<h2 class="wp-block-heading" id="engaging-visual-design">4. Engaging visual design: Save Our Water</h2>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8194" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/saveourwater.com_-1024x624.png" alt="saveourwater.com screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/saveourwater.com_-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/saveourwater.com_-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<h3 class="wp-block-heading">What is saveourwater.com?</h3>



<p>Saveourwater.com is a website for a statewide water conservation program launched in 2009 by California Water Agencies and the California Department of Water Resources. The website serves as a communication tool to encourage Californians to adjust their water use by offering water conservation tips, guidelines, news, and resources regarding drought and climate impact.</p>



<p><em>Full disclosure, </em><a href="https://www.symsoftsolutions.com/sitecore/save-our-water-sitecore-implementation-multilingual/"><em>SymSoft delivered the Save Our Water website</em></a><em> for the California Department of Water Resources.</em></p>



<h3 class="wp-block-heading">What stands out in the Save Our Water website?</h3>



<p>The Save Our Water website combines graphical shapes, colors, and typography that are less mechanical and rigid and more humanistic and organic. This selection of visual design elements supports the main message of the campaign about water use for outdoor irrigation. </p>



<p>What is the connection between the design decision and the content of the website? In California, about 50% of household water is used for outdoor irrigation, so transforming a lawn with drought-resistant native plants saves money, and is good for the environment. The difference between perfectly trimmed green grass lawns and yards incorporating native plants is in maintenance and water consumption. By selecting organic shapes and soft colors for the design instead of perfectly straight lines and fully saturated colors, the design is aligned with the message that low maintenance native plants lawns are better for the environment. The website uses its own design to subtly get the message across that you don’t need a perfectly rectangular lawn with razor-sharp edges to have a beautiful, gratifying yard.</p>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8192" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/saveourwater.com-02-1024x624.png" alt="saveourwater.com screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/saveourwater.com-02-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/saveourwater.com-02-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<p>The website’s photography is saturated with colors, so the pastel shades of blue, yellow, brown, and green used on the website create a perfect backdrop, instead of drawing too much attention. Randomized organic shapes that resemble drops of water help photography stand out and double as bulleted-list symbols. </p>



<p>The same organic shape is combined with iconography, making even generic icons look fresh and new because they are a part of a comprehensive visual design system. A simple trick like this can help you achieve variance in a cost-effective way.</p>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8193" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/saveourwater.com-03-1024x624.png" alt="saveourwater.com screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/saveourwater.com-03-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/saveourwater.com-03-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<p>Even though there is only slight variance in organic shapes, when combined with clean typography, rich photography, and a vibrant color-palette, they create interesting combinations. The user doesn’t feel overwhelmed, because each new page and page element is built upon one another. In other words, even simple elements when combined together can create a virtually infinite number of visually interesting options. </p>



<h3 class="wp-block-heading">What can we learn?</h3>



<p>It is possible to stretch the norms of government aesthetics. When it comes to digital transactions like in the above examples of gov.uk and dmv.ca.gov, it’s all about usability, but to get people’s help and get them on board with an important initiative, campaign websites should entertain their visitors with a more elaborate design, storytelling, and fun ways to engage.</p>



<h3 class="wp-block-heading">Key takeaway</h3>



<p>In most of our top performers, visual design is accomplished through appropriate iconography, authentic photography, and overall contextual backdrop. An excellent graphic design directs the user to the task they need to complete and contributes positively to content findability. Great design will also engage with the visitors on the emotional level, especially to facilitate engagement and change of behavior.</p>



<p><a href="https://saveourwater.com/" target="_blank" rel="noopener">View the Save Our Water website</a></p>



<h2 class="wp-block-heading" id="plain-language">5. Plain language: U.S. Department of Veterans Affairs</h2>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8208" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/va.gov_-1024x624.png" alt="va.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/va.gov_-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/va.gov_-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<h3 class="wp-block-heading">What is va.gov?</h3>



<p>Va.gov is the website for the U.S. Department of Veterans Affairs that aims to provide support to veterans in healthcare, education, home loans, life insurance, and many other aspects of their lives. Users can access information through its official website about different benefits veterans receive, the history and innovation of the Veterans Affairs Department, as well as local Veteran Affairs locations. </p>



<h3 class="wp-block-heading">What stands out in the U.S. Department of Veterans Affairs website?</h3>



<p>Starting with a prominent list of actions visitors can take to manage their benefits and health care services, the website uses a simple yet active voice, making it very clear what the visitor can do and accomplish.</p>



<p>We especially like the avoidance of explicit user persona definition in the interface and navigation. Asking the visitor to self-identify can sometimes confuse them or make them feel uncomfortable by forcing them into a specific persona bucket, such as, for instance, homeless, women, or minority veterans.</p>



<p>While personas are useful to frame design thinking and help organizations to focus on the target audiences, we should always open up the website content, for example, by <a href="https://contentdesign.london/content-design/user-stories-and-job-stories/" target="_blank" rel="noopener">focusing on Job Stories, rather than User Stories</a>. The difference between the two is that Job Stories focus on the context and desired outcome, regardless of the user group, while User Stories focus on the outcomes for a specific user group. The Veteran’s Affairs website focuses on the former removing the user self-identification step.</p>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8207" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/va.gov-03-1024x624.png" alt="va.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/va.gov-03-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/va.gov-03-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<p>Even with a breakdown by topics lower on the homepage, the website is still focused on providing as much relevant context as possible, so that the user can decide whether they are following the right scent of information. Apart from embellishing each topic with an icon, topics are additionally color coded (each has a different designated color), a practice that can result in some repetition of colors especially when you run out of them. In Veterans Affairs’ case it works well, because the colored circles with icons are juxtaposed against the black and white photography above.</p>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8206" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/va.gov-02-1024x624.png" alt="va.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/va.gov-02-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/va.gov-02-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<p>Drilling down further into content pages, it is obvious that every effort is made to keep the reader in control. Content is structured into bite-size pieces of information with sections such as <a href="https://www.va.gov/health-care/order-prosthetic-socks/" target="_blank" rel="noopener">eligibility, simple-to-follow how-tos and checklists</a>. We like the useful headings, placing the main idea before exceptions and conditions, the use of lists, as well as the concise, approachable, and conversational style. </p>



<p>If you are familiar with the <a href="http://plainlanguage.gov/" target="_blank" rel="noopener">plainlanguage.gov</a> guidelines, you will notice that the Veterans Affairs website follows many of the suggestions included there. Other useful plain language guidelines include the <a href="https://content-guide.18f.gov/" target="_blank" rel="noopener">18F Content Guide</a>, <a href="https://www.gov.uk/guidance/content-design" target="_blank" rel="noopener">Gov.uk Content Design</a>, and <a href="https://styleguide.mailchimp.com/" target="_blank" rel="noopener">MailChimp’s Content Style Guide</a>.</p>



<h3 class="wp-block-heading">What can we learn?</h3>



<p>It is easy for government website content managers to write in plain language if they focus on users’ needs, levels of expertise, and interests. By prioritizing common actions and topics of interest, we can decide what information to provide, how to explain it, and where to place it for easy access.</p>



<p>Convenient ways to understand how visitors describe or conceptualize things include reviewing customer support forums and application reviews, as well as conducting a card sort. Card sort is an end-user activity that tasks participants (end-users) with organizing information cards into logical groups and naming those groups using labels that make the most sense to them. By observing how people talk about your content, you can improve the content and align it with their way of thinking. </p>



<h3 class="wp-block-heading">Key takeaway</h3>



<p>Plain language writing allows users to easily read, understand, and use the website. Other good patterns include using pronouns to speak to the audience, active instead of passive voice, and simple verb forms.</p>



<p><a href="https://www.va.gov/" target="_blank" rel="noopener">View the U.S. Department of Veterans Affairs website</a></p>



<h2 class="wp-block-heading" id="interactivity">6. Interactivity: U.S. Small Business Administration</h2>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8199" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov_-1024x624.png" alt="sba.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov_-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov_-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<h3 class="wp-block-heading">What is sba.gov?</h3>



<p>Sba.gov is a website for the U.S. Small Business Administration, a government agency that helps small business owners and entrepreneurs by providing its expertise in counseling, capital, and contracting. Its official website contains information about business guidelines, funding programs, federal contracting, local assistance, and learning platforms. </p>



<h3 class="wp-block-heading">What stands out in the U.S. Small Business Administration website?</h3>



<p>Apart from an attractive <a href="https://www.sba.gov/business-guide/10-steps-start-your-business" target="_blank" rel="noopener">business guide for first-time business founders</a>, the U.S. SBA website features a number of useful interactive tools that help new small business founders and more experienced owners alike to manage and grow their businesses. </p>



<p>But this is not all. Tools and guides are packaged in a minimalistic interface free of any unnecessary embellishment, with a very similar approach to the above-mentioned White House website. Such a simple design makes interacting with the website much more streamlined because ambiguity levels are very low, and it’s very clear which elements are a part of the interactive interface and which elements are content and information.</p>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8197" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov-04-1024x624.png" alt="sba.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov-04-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov-04-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<p>The navigation interaction is easy to use, and the interface always keeps you in the know about where you are in the website structure, including guide-specific navigation that enables sequential (step-by-step) as well as non-linear (free-form) exploration. The table of contents at the top of each page provides the visitor with a convenient overview of the different sections of each page, the feature we also spotted at the Gov.uk and Veteran Affairs websites. </p>



<p>The website features a number of convenient interaction patterns. In addition to providing multiple ways to navigate and explore, the website is optimized for keyboard use, with plenty of helpful interactions that make the keyboard navigation convenient and fast. The printable step-by-step infographics are a nice addition to the detailed instruction, and the sidebar examples expandable by the user utilize the power of storytelling to additionally explain specific steps in the guide.</p>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8195" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov-02-1024x624.png" alt="sba.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov-02-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov-02-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<p>Among many useful tools, we liked the <a href="https://www.sba.gov/local-assistance/find" target="_blank" rel="noopener">Assistance Locator</a>, <a href="https://www.sba.gov/breakevenpointcalculator" target="_blank" rel="noopener">Break-even Calculator</a>, and <a href="https://www.sba.gov/business-guide/plan-your-business/write-your-business-plan" target="_blank" rel="noopener">business plan templates</a> that are clear and simple to follow. The Assistance Locator includes administrative offices, as well as loan centers that can help you invest into the location, equipment, or other assets. </p>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8196" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov-03-1024x624.png" alt="sba.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov-03-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov-03-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<p>The Break-even Calculator helps you understand hidden costs, set revenue targets, and limit financial strain. Because the calculator asks critical questions that a startup owner might not be aware of, it can also be considered an educational tool.</p>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8198" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov-05-1024x624.png" alt="sba.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov-05-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov-05-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<p>Lastly, the SBA website offers around <a href="https://www.sba.gov/learning-center" target="_blank" rel="noopener">250 short video lessons</a>—including transcriptions—on planning, launching, managing, marketing, and growing a business. Coupled with guides, tools, stories, examples, and templates, these video lessons make SBA.gov an extremely well-rounded interactive website.</p>



<h3 class="wp-block-heading">What can we learn?</h3>



<p>Breaking down complex tasks into smaller steps and providing useful tools can help users (in this case small business founders) navigate the complexities of starting, owning, and growing a business. By providing different structured ways to interact with the website and learn information, the website visitors get a comprehensive understanding of the topic. Because of the logical organization of the content, the website can be used as a reference for startup founders and help them easily pick up where they left off during their exploration and learning process.</p>



<h3 class="wp-block-heading">Key takeaway</h3>



<p>Interactivity and interactions between the users and the website are encouraged with every interactive element, dropdown, button, and link. In successful websites, animations are used in moderation, and only to provide meaningful user interface feedback. But more than interface effects, great interactivity is accomplished when the user can interact with the system by changing their input and query to retrieve customized and personalized information.</p>



<p><a href="https://www.sba.gov/" target="_blank" rel="noopener">View the U.S. Small Business Administration website</a></p>



<h2 class="wp-block-heading" id="graphic-design-and-branding">7. Graphic design and branding: U.S. Department of State</h2>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8205" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/state.gov_-1024x624.png" alt="state.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/state.gov_-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/state.gov_-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<h3 class="wp-block-heading">What is state.gov?</h3>



<p>State.gov is a website for the United States Department of State. The Department leads America’s foreign policy and international relations. It’s mainly responsible for fighting terrorism, protecting U.S. interests abroad, and implementing foreign policy initiatives, as well as many other policy issues. </p>



<h3 class="wp-block-heading">What stands out in the U.S. Department of State website?</h3>



<p>Apart from being a portal to many useful resources for international communities, including travelers, visa applicants, job seekers, students, and businesses, state.gov is aesthetically a well-designed website. It marries the best of both design mediums — typography, layout, and color from graphic design, and interactive elements and responsive design from Web design. It is aesthetically the most sophisticated of all websites featured in this article.</p>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8204" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/state.gov-06-1024x624.png" alt="state.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/state.gov-06-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/state.gov-06-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<p>Careful typography choices, color scheme, iconography, and texture all work well together, but we especially like the high-quality graphics, photography, and illustrations used across the website, whether as persistent visual elements or as content images. Classic typographic elements like divider lines, white space, and layout breaks are combined with interactive components, like navigation, links, buttons, and tabs, to great visual effect. </p>



<p>The whole website is inviting to explore and read. We like how the interchange of different page sections feels natural, even though they use only a few distinctive elements. As with the above-mentioned Save Our Water, the website combines multiple simple elements in creative combinations, adding visual variance that is very pleasing and comfortable to look at.</p>



<figure class="wp-block-image size-large is-style-rounded"><img loading="lazy" decoding="async" width="1024" height="624" class="wp-image-8200" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/state.gov-02-1024x624.png" alt="state.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/state.gov-02-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/state.gov-02-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></figure>



<p>Branding is reinforced with colors and typography too. There is great attention to detail. For instance, the Department of State’s seal is hidden to save screen real-estate on mobile screens. This is yet another example of how branding goes beyond the logotype, something that graphic designers know all too well. One of the best-kept secrets in graphic design circles is that, to establish a visual brand, you only need a font, color, and space. </p>



<p>Another secret is keeping the logomark simple in shape and texture. Elaborate logotypes are especially troublesome on mobile screens because of the impact on legibility when reduced to such a small size. Some logotype designers mitigate this problem by providing a simplified, small-size version of the logomark that can replace the full version on small screens or low resolutions, but if the visual language for the brand is established with type and color, like in the state.gov case, the reduced logo version can be skipped.</p>



<h3 class="wp-block-heading">What can we learn?</h3>



<p>Attention to detail is important and it can be achieved and maintained at a high level of quality. But attention to detail is most noticeable if it’s applied consistently. This is where strong visual design fundamentals are important. By creating a design system that accounts for multiple different content types and layouts, the website’s aesthetic details feel like parts of a whole and leave that pleasant impression of fit-and-finish.</p>



<h3 class="wp-block-heading">Key takeaway</h3>



<p>Good quality websites pay attention to details such as optimizing the user experience on mobile or selecting appropriate and authentic graphics. For example, the state.gov website drops the seal from the header on mobile devices and offers convenient mobile navigation. Another website, <a href="http://usaspending.gov/" target="_blank" rel="noopener">usaspending.gov</a>, features an animated illustration of budgetary details in the hero area, which is both attractive and useful.</p>



<p><a class="rank-math-link" href="http://www.state.gov/" target="_blank" rel="noopener">View the U.S. Department of State website</a></p>



<h2 class="wp-block-heading">What are other examples of a great government website user experience?</h2>



<p>In conclusion, there are many great government websites out there, and we hope that the above review has given you a good idea about best practices, as well as how to review and assess government or any other websites. We encourage you to visit a few other notable examples and identify the patterns we highlighted in this article:</p>



<ol class="wp-block-list">
<li><a href="https://www.symsoftsolutions.com/sitecore/user-validated-redesign-of-the-digital-service-website-and-upgrade-from-ektron-to-sitecore-for-a-public-utility-commission/">California Public Utilities Commission</a></li>
<li><a href="https://www.symsoftsolutions.com/enterprise-mobile-applications/california-smoke-spotter-mobile-application/">Smoke Spotter Mobile Application</a></li>
<li><a href="https://www.sjgov.org/business/" target="_blank" rel="noopener">San Joaquin County Economic Development</a></li>
<li><a href="http://www.boston.gov/" target="_blank" rel="noopener">City of Boston</a></li>
<li><a href="https://www.coveredca.com/" target="_blank" rel="noopener">Covered California</a></li>
<li><a href="http://www.govt.nz/" target="_blank" rel="noopener">New Zealand Government</a></li>
<li><a href="https://www.usaspending.gov/" target="_blank" rel="noopener">USA Spending</a></li>
<li><a href="https://www.sa.gov.au/" target="_blank" rel="noopener">Information and Services for South Australians</a></li>
<li><a href="https://www.visitcalifornia.com/" target="_blank" rel="noopener">Visit California</a></li>
<li><a href="https://ccc.ca.gov/" target="_blank" rel="noopener">California Conservation Corps</a></li>
</ol>



<p>Many of the featured websites share common patterns, but they also share the same level of detail, or what we like to refer to as fit-and-finish. When all different aspects, from Information architecture, and navigation design, to page layouts, typography, color, and photography come together, the website feels engaging and easy to use. The same is true of our award-winning websites for <a href="https://www.symsoftsolutions.com/ux-design/california-energy-commission/">California Energy Commission</a>, <a href="https://www.symsoftsolutions.com/sitecore/california-community-colleges-chancellors-office/">California Community Colleges</a>, and <a href="https://www.symsoftsolutions.com/digital-experience/smud/">Sacramento Municipal Utility District</a>.</p>



<h2 class="wp-block-heading">What you should do next?</h2>



<ol class="wp-block-list">
<li><a href="https://www.linkedin.com/company/symsoft-solutions" target="_blank" rel="noopener">Follow us on LinkedIn</a> or <a href="https://www.symsoftsolutions.com/newsletter/">subscribe to our newsletter</a> for more insights like this.</li>
<li>Read the Government Website Best Practices: <a href="https://www.symsoftsolutions.com/ux-design/government-websites-best-practices-user-experience/">User Experience</a> and <a href="https://www.symsoftsolutions.com/ux-design/government-websites-best-practices-performance/">Performance</a> articles.</li>
<li><a href="https://www.symsoftsolutions.com/contact/">Contact us</a> for a free consultation. Let’s discuss your next project!  </li>
</ol>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Government Websites Best Practices: User Experience</title>
		<link>https://www.symsoftsolutions.com/ux-design/government-websites-best-practices-user-experience/</link>
		
		<dc:creator><![CDATA[SymSoft Solutions]]></dc:creator>
		<pubDate>Wed, 03 Mar 2021 18:20:00 +0000</pubDate>
				<category><![CDATA[User Experience Design]]></category>
		<category><![CDATA[Digital Experience]]></category>
		<category><![CDATA[Web Design]]></category>
		<guid isPermaLink="false">https://www.symsoftsolutions.com/?p=8690</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_5 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_24">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_42  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_22  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						<h1 class="et_pb_module_header"><span>Government Websites Best Practices: User Experience Design</span></h1>
						<div class="et_pb_blurb_description"><p><strong>Summary:</strong><span> Top-performing websites combine simple and engaging custom visual design, easy navigation, plain language writing, smooth interactions, website-optimized branding, and high-quality graphics.</span></p></div>
					</div>
				</div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div><div class="et_pb_section et_pb_section_6 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_25">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_43  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_3">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="1200" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/05/government-ux-hero-2.jpg" alt="Illustration of the top websites listed below in the article." title="government-ux-hero" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/05/government-ux-hero-2.jpg 2400w, https://www.symsoftsolutions.com/wp-content/uploads/2021/05/government-ux-hero-2-1280x640.jpg 1280w, https://www.symsoftsolutions.com/wp-content/uploads/2021/05/government-ux-hero-2-980x490.jpg 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/05/government-ux-hero-2-480x240.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2400px, 100vw" class="wp-image-8851" /></span>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_26">
				<div class="et_pb_column et_pb_column_1_5 et_pb_column_44  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_3_5 et_pb_column_45  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_23  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						<h2 class="et_pb_module_header"><span>Summary of Findings</span></h2>
						<div class="et_pb_blurb_description"><ol>
<li><strong>Top 10 performing government websites in 2021</strong> include state.gov, whitehouse.gov, sba.gov, boston.gov, coveredca.com, govt.nz, saveourwater.com, dmv.ca.gov, usaspending.gov, and canada.ca.</li>
<li><strong>Top performing websites combine best practices</strong> such as simple design, clear affordances, easy navigation, engaging visual design, plain language writing, smooth interactions, custom design, website-optimized branding, and high-quality graphics.</li>
<li><strong>Websites that earned poor ratings </strong>prioritized the content about their organization instead of user-centered information, featured automatically advancing photo carousels, missed breadcrumbs and the current page signals, tried to provide more than one content topic on most of the pages, featured generic and poor quality photography, illustrations, and icons.</li>
<li><strong>To improve your website user experience</strong>, regularly review website analytics, learn how people use the website, improve page loading speed, rewrite high-profile pages, develop an accessible design system.</li>
</ol>
<h3>Skip to the subtopic of interest:</h3>
<ol>
<li><a href="#what-are-the-areas-you-should-improve">What are the areas you should improve?</a></li>
<li><a href="#what-is-an-excellent-government-website-user-experience">Examples of excellent government website user experience design</a></li>
<li><a href="#government-user-experience-best-practices">User experience best practices</a></li>
<li><a href="#what-to-avoid-in-the-website-ux">What to avoid in the website UX</a></li>
</ol></div>
					</div>
				</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_5 et_pb_column_46  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column_empty">
				
				
				
				
				
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_28 et_pb_equal_columns et_pb_gutters1">
				<div class="et_pb_column et_pb_column_1_3 et_pb_column_47  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_2_3 et_pb_column_48 pa-inline-buttons  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_24  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						<h2 class="et_pb_module_header"><span>How does your website compare?</span></h2>
						<div class="et_pb_blurb_description"><p>Have your website evaluated by our experts and see how you compare to the industry leaders. We will review your website for free as a part of our initial consultation.</p></div>
					</div>
				</div>
			</div><div class="et_pb_button_module_wrapper et_pb_button_3_wrapper et_pb_button_alignment_phone_center et_pb_module ">
				<a class="et_pb_button et_pb_button_3 et_pb_bg_layout_dark" href="https://www.symsoftsolutions.com/contact/">Request a Free Review</a>
			</div>
			</div>
				
				
				
				
			</div><div id="what-are-the-areas-you-should-improve" class="et_pb_row et_pb_row_29">
				<div class="et_pb_column et_pb_column_1_5 et_pb_column_49  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_3_5 et_pb_column_50  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_25  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						<h2 class="et_pb_module_header"><span>What are the areas you should improve?</span></h2>
						
					</div>
				</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_5 et_pb_column_51  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column_empty">
				
				
				
				
				
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_30">
				<div class="et_pb_column et_pb_column_1_2 et_pb_column_52  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_26  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						<h3 class="et_pb_module_header"><span>Improve the content quality and appeal </span></h3>
						<div class="et_pb_blurb_description"><p>We see the most room for improvement in the areas of content quality and user interface design. Users expect content to be approachable, easy to understand, and clear. Compared to websites and mobile applications, some government websites are significantly less appealing and as such appear as not up-to-date.</p></div>
					</div>
				</div>
			</div><ul class="et_pb_module et_pb_counters et_pb_counters_0 et-waypoint et_pb_bg_layout_light">
				<li class="et_pb_counter et_pb_counter_0">
				<span class="et_pb_counter_title">Attractive: 3.43</span>
				<span class="et_pb_counter_container">
					
					
					
					
					<span class="et_pb_counter_amount" style="" data-width="68%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
					<span class="et_pb_counter_amount overlay" style="" data-width="68%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
				</span>
			</li><li class="et_pb_counter et_pb_counter_1">
				<span class="et_pb_counter_title">Content quality: 3.53</span>
				<span class="et_pb_counter_container">
					
					
					
					
					<span class="et_pb_counter_amount" style="" data-width="70%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
					<span class="et_pb_counter_amount overlay" style="" data-width="70%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
				</span>
			</li><li class="et_pb_counter et_pb_counter_2">
				<span class="et_pb_counter_title">Clean and Simple: 3.70</span>
				<span class="et_pb_counter_container">
					
					
					
					
					<span class="et_pb_counter_amount" style="" data-width="74%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
					<span class="et_pb_counter_amount overlay" style="" data-width="74%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
				</span>
			</li><li class="et_pb_counter et_pb_counter_3">
				<span class="et_pb_counter_title">Easy navigation: 3.87</span>
				<span class="et_pb_counter_container">
					
					
					
					
					<span class="et_pb_counter_amount" style="" data-width="77%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
					<span class="et_pb_counter_amount overlay" style="" data-width="77%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
				</span>
			</li><li class="et_pb_counter et_pb_counter_4">
				<span class="et_pb_counter_title">Interaction: 4.14</span>
				<span class="et_pb_counter_container">
					
					
					
					
					<span class="et_pb_counter_amount" style="" data-width="82%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
					<span class="et_pb_counter_amount overlay" style="" data-width="82%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
				</span>
			</li>
			</ul><div class="et_pb_module et_pb_blurb et_pb_blurb_27  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						
						<div class="et_pb_blurb_description">The chart above shows the average ratings for 300+ government websites across different rating categories evaluated at design competitions and derived from <a href="https://measuringu.com/product/suprq/" target="_blank" rel="noopener">SUPR-Q (Standardized User Experience Percentile Rank Questionnaire)</a>.</div>
					</div>
				</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_2 et_pb_column_53  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_28  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						<h3 class="et_pb_module_header"><span>Implement best practices: plain language and modern design </span></h3>
						<div class="et_pb_blurb_description"><p>Plain language writing was implemented in only 9% of the reviewed websites. When websites are not written in plain language, a portion of the audience can’t accurately follow instructions or complete digital transactions. The visual design should be modern and follow the mainstream website aesthetics expectations.</p></div>
					</div>
				</div>
			</div><ul class="et_pb_module et_pb_counters et_pb_counters_1 et-waypoint et_pb_bg_layout_light">
				<li class="et_pb_counter et_pb_counter_5">
				<span class="et_pb_counter_title">Plain language writing: 9%</span>
				<span class="et_pb_counter_container">
					
					
					
					
					<span class="et_pb_counter_amount" style="" data-width="9%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
					<span class="et_pb_counter_amount overlay" style="" data-width="9%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
				</span>
			</li><li class="et_pb_counter et_pb_counter_6">
				<span class="et_pb_counter_title">Modern design: 31%</span>
				<span class="et_pb_counter_container">
					
					
					
					
					<span class="et_pb_counter_amount" style="" data-width="31%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
					<span class="et_pb_counter_amount overlay" style="" data-width="31%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
				</span>
			</li><li class="et_pb_counter et_pb_counter_7">
				<span class="et_pb_counter_title">Custom Design: 32%</span>
				<span class="et_pb_counter_container">
					
					
					
					
					<span class="et_pb_counter_amount" style="" data-width="32%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
					<span class="et_pb_counter_amount overlay" style="" data-width="32%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
				</span>
			</li><li class="et_pb_counter et_pb_counter_8">
				<span class="et_pb_counter_title">Effective use of photography: 52%</span>
				<span class="et_pb_counter_container">
					
					
					
					
					<span class="et_pb_counter_amount" style="" data-width="52%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
					<span class="et_pb_counter_amount overlay" style="" data-width="52%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
				</span>
			</li><li class="et_pb_counter et_pb_counter_9">
				<span class="et_pb_counter_title">Distinctive branding: 53%</span>
				<span class="et_pb_counter_container">
					
					
					
					
					<span class="et_pb_counter_amount" style="" data-width="53%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
					<span class="et_pb_counter_amount overlay" style="" data-width="53%"><span class="et_pb_counter_amount_number"><span class="et_pb_counter_amount_number_inner"></span></span></span>
				</span>
			</li>
			</ul><div class="et_pb_module et_pb_blurb et_pb_blurb_29  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						
						<div class="et_pb_blurb_description"><p>The chart above shows the percentage of 300+ government websites that follow standard user experience and visual communications design best practices.</p></div>
					</div>
				</div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_32 et_pb_equal_columns et_pb_gutters1">
				<div class="et_pb_column et_pb_column_1_3 et_pb_column_54  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_2_3 et_pb_column_55  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_cta_2 et_pb_promo  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_promo_description"><h2 class="et_pb_module_header">Read more content like this.</h2><div><p>We write about <a href="https://www.symsoftsolutions.com/ux-design/government-websites-best-practices-performance/">page speed performance</a>, accessibility, usability, a variety of technology topics and more. Subscribe to our newsletter and <a href="https://www.linkedin.com/company/symsoft-solutions" target="_blank" rel="noopener">connect with us on LinkedIn</a> to receive future updates.</p></div></div>
				<div class="et_pb_button_wrapper"><a class="et_pb_button et_pb_promo_button" href="https://www.symsoftsolutions.com/newsletter/">Subscribe to our Newsletter</a></div>
			</div>
			</div>
				
				
				
				
			</div><div id="what-is-an-excellent-government-website-user-experience" class="et_pb_row et_pb_row_33">
				<div class="et_pb_column et_pb_column_1_5 et_pb_column_56  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_3_5 et_pb_column_57  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_30  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						<h2 class="et_pb_module_header"><span>Examples of excellent government website user experience design</span></h2>
						<div class="et_pb_blurb_description"><p><span style="font-size: 16px;">In February 2021, we evaluated over 300 California, U.S., and international government websites for user experience using a derived methodology that combines <a href="https://measuringu.com/product/suprq/" target="_blank" rel="noopener">SUPR-Q (Standardized User Experience Percentile Rank Questionnaire)</a> and evaluation frameworks used in web and interactive design competitions, such as <a href="https://www.iadas.net/webbycriteria/" target="_blank" rel="noopener">IADAS’ Webby Awards</a>.</span></p>
<p><span style="font-size: 16px;"><span>We looked at the content quality, interaction, ease of navigation, attractiveness, cleanliness, and simplicity of the layout. We scored the five metrics on a scale from 1–5 for a maximum of 25 total points.</span></span></p></div>
					</div>
				</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_5 et_pb_column_58  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column_empty">
				
				
				
				
				
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_34">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_59  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_31  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						
						<div class="et_pb_blurb_description"><p><strong style="font-size: 24px;">In our evaluation of over 300 government websites, we discovered that out of a maximum of 25 points across five criteria, about 47% of tested government websites score 20 points or above. This is good news!</strong></p>
<p><span></span></p></div>
					</div>
				</div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_35">
				<div class="et_pb_column et_pb_column_1_5 et_pb_column_60  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_3_5 et_pb_column_61  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_32  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						
						<div class="et_pb_blurb_description"><!-- /divi:heading --></p>
<p><span style="font-size: 16px;">We also assessed the level of visual design and if websites featured custom design outside of the standard template. We noticed details such as a modern design, distinctive branding, and authentic and engaging photography. We wanted to evaluate how, if at all, a more custom solution has an impact on the user experience scores, and if the two are correlated. (Turns out they are: websites that received high ratings from our experts also implement user experience best practices.)</span></p></div>
					</div>
				</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_5 et_pb_column_62  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column_empty">
				
				
				
				
				
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_36">
				<div class="et_pb_column et_pb_column_1_3 et_pb_column_63  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_33  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					<div class="et_pb_main_blurb_image"><a href="http://www.state.gov" target="_blank" rel="noopener"><span class="et_pb_image_wrap et_pb_only_image_mode_wrap"><img loading="lazy" decoding="async" width="2880" height="1754" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/state.gov_.png" alt="state.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/state.gov_.png 2880w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/state.gov_-1280x780.png 1280w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/state.gov_-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/state.gov_-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2880px, 100vw" class="et-waypoint et_pb_animation_off et_pb_animation_off_tablet et_pb_animation_off_phone wp-image-8205" /></span></a></div>
					<div class="et_pb_blurb_container">
						<h3 class="et_pb_module_header"><a href="http://www.state.gov" target="_blank" rel="noopener">U.S. Department of State</a></h3>
						<div class="et_pb_blurb_description"><p><span>A portal to many useful resources for international communities, including travelers, visa applicants, job seekers, students, and businesses, state.gov is aesthetically a well-designed website — combining typography, layout, and color from graphic design, with interactive elements and mobile-friendly design.</span></p></div>
					</div>
				</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_3 et_pb_column_64  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_34  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					<div class="et_pb_main_blurb_image"><a href="http://whitehouse.gov" target="_blank" rel="noopener"><span class="et_pb_image_wrap et_pb_only_image_mode_wrap"><img loading="lazy" decoding="async" width="2880" height="1754" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/whitehouse.gov_.png" alt="whitehouse.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/whitehouse.gov_.png 2880w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/whitehouse.gov_-1280x780.png 1280w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/whitehouse.gov_-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/whitehouse.gov_-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2880px, 100vw" class="et-waypoint et_pb_animation_off et_pb_animation_off_tablet et_pb_animation_off_phone wp-image-8211" /></span></a></div>
					<div class="et_pb_blurb_container">
						<h3 class="et_pb_module_header"><a href="http://whitehouse.gov" target="_blank" rel="noopener">White House</a></h3>
						<div class="et_pb_blurb_description"><p><span>The White House website is straightforward and easy on the eye. Information is broken down into bite-size pieces and laid out in a streamlined single-column layout. This makes it easy for visitors to read the information on a range of devices, from mobile phones to tablets and large desktop monitors. </span></p></div>
					</div>
				</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_3 et_pb_column_65  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_35  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					<div class="et_pb_main_blurb_image"><a href="http://sba.gov" target="_blank" rel="noopener"><span class="et_pb_image_wrap et_pb_only_image_mode_wrap"><img loading="lazy" decoding="async" width="2880" height="1754" src="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov-05.png" alt="sba.gov screenshot" srcset="https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov-05.png 2880w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov-05-1280x780.png 1280w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov-05-980x597.png 980w, https://www.symsoftsolutions.com/wp-content/uploads/2021/03/sba.gov-05-480x292.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 2880px, 100vw" class="et-waypoint et_pb_animation_off et_pb_animation_off_tablet et_pb_animation_off_phone wp-image-8198" /></span></a></div>
					<div class="et_pb_blurb_container">
						<h3 class="et_pb_module_header"><a href="http://sba.gov" target="_blank" rel="noopener">Small Business Administration</a></h3>
						<div class="et_pb_blurb_description"><p><span>Apart from an attractive </span><a href="https://www.sba.gov/business-guide/10-steps-start-your-business" target="_blank" rel="noopener">business guide for first-time business founders</a><span>, the U.S. SBA website features a number of useful interactive tools that help new small business founders and more experienced owners alike to manage and grow their businesses.</span></p></div>
					</div>
				</div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_with_border et_pb_row et_pb_row_37">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_66  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_36  et_pb_text_align_center  et_pb_blurb_position_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						
						<div class="et_pb_blurb_description"><p><strong>Detailed analysis:</strong> <a href="/ux-design/7-government-websites-with-the-best-ux-design/">Government Websites with the Best UX Design</a></p></div>
					</div>
				</div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_38">
				<div class="et_pb_column et_pb_column_1_2 et_pb_column_67  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div id="government-user-experience-best-practices" class="et_pb_module et_pb_blurb et_pb_blurb_37  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					<div class="et_pb_main_blurb_image"><span class="et_pb_image_wrap"><span class="et-waypoint et_pb_animation_off et_pb_animation_off_tablet et_pb_animation_off_phone et-pb-icon et-pb-icon-circle">&#x52;</span></span></div>
					<div class="et_pb_blurb_container">
						<h2 class="et_pb_module_header"><span>UX best practices</span></h2>
						<div class="et_pb_blurb_description"><p>The top-performing websites above combine best practices, such as:</p>
<ol>
<li><strong>Simple design.</strong> The simple design usually comes off as attractive, unless oversimplified. But more importantly, using fewer attention-grabbing elements on the page reduces memory strain and choice overload, making the communication and messaging clear and easy to follow.</li>
<li><strong>Clear affordances.</strong> In the user interaction world, affordances are hints and cues on how an interface element can be used. Successful websites offer many affordances throughout the page, such as navigation cues, interface graphics, and linguistic and pattern affordances.</li>
<li><strong>Easy navigation. </strong>Easy navigation steers the user toward the correct information they are looking for. This includes providing breadcrumbs and intuitive dropdown options, as well as matching navigation and link labels to destination page titles. On the topic of easy navigation, as long as the user can follow a clear <a href="https://www.nngroup.com/articles/information-scent/" target="_blank" rel="noopener">information scent</a>, they don’t mind exploring multiple pages going beyond the never-proven three-clicks rule.</li>
<li><strong>Engaging visual design</strong>. In most of our top performers, visual design is accomplished by appropriate iconography and authentic photography. A good visual design directs the user to the task they need to accomplish and contributes positively to content findability.</li>
<li><strong>Plain language writing</strong> allows users to easily read, understand, and use the website. Good patterns include using pronouns to speak to the audience, active instead of passive voice, and simple verb forms.</li>
<li><strong>Smooth interactions </strong>between the users and the website with every interactive element, dropdown, button, and link. In successful websites, animations are used in moderation, and only to provide meaningful user interface feedback.</li>
<li><strong>Custom modern design, website-optimized branding, and high-quality graphics.</strong> Top performers pay attention to details such as optimizing the user experience on mobile or selecting authentic graphics. For example, the <a href="http://state.gov/" target="_blank" rel="noopener">state.gov</a> website drops the seal from the header on mobile devices and offers convenient mobile navigation. The <a href="http://usaspending.gov/" target="_blank" rel="noopener">usaspending.gov</a><strong> </strong>website features an animated illustration of budgetary details in the hero area, which is both attractive and useful.</li>
</ol></div>
					</div>
				</div>
			</div>
			</div><div class="et_pb_column et_pb_column_1_2 et_pb_column_68  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div id="what-to-avoid-in-the-website-ux" class="et_pb_module et_pb_blurb et_pb_blurb_38  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					<div class="et_pb_main_blurb_image"><span class="et_pb_image_wrap"><span class="et-waypoint et_pb_animation_off et_pb_animation_off_tablet et_pb_animation_off_phone et-pb-icon et-pb-icon-circle">&#x73;</span></span></div>
					<div class="et_pb_blurb_container">
						<h2 class="et_pb_module_header"><span>What to avoid in the website UX</span></h2>
						<div class="et_pb_blurb_description">Websites that earned poor ratings across one or more metrics:</p>
<ol>
<li><strong>Prioritized the content about their organization</strong>, and its mission, vision, and successes, instead of promoting user-oriented content and access to digital services.</li>
<li><strong>Featured automatically advancing photo carousels</strong> that we couldn’t pause, missed interactive states such as hover (mouseover), active, or current page links, and surprised us with an unexpected result of an interaction.</li>
<li><strong>Missed breadcrumbs and the current page signals</strong>, buried links to external websites in the on-site navigation, featured difficult-to-use dropdowns and mega menus, missed signals for external links.</li>
<li><strong>Tried to provide more than one content topic on most of the pages</strong>, had unnecessary highlights on every page of the website, and displayed insufficient typographic hierarchy and contrast, making it difficult to read long passages of text.</li>
<li><strong>Featured generic and poor quality photography, illustrations, and icons</strong> that don’t provide additional meaning. Many times icons are used in place of bullet points, which adds cognitive strain to the user as they try to understand the meaning of the icon. Another trend that we noticed on many California state websites is the use of the same photos of the Golden Gate Bridge and other iconic natural beauties. Despite such vibrant photos, users might be confused about <em>which</em> state website they just visited.</li>
</ol></div>
					</div>
				</div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_with_border et_pb_row et_pb_row_39">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_69  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_39  et_pb_text_align_center  et_pb_blurb_position_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						
						<div class="et_pb_blurb_description"><p><strong>Read next:</strong> <a href="/ux-design/five-simple-ux-improvements/">Five Simple UX Improvements</a> — or — <a href="/ux-design/why-government-website-ux-matters/">Why Government Website UX Matters?</a></p></div>
					</div>
				</div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_41 et_pb_equal_columns et_pb_gutters1">
				<div class="et_pb_column et_pb_column_1_3 et_pb_column_70  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty">
				
				
				
				
				
			</div><div class="et_pb_column et_pb_column_2_3 et_pb_column_71  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_blurb et_pb_blurb_40  et_pb_text_align_left  et_pb_blurb_position_top et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_blurb_content">
					
					<div class="et_pb_blurb_container">
						<h2 class="et_pb_module_header"><span>We can help.</span></h2>
						<div class="et_pb_blurb_description"><p>We have <a href="https://www.symsoftsolutions.com/content-services/california-community-colleges-design-lab/">extensive experience in setting up organizations for user-centered design</a> and improving their digital assets. For all questions, please <a href="http://symsoftsolutions.com/contact/">reach out to our team of experts</a>. Our favorite approach to solving user experience problems is <a href="https://www.symsoftsolutions.com/web-design/web-design-brainstorming-through-a-google-design-sprint/" style="font-size: 16px;">Design Sprints</a>, which we utilized in award-winning projects developed for SMUD Utility, California Community Colleges, and the California Energy Commission.</p></div>
					</div>
				</div>
			</div><div class="et_pb_button_module_wrapper et_pb_button_4_wrapper et_pb_button_alignment_left et_pb_module ">
				<a class="et_pb_button et_pb_button_4 et_pb_bg_layout_light" href="https://www.symsoftsolutions.com/contact/">Contact Us for a Free Consultation</a>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Government Websites Best Practices: Performance</title>
		<link>https://www.symsoftsolutions.com/ux-design/government-websites-best-practices-performance/</link>
		
		<dc:creator><![CDATA[SymSoft Solutions]]></dc:creator>
		<pubDate>Fri, 05 Feb 2021 02:22:43 +0000</pubDate>
				<category><![CDATA[User Experience Design]]></category>
		<category><![CDATA[Web Design]]></category>
		<guid isPermaLink="false">https://www.symsoftsolutions.com/?p=7936</guid>

					<description><![CDATA[Numerous studies in the private sector have demonstrated that website speed performance is a critical factor to improved conversions due to a more convenient user experience. Although government websites usually don’t feature e-commerce functionalities, the website visitors can still benefit from fast content delivery and digital transaction speed, especially in self-service pages.]]></description>
										<content:encoded><![CDATA[
<p>Numerous studies in the private sector have demonstrated that website speed performance is a critical factor to improved conversions due to a more convenient user experience. Although government websites usually don’t feature e-commerce functionalities, the website visitors can still benefit from fast content delivery and digital transaction speed, especially in self-service pages.</p>



<p>By approaching the <a href="https://www.computerweekly.com/news/252486191/Covid-19-accelerates-UK-digital-transformation-efforts-by-over-five-years" class="rank-math-link" target="_blank" rel="noopener">digital transformation project</a> with the business mindset, the award-winning <a href="https://gds.blog.gov.uk/2015/10/23/how-digital-and-technology-transformation-saved-1-7bn-last-year/" class="rank-math-link" target="_blank" rel="noopener">GOV.UK website saved £61.5 million in 2015</a>. They focused on streamlining digital transactions in order to help users accomplish as many digital transactions as possible online, instead of visiting offices and filling out paper forms. In the <a href="https://assets.publishing.service.gov.uk/government/uploads/system/uploads/attachment_data/file/590199/Government_Transformation_Strategy.pd" class="rank-math-link" target="_blank" rel="noopener">Gove</a><a href="https://assets.publishing.service.gov.uk/government/uploads/system/uploads/attachment_data/file/590199/Government_Transformation_Strategy.pdf" class="rank-math-link" target="_blank" rel="noopener">rnment Transformation Strategy</a> (PDF), the government of the United Kingdom stated:</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p><em>Services must work for the whole of society – not just the 77% of people who have basic digital skills, but for the 12.6 million adults who don’t. This is particularly important as financial exclusion and digital exclusion often go hand in hand.</em></p></blockquote>



<h2 class="wp-block-heading"><strong>Improving accessibility and page speed performance in turn improves audience reach and digital service adoption.</strong></h2>



<p>A few examples of digital services that benefit from page speed improvement include:</p>



<ol class="wp-block-list"><li>Online account registration and switching to paperless correspondence.</li><li>Vehicle registration and driver’s license renewal.</li><li>Benefit or retirement account self-management.</li><li>Consumer complaint filing and resolution.</li><li>Business registration, and business license applications and renewals.</li></ol>



<p>So, let’s talk about how to improve performance of your carefully crafted digital services.</p>



<p>In January 2021, we evaluated over 300 California, U.S., and international government websites for page speed performance using <a href="https://developers.google.com/speed/pagespeed/insights/" target="_blank" rel="noopener">Google’s PageSpeed Insights</a>, which measures website performance on a scale of 0–100. As you probably assumed, 100 is the best score, and one that is beyond reach even for the most popular websites out there. Go ahead and test a few websites that you visited this week to get a better idea about how they perform, and to see how various scores correlate with actual usage.</p>



<p>In our test, we discovered that <strong>about 3% of tested government websites score 90–100 points for mobile performance, and 18% of government websites score 90–100 points for desktop performance</strong> (median mobile: 50, average mobile: 38, median desktop: 64, average desktop: 68).&nbsp;</p>



<p>Given the median and average values above, and the fact that many popular non-government websites’ scores linger in the 30s for mobile and 50s for desktop performance, it’s worth looking at our top performers&#8217; examples to see what they did right.&nbsp;</p>



<p>Continue reading below to learn why performance matters, and how to immediately improve your website’s performance with a few practical tips. In this article, we will cover:</p>



<ol class="wp-block-list"><li><a href="#why-does-website-performance-matter" class="rank-math-link">Why does website performance matter?</a></li><li><a href="#what-is-an-excellent-government-website-performance" class="rank-math-link">What is an excellent level of governmental website performance?</a></li><li><a href="#five-simple-improvements-for-better-website-performance" class="rank-math-link">Five simple improvements for better website performance.</a></li></ol>



<p><em>Please note that when we evaluate page speed performance, we do not cover the quality of accessibility, interface design, usability, content design, or information architecture. We plan to cover these other topics in separate articles. <a href="https://www.symsoftsolutions.com/newsletter/" class="rank-math-link">Subscribe to our newsletter</a> and </em><a href="https://www.linkedin.com/company/symsoft-solutions" target="_blank" rel="noopener"><em>connect with us on LinkedIn</em></a><em> to receive future updates.</em></p>



<h2 class="wp-block-heading" id="why-does-website-performance-matter"><strong>Why does website performance matter?</strong></h2>



<p>Time is a universal commodity, so everyone values fast performance in every aspect of their lives. Whether streaming HD video, waiting in line in a grocery store, or trying to accomplish a task on the website, getting things done as quickly as possible is an implicit user expectation.</p>



<p>But what are some practical reasons? Years of observation of conversions in e-commerce combined with studies about how people perceive the speed of the websites and internet content availability in general, demonstrate that speed performance does benefit the users and the organizations.&nbsp;</p>



<p>Human-computer interaction research shows that speed perception thresholds are really short, at about 50–300 ms&nbsp;(0.05 to 0.3 seconds). For example, Dr. Lindgaard showed that <a href="https://www.tandfonline.com/doi/abs/10.1080/01449290500330448" class="rank-math-link" target="_blank" rel="noopener">people can make a decision about design quality based on a 50 ms long exposure to a picture.</a> With such fast perception, it is no wonder that people cannot wait more than a couple of seconds before they lose patience and abandon a website.</p>



<p>Here are a few examples:</p>



<ul class="wp-block-list"><li>Professor Ramesh Sitaraman’s study shows that <a href="https://people.cs.umass.edu/~ramesh/Site/HOME_files/imc208-krishnan.pdf" target="_blank" rel="noopener">people begin abandoning videos if they don’t load within two seconds</a> (PDF). This finding impacts not only retail websites, but also government websites that are providing video guides that walk the audience through a self-service process.</li><li>Akamai reported that page load times <a href="https://www.akamai.com/us/en/multimedia/documents/report/akamai-state-of-online-retail-performance-2017-holiday.pdf" target="_blank" rel="noopener">significantly impact conversion rates</a> (PDF). 53% of visits to mobile sites are abandoned if pages take longer than 3 seconds to load.</li><li>For Walmart, website speed correlates to business metrics. Walmart.com’s engineers found that <a href="https://www.slideshare.net/devonauerswald/walmart-pagespeedslide#37" target="_blank" rel="noopener">conversion rates declined as load times increased</a>. The average site load speed was significantly lower for the converted population (3.22 seconds) than the non-covered population (6.03 seconds).</li><li>In 2018, Google published <a href="https://www.thinkwithgoogle.com/marketing-strategies/app-and-mobile/mobile-page-speed-new-industry-benchmarks/" target="_blank" rel="noopener">industry benchmarks for mobile page speed performance</a>. Their analysis found that as page load time goes from 1 to 5 seconds, the bounce probability increases to 90%.</li><li>Finally, <a href="https://developers.google.com/search/blog/2010/04/using-site-speed-in-web-search-ranking" target="_blank" rel="noopener">Google Search uses website speed performance as a signal</a> when ranking websites. It is not the most important Google Search signal, but, all else being equal, faster websites are ranked better.</li></ul>



<p>Considering the above research, it is clear that government websites’ improved performance can broadcast critical information to constituents faster, help them more efficiently utilize government digital services, reduce the server and data bandwidth costs, and increase the likelihood of users completing the goals around which the sites are built. Also, for millions of Californians, faster websites mean more equitable access to digital services, especially in communities where blazing internet speeds are not accessible or affordable.</p>



<h2 class="wp-block-heading" id="what-is-an-excellent-government-website-performance"><strong>What is an excellent level of government website performance?</strong></h2>



<p>When evaluating website performance, we use two industry-standard tests, <a href="https://developers.google.com/speed/pagespeed/insights/" target="_blank" rel="noopener">Google PageSpeed Insights</a>, and the <a href="https://webpagetest.org/easy.php" target="_blank" rel="noopener">WebPageTest</a>. Both come with actionable results accompanied by practical instructions on what to improve to achieve better performance. Another often used tool is <a href="https://web.dev/measure/" target="_blank" rel="noopener">Google’s Lighthouse audit</a>, that evaluates specific metrics such as <a href="https://web.dev/interactive/" target="_blank" rel="noopener">TTI (time-to-interactive)</a>, which is useful in optimizing web and mobile applications.</p>



<p>Specific to government website performance, any website that measures in the 80s and 90s for either metric in Google PageSpeed Insights can be considered a well-optimized website. When evaluating performance, we can stop there and follow the guidelines provided in the PageSpeed Insights results. However, the WebPageTest features a more elaborate scoring system that grades the implementation of individual best practices and provides the actual loading times. The most significant load time metric in WebPageTest is the Speed Index, the average time it takes for a website to display visible parts of the page.&nbsp;</p>



<p>Our test’s top performers achieved a <strong>Speed Index of 3–4 seconds, and fully loaded in 8–10 seconds</strong> over a <strong>Regular 3G Mobile</strong> test configuration.</p>



<h3 class="wp-block-heading"><strong>Top 10 performing government websites</strong></h3>



<figure class="wp-block-table"><table><thead><tr><th class="has-text-align-left" data-align="left">Website</th><th class="has-text-align-center" data-align="center">PageSpeed Insights Mobile Performance</th><th class="has-text-align-center" data-align="center">PageSpeed Insights Desktop Performance</th></tr></thead><tbody><tr><td class="has-text-align-left" data-align="left"><a href="http://victims.ca.gov" class="rank-math-link" target="_blank" rel="noopener">victims.ca.gov</a></td><td class="has-text-align-center" data-align="center">97</td><td class="has-text-align-center" data-align="center">98</td></tr><tr><td class="has-text-align-left" data-align="left"><a href="http://alpha.ca.gov" class="rank-math-link" target="_blank" rel="noopener">alpha.ca.gov</a></td><td class="has-text-align-center" data-align="center">95</td><td class="has-text-align-center" data-align="center">99</td></tr><tr><td class="has-text-align-left" data-align="left"><a href="http://sco.ca.gov" class="rank-math-link" target="_blank" rel="noopener">sco.ca.gov</a></td><td class="has-text-align-center" data-align="center">93</td><td class="has-text-align-center" data-align="center">98</td></tr><tr><td class="has-text-align-left" data-align="left"><a href="http://csm.ca.gov" class="rank-math-link" target="_blank" rel="noopener">csm.ca.gov</a></td><td class="has-text-align-center" data-align="center">92</td><td class="has-text-align-center" data-align="center">94</td></tr><tr><td class="has-text-align-left" data-align="left"><a href="http://clrc.ca.gov" class="rank-math-link" target="_blank" rel="noopener">clrc.ca.gov</a></td><td class="has-text-align-center" data-align="center">91</td><td class="has-text-align-center" data-align="center">96</td></tr><tr><td class="has-text-align-left" data-align="left"><a href="http://covid19.ca.gov" class="rank-math-link" target="_blank" rel="noopener">covid19.ca.gov</a></td><td class="has-text-align-center" data-align="center">90</td><td class="has-text-align-center" data-align="center">99</td></tr><tr><td class="has-text-align-left" data-align="left"><a href="http://cdcr.ca.gov" class="rank-math-link" target="_blank" rel="noopener">cdcr.ca.gov</a></td><td class="has-text-align-center" data-align="center">90</td><td class="has-text-align-center" data-align="center">99</td></tr><tr><td class="has-text-align-left" data-align="left"><a href="http://www.cfcc.ca.gov" class="rank-math-link" target="_blank" rel="noopener">cfcc.ca.gov</a></td><td class="has-text-align-center" data-align="center">81</td><td class="has-text-align-center" data-align="center">89</td></tr><tr><td class="has-text-align-left" data-align="left"><a href="http://mywaterquality.ca.gov" class="rank-math-link" target="_blank" rel="noopener">mywaterquality.ca.gov</a></td><td class="has-text-align-center" data-align="center">81</td><td class="has-text-align-center" data-align="center">86</td></tr><tr><td class="has-text-align-left" data-align="left"><a href="http://ssa.gov" class="rank-math-link" target="_blank" rel="noopener">ssa.gov</a></td><td class="has-text-align-center" data-align="center">78</td><td class="has-text-align-center" data-align="center">93</td></tr></tbody></table></figure>



<p>The top-performing websites above combine server and infrastructure-based best practices, such as:</p>



<ul class="wp-block-list"><li><strong>Keep-alive enabled.</strong> This means that they enable persistent connection between the browser and the server, reducing CPU and memory load on the server, allowing for faster delivery of content to website visitors.</li><li><strong>Compressed data transfer.</strong> Enables data size reduction by compressing data before transferring over the internet from the server to the browser. Compressed files have a smaller file size, which means less bandwidth is needed to move them from the server to the browser.</li><li><strong>Compressed images.</strong> Same benefits as compressed data transfer, except that the images can be stored in an already compressed state on the server. This can be achieved through automated compressing on the server, or by applying content authoring best practices (see below).</li><li><strong>Effective use of a Content Delivery Network (CDN).</strong> Typically, each web page is composed of a few files, such as the main HTML file, CSS, JavaScript, and images. To render the interface that the visitor sees, the browser needs to download all these files. To optimize this multi-threaded download process, we can serve website files through a CDN. This results in more servers sending files to the visitor at the same time, distributing the request.</li></ul>



<p>While upgrading to a new platform and technology or switching to a cloud server infrastructure may improve performance, you can improve your website’s performance within your routine website management workflows.</p>



<h2 class="wp-block-heading" id="five-simple-improvements-for-better-website-performance"><strong>Five simple improvements for better website performance</strong></h2>



<ol class="wp-block-list"><li><strong>Optimize photography.</strong> Before uploading photographs and illustrations to the website, ensure that images are correctly sized and cropped. For example, hero images should be as wide as the website layout for full effect. News / blog feed thumbnails can be reduced to a smaller size, significantly improving visitors’ loading speeds. Simple tricks to compress images include converting PNG images into the JPG format and running images through image optimization tools, such as <a href="https://tinyjpg.com/" target="_blank" rel="noopener">TinyJPG</a> (available as a plugin in popular content management systems), <a href="https://imagecompressor.com/" target="_blank" rel="noopener">Image Compressor</a>, or if this is available to you, Adobe Photoshop’s “Save for Web” option.</li><li><strong>Combine multiple CSS and JavaScript files into one of each type.</strong> You probably regularly update your website’s CSS and JavaScript libraries to the latest versions. Next time the libraries are due for an upgrade, combine them into single CSS and JavaScript files. Combining files will reduce the number of requests to the server and the number of files the visitor’s browser needs to download, thus reducing latency.</li><li><strong>Minify and compress HTML, CSS, and JavaScript files.</strong> After combining files into a single file of each file type, use that opportunity to minify code. Most of the popular code libraries, such as <a href="https://getbootstrap.com/" target="_blank" rel="noopener">Bootstrap</a> or <a href="https://jquery.com/" target="_blank" rel="noopener">jQuery</a>, already come with prepackaged minified versions, so it might be just a matter of replacing the current version with the minified one. For extra performance, utilize <a href="https://www.bootstrapcdn.com/" target="_blank" rel="noopener">Bootstrap CDN</a> and <a href="https://code.jquery.com/" target="_blank" rel="noopener">jQuery CDN</a> options, which allow you to serve these files from a CDN (content delivery network) server instead of hosting them on your website. For any visitors who have downloaded the CDN version on another website, they’ll already have these files downloaded when visiting your website.</li><li><strong>Disable plug-ins and features you don’t use.</strong> Regular pruning of the add-on features and functionalities may also help. Removing commonly overseen elements, such as map APIs,&nbsp; leftover YouTube code, legacy analytics code, or captcha code in pages that don’t include web forms can dramatically optimize web pages that don’t utilize these case-by-case functionalities.</li><li><strong>Enable caching or install a caching plug-in. </strong>If your content management system or web server supports caching, ensure that caching is enabled and properly configured. While caching won’t help visitors on their first visit, it will improve page loading speeds for visitors who frequently revisit your website.</li></ol>



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



<p>Website performance is easy to improve but also easy to miss. We hope that this simple list helps you understand how to improve your website’s performance, allowing&nbsp; for faster access to information and the ability to better reach your audience.</p>



<p>For all questions or advice on website performance, please <a href="http://symsoftsolutions.com/contact/" class="rank-math-link"><strong>reach out to our team of experts</strong></a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Design Systems for Enterprises (Benefits, Challenges, and Best Practices)</title>
		<link>https://www.symsoftsolutions.com/ux-design/design-systems-for-enterprises-benefits-challenges-and-best-practices/</link>
		
		<dc:creator><![CDATA[SymSoft Solutions]]></dc:creator>
		<pubDate>Wed, 12 Feb 2020 08:53:58 +0000</pubDate>
				<category><![CDATA[User Experience Design]]></category>
		<guid isPermaLink="false">https://www.symsoftsolutions.com/?p=4434</guid>

					<description><![CDATA[Design systems have emerged as a popular tool for organizations in recent years because of their ability to support business goals and communicate brand values by providing a unified and consistent design language to work with. With this integrated set of tools and guidelines, organizations are able to effectively utilize design across the entire product line, making decisions easier, saving more time, and optimizing the end-user experience. ]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_7 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_42">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_72  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner">Design systems have emerged as a popular tool for organizations in recent years because of their ability to support business goals and communicate brand values by providing a unified and consistent design language to work with. With this integrated set of tools and guidelines, organizations are able to effectively utilize design across the entire product line, making decisions easier, saving more time, and optimizing the end-user experience.</p>
<h2>What are Design Systems?</h2>
<p>InVision’s <strong><a href="https://www.designbetter.co/design-systems-handbook" target="_blank" rel="noopener">Design Systems Handbook</a></strong> defines a design system as <i>“a collection of reusable components, guided by clear standards, that can be assembled to build any number of applications.”</i></p>
<p>Although this definition sounds clear and simple, it is still easy to confuse a design system with a pattern library or a style guide. So, what are the differences?</p>
<ol>
<li><b>A pattern library</b>, in a literal sense, is a collection (or a library) of design patterns and user interface components that are used to build an application or a website.</li>
<li><b>A style guide </b>refers to documentations that define the basics in a design system — such as brand language, or examples of use for different interfaces and content elements.</li>
<li><b>A design system</b> is a combination of these two, but it also goes further by including design guidelines and principles to support better user experience, facilitate healthy design system development, and organizational acceptance.</li>
</ol>
<p>&nbsp;</p>
<p><div id="attachment_4449" style="width: 1610px" class="wp-caption alignnone"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-4449" class="wp-image-4449 size-full" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/Design-Systems.png" alt="A diagram of design system elements." width="1600" height="1200" /><p id="caption-attachment-4449" class="wp-caption-text">Style guides, pattern libraries, and design rules are all part of the design system.</p></div></p>
<h3>Examples of Design Systems</h3>
<ul>
<li><a href="https://www.carbondesignsystem.com/" target="_blank" rel="noopener">Carbon Design System (IBM)</a></li>
<li><a href="https://material.io/design/" target="_blank" rel="noopener">Material Design (Google)</a></li>
<li><a href="https://www.lightningdesignsystem.com/" target="_blank" rel="noopener">Lightning Design System (Salesforce)</a></li>
<li><a href="https://designsystem.digital.gov/" target="_blank" rel="noopener">United States Web Design System (United States)</a></li>
<li style="font-weight: 400;"><a href="https://design-system.service.gov.uk/" target="_blank" rel="noopener">Gov.uk Design System (United Kingdom)</a></li>
</ul>
<p>&nbsp;</p>
<p><div id="attachment_4513" style="width: 1010px" class="wp-caption alignnone"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-4513" class="size-full wp-image-4513" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/salesforce-design-system.png" alt="Salesforce’s Lightning Design System" width="1000" height="606" /><p id="caption-attachment-4513" class="wp-caption-text">Salesforce’s Lightning Design System has a clearly structured menu consisting of design guidelines, accessibility guidelines, component library, utilities, etc.</p></div></p>
<h3>Examples of Style Guides</h3>
<ul>
<li><a href="https://brand.cccco.edu/" target="_blank" rel="noopener">California Community Colleges Chancellor’s Office</a></li>
<li><a href="https://experience.sap.com/fiori-design/" target="_blank" rel="noopener">SAP Fiori Design Guidelines</a></li>
<li><a href="https://www.dropbox.com/branding/" target="_blank" rel="noopener">Dropbox Branding Guidelines</a></li>
</ul>
<p>&nbsp;</p>
<p><div id="attachment_4510" style="width: 1010px" class="wp-caption alignnone"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-4510" class="size-full wp-image-4510" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/cccco-brand-resources-1.png" alt="Style guide of California Community Colleges" width="1000" height="606" /><p id="caption-attachment-4510" class="wp-caption-text">The style guide of California Community Colleges website documents guidelines and rules of the brand basics, such as color, logo, typography, etc.</p></div></p>
<h3>Examples of Pattern Libraries</h3>
<ul>
<li><a href="https://cec-webstyleguide.symsoftsolutions.com/">California Energy Commission</a></li>
<li><a href="https://cccco-webstyleguide.symsoftsolutions.com/">California Community Colleges Chancellor’s Office</a></li>
</ul>
<p>&nbsp;</p>
<p><div id="attachment_4514" style="width: 1010px" class="wp-caption alignnone"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-4514" class="size-full wp-image-4514" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/cec-design-system.png" alt="CEC Pattern Library" width="1000" height="606" /><p id="caption-attachment-4514" class="wp-caption-text">California Energy Commission’s pattern library documents the user interface patterns and components as well as the development code to be used on their website. For the purpose of creating pattern libraries for our recent projects, SymSoft’s front-end engineers used Fractal, an open-source library for building and documenting interface components.</p></div></p>
<h2>Benefits of Design Systems</h2>
<p>Last year our design team was collaborating with the <strong><a href="https://www.calpers.ca.gov/" target="_blank" rel="noopener">CalPERS</a></strong> User Experience Team to build a design system for the Web, based on the existing brand guidelines and organizational objectives. By integrating brand language with design assets as well as design principles and guidelines, the CalPERS design system provided the in-house team with a sustainable model to build products such as <a href="https://my.calpers.ca.gov/web/ept/public/systemaccess/selectLoginType.html" target="_blank" rel="noopener"><strong>myCalPERS</strong></a>, as well as to communicate with other product teams.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4495" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/7S6A6111-cropped.jpg" alt="Designers discussing brand elements of the smud.org website" width="2000" height="1000" /></p>
<p>A good design system can bring extensive benefits to organizations, including:</p>
<ol>
<li><b>Brand recognition</b> — A good design system communicates a company’s value. Building a design system is beneficial for strengthening brand recognition and conveying the brand’s core values.</li>
<li><b>Improved communication and collaboration</b> — Well-defined design principles and clearly documented standards can help different disciplines understand why and how to use the components and assets. In this case, design systems can enhance communication and collaboration across disciplines, such as designers, developers, marketing specialists, and executives.</li>
<li><b>Increased speed and productivity</b> — Design systems can increase speed and work productivity. Since the user interface is broken down into smaller reusable components, design and development teams don’t have to reinvent the wheel, especially if the elements are already tested and validated.</li>
<li><b>Space to focus on solving user needs</b> — As the process of building a product becomes faster and more efficient, designers save more time to invest in understanding and solving user needs, as well as exploring more possibilities in the product.</li>
<li><b>Better user experience</b> — By utilizing a common design language provided by the design system, the product team is more likely to create a better user experience through the use of consistent and proven patterns.</li>
</ol>
<p>As you can see, there are true benefits of using a design system because it can enhance brand recognition, team communication, and work efficiency, as well as achieve better time allocation and user experience. In the next section, we will explain the process of actually building a design system.</p>
<h2>Building a Design System</h2>
<p>There are six main steps for creating and maintaining a design system, including purpose identification, system audit, asset creation, visual language establishment, rationale documentation, and future improvement. These are not definitive, and by all means not set in stone, but based on our experience work quite well as a general framework for creating successful and usable design systems.</p>
<h3>Step 1: Identify your needs</h3>
<p>Just like in any other project that solves a problem, identify the needs and purposes of the design system. Who will use it? How often? Does it make sense to them? What are the expectations?</p>
<p>We like how Yesenia Perez-Cruz, author of “<strong><a href="https://abookapart.com/products/expressive-design-systems" target="_blank" rel="noopener">Expressive Design Systems</a></strong>,” starts her design system projects by talking to the people who are involved or will be actually using the system. For example, she would focus on talking to program and product managers, or designers and developers. From that, she defines a purpose statement — whether it states what kind of design system is needed, or if a design system is not the right answer for the organization’s needs, which in some cases, is true.</p>
<p>If there is a need for a design system, we want it to communicate brand values. Part of identifying needs, is, coming up with design rules and principles, which are the foundation for any well-built design system.</p>
<p>Alla Kholmatova’s book “<strong><a href="https://designsystemsbook.com/" target="_blank" rel="noopener">Design Systems</a></strong>,” outlines four steps for defining design principles:</p>
<ol>
<li>Start with the larger goal of the product and try to match the principles to that goal</li>
<li>Gather a team to come up with shared values</li>
<li>Be clear about who the audience is</li>
<li>Constantly test and improve design principles</li>
</ol>
<p>Once the needs are clearly defined, proceed to the next step, the system audit.</p>
<p><i>(Sometimes, all you need to define the needs is a simple list of design principles.</i> <i>And even if the design system already exists, it might not be clearly or completely articulated. This is perfectly fine too. In such cases, we can take a step back and realize that the organization primarily needs a flexible pattern library that will provide brand and user experience consistency across digital properties. In any case, use the above guidelines to better understand the gap between where you at right now and where you want to be.)</i></p>
<h3>Step 2: Audit the system</h3>
<p>Conduct a design audit by reviewing current designs and taking an inventory of design assets being used throughout the product line<strong>.</strong></p>
<p>A good way to perform a thorough audit is to <strong><a href="https://www.designbetter.co/design-systems-handbook" target="_blank" rel="noopener">collect screenshots of current design elements</a></strong>, and then categorize these elements and document them into one place, whether it’s a spreadsheet or a design tool file. A choice of a design tool really doesn’t matter much at this point (but if you want to see what we like about some of the popular design tools, read our article <strong><a href="/blog/2020/02/05/digital-product-design-tools-we-love/">Digital Product Design Tools We Love</a></strong>).</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4492" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/7S6A5479-cropped.jpg" alt="Laptop showing a list of components in a spreadsheet" width="2000" height="1000" /></p>
<p>After creating the current design inventory, make a plan for creating the user interface library, also known as a pattern library, which is the core of the design system.</p>
<h3>Step 3: Create a component library</h3>
<p>One way to start creating the component library is by breaking down the work into different layers.</p>
<p>There is a general rule of component hierarchy to follow, which is also mentioned by Yesenia Perez-Cruz.  She suggests dividing items into basic components, composite components, containers (or regions), and layout (or template), very similar to the <strong><a href="http://atomicdesign.bradfrost.com/" target="_blank" rel="noopener">Atomic Design </a></strong>methodology invented by Brad Frost.</p>
<p>Start by documenting the basics, which are the “smallest possible elements that can’t be broken down any further,” such as buttons and links. If you are familiar with Atomic Design, this would correspond to atoms. An example of an atom is a button, a form field, or a headline.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4437" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/Screen-Shot-2020-01-03-at-5.06.24-PM.png" alt="Buttons" width="731" height="188" /></p>
<p>The composite components (or molecules in Atomic Design language) are a combination of basic components (or atoms), adapted to more specific use cases. If a button and a form field are basic components, a composite would be a web form.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4438" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/Screen-Shot-2020-01-03-at-5.08.09-PM.png" alt="Password fields" width="574" height="312" /></p>
<p>Containers (also known as regions, or organisms in Atomic Design language) are simply areas that contain several composite components, whereas layouts (or templates) refer to how all the elements on a page are arranged. These two big picture layers are helpful for demonstrating how the content should be laid out on the page.</p>
<p>One common example is creating a featured content component that can host sub-components such as an image, video, map embed, or a list of items.</p>
<p>As you can imagine, the biggest challenge is providing flexibility, so that the team that uses these components has enough options to customize their layouts, presentation, and communication. Our own approach is to create (jargon alert!) <i>context agnostic components</i> that are compatible with any other component, or in many cases can be dropped into other components. (Context agnostic components work and look well next to any other component, or position on the interface. Think of different LEGO bricks that can be attached to one another to form any number of shapes, because their connectors, the little bumps, and holes, are mutually compatible.)</p>
<h3>Step 4: Establish a visual identity</h3>
<p>Every organization has its unique style and brand identity, so it’s important to establish a visual identity in order to strengthen the brand name and communicate values.</p>
<p>Erik Spiekermann, a famous type designer and author of many world-known brands, stated that a typeface plus a color is everything you need to establish a brand identity. Many other brand experts add a space into the mix. If these basic building blocks are carried over through the components, we can achieve visual consistency and brand recognition.</p>
<h4>Example: New York Times vs Cereal</h4>
<p>For example, with different density and weight in layout, as well as other visual choices for the building blocks, <strong><a href="https://www.nytimes.com/" target="_blank" rel="noopener">The New York Times</a></strong> and <strong><a href="https://readcereal.com" target="_blank" rel="noopener">Cereal</a></strong> convey two completely different look-and-feel.</p>
<p><div id="attachment_4515" style="width: 1010px" class="wp-caption alignnone"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-4515" class="size-full wp-image-4515" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/nytimes.png" alt="New York Times page" width="1000" height="606" /><p id="caption-attachment-4515" class="wp-caption-text">With relatively tight spacing and more serious type choices, the New York Times establishes its news site identity.</p></div></p>
<p>&nbsp;</p>
<p><div id="attachment_4516" style="width: 1010px" class="wp-caption alignnone"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-4516" class="size-full wp-image-4516" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/cereal.png" alt="Read Cereal Website screenshot" width="1000" height="606" /><p id="caption-attachment-4516" class="wp-caption-text">Cereal has wider spacing and more artsy choices of color and typography, which conveys its identity as a travel and style magazine.</p></div></p>
<p>We can start establishing visual language across the interface to make our brand more recognizable by finding traits that best represent our brand identity. By fragmenting existing brand assets into basic elements — such as typography, shape, color, texture, and aspect ratios — we can identify which parts of that visual DNA can be replicated in the interface components.</p>
<p>&nbsp;</p>
<p><div id="attachment_4446" style="width: 1288px" class="wp-caption alignnone"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-4446" class="size-full wp-image-4446" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/Screen-Shot-2020-01-23-at-6.08.57-PM.png" alt="CEC Illustration" width="1278" height="961" /><p id="caption-attachment-4446" class="wp-caption-text">Here is an example of how our design team took traits of print collaterals from the California Energy Commission and brought them to life through interface designs. We first identified distinctive graphic design elements, such as the pastel colors, diagonal shapes, dashed lines, as well as bold typography, and then created components that would work well in a digital interface context.</p></div></p>
<h4>Example: California Energy Commission</h4>
<p><div id="attachment_4517" style="width: 1010px" class="wp-caption alignnone"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-4517" class="wp-image-4517 size-full" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/energy.png" alt="California Energy Commission Website" width="1000" height="606" /><p id="caption-attachment-4517" class="wp-caption-text">Triangles and sun rays were elements found in many Energy Commission publications and high-profile reports…</p></div></p>
<p>&nbsp;</p>
<p><div id="attachment_4518" style="width: 1010px" class="wp-caption alignnone"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-4518" class="wp-image-4518 size-full" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/energy-pattern-library.png" alt="California Energy Commission Pattern Library" width="1000" height="606" /><p id="caption-attachment-4518" class="wp-caption-text">The previous screenshot might make you think that the diagonal shapes are part of the component that follows, but, in fact, the shape belongs to the hero slider component.</p></div></p>
<h4>Example: Sacramento Municipal Utility District (SMUD)</h4>
<p><div id="attachment_4445" style="width: 1288px" class="wp-caption alignnone"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-4445" class="size-full wp-image-4445" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/Screen-Shot-2020-01-22-at-1.38.25-PM.png" alt="SMUD Illustration" width="1278" height="958" /><p id="caption-attachment-4445" class="wp-caption-text">Here is another example of how our design team broke up SMUD’s brand guidelines into graphic elements and transformed them into web page designs. Key elements included the color palette, the orange circle from the logo and iconography, and the SMUD wave that was incorporated into the website dropdown menu and the footer.</p></div></p>
<p>&nbsp;</p>
<p><div id="attachment_4519" style="width: 1010px" class="wp-caption alignnone"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-4519" class="wp-image-4519 size-full" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/smud-brand-menu.png" alt="SMUD website branded mega menu" width="1000" height="606" /><p id="caption-attachment-4519" class="wp-caption-text">SMUD website features a branded mega menu…</p></div></p>
<p>&nbsp;</p>
<p><div id="attachment_4525" style="width: 1010px" class="wp-caption alignnone"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-4525" class="size-full wp-image-4525" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/smud-brand-footer-1.png" alt="SMUD website footer branding" width="1000" height="606" /><p id="caption-attachment-4525" class="wp-caption-text">… as well as a branded website footer.</p></div></p>
<p>&nbsp;</p>
<h3>Step 5: Propagate shared language</h3>
<p>When different disciplines work on the same product, they need to share the same language about how the design system works. Clear documentation of the “why” and “how” behind each component is essential. Skipping this step might cause misunderstandings within the team, and people might not even embrace the design system because they don’t fully understand it and don’t know how to use it properly.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4541" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/symsoft-team-collaboration.jpg" alt="SymSoft team collaboration" width="1000" height="482" /></p>
<p>Basically, shared guidelines for design, usability, accessibility, and development for the system, result in coherent user experience. Again, Alla Kholmatova suggests a useful checklist on communicating a shared design language within the team:</p>
<ul>
<li>Setting up a pattern wall to showcase the design system</li>
<li>Referring to the name of the pattern in daily conversations</li>
<li>Introducing the design system to new employees,</li>
<li>Organizing regular design system catch-ups</li>
<li>Encouraging collaboration</li>
<li>Keeping a glossary of the used terms</li>
</ul>
<h3>Step 6: Evolve your design system</h3>
<p>Completing the first version of your design system doesn’t mean we’re done with the work. Design systems are constantly evolving, as we keep iterating and improving our products. In this case, maintaining, as well as improving the system is another important mission for the team. A good way to improve our design system is to conduct testing sessions on real products to see how it performs.</p>
<h2>Challenges with Design Systems</h2>
<p>Design systems can be beneficial for a company if it’s robust and well-established. However, there are challenges we need to face or traps we need to be aware of, before having a good design system.</p>
<ol>
<li><b>Different opinions and scope discrepancy</b> — When starting to create a design system, we need to build a multi-disciplinary team and have all the key staff on board. In this process, we might confront different opinions and discrepancies regarding the scope, depth or other aspects of the design system. In this case, it’s important to conduct thorough research on users and products and analyze the organization’s current situation, so that we can come up with the most appropriate plan and back up our plan with data and facts.</li>
<li><b>Too rigid or overly complicated</b> — While building the design system, we might encounter the challenge of how to build it so that it could actually be used and inspire more improvements. If we build a design system that’s not flexible enough, it would be more likely to inhibit creativity. Or if our design system turns out to be overly complicated, people might not even use it.  So we need to create flexible components and be clear and precise when setting our rules and standards.</li>
<li><b>Missing communication on the latest updates</b> — Another challenge we might face when building the design system is how to keep everyone on the same page. Since creating a design system is not a one-man effort and we do want people to be involved, it could be hard to keep all the related disciplines updated. In this case, communication is very important. We should try to make the whole process more transparent; for example, we can keep a spreadsheet documenting the progress of each component, so that people would know which components are done whereas others are in progress.</li>
<li><b>Maintenance</b> — After we finish building the design system, we still have to think about how we maintain and evolve the system because the design system should be changing over time with our products. Yesenia Perez-Cruz, in her book, “Expressive Design Systems,” mentioned three ways to manage design systems. First, we can rotate people who maintain the design system so that we always have fresh minds on which part of the system could be improved. The second way is to enable the product team to give feedback on the current design system because they are the ones that are most familiar with users and products. Lastly, we can encourage contributions from everyone. For example, IBM’s Carbon Design System has this approach of having a “How to Contribute” section, allowing people to make contributions to the design system.</li>
</ol>
<p>&nbsp;</p>
<p><div id="attachment_4523" style="width: 1010px" class="wp-caption alignnone"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-4523" class="wp-image-4523 size-full" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/carbon-design-system.png" alt="IBM’s Carbon design system" width="1000" height="606" /><p id="caption-attachment-4523" class="wp-caption-text">Carbon Design System’s “How to Contribute” section with guidelines on how to participate in the maintenance and evolution of a design system.</p></div></p>
<h2>Conclusion</h2>
<p>When we work with clients who don’t have an existing design system, getting started on a new project means a dedicated time to align with different teams that have stakes or full ownership of the design specifications, HTML &amp; CSS code, accessibility compliance, etc. For large organizations we work with, the time can add up significantly.</p>
<p>Thus, a good design system not only benefits designers but also does good to other disciplines of the organization. Development teams and design teams can share the same language, which enables better communication and decision-making, while project managers are more aware of the design choices we made, which bridges the technical knowledge gap and enables better justifications.</p>
<p>Now that the design system provides organizations a better way of optimizing the product design process, we might wonder where the future of design could go.</p>
<p>Design systems provide designers more freedom and time to create and explore. How can we make design systems more flexible? How can we make the innovation process more streamlined? Can we combine design systems with AI technology to achieve higher efficiency? These are the questions that we have. In the age of modern, user-centered organizations, we shall strive to innovate the way we see, feel and do designs.</p>
<p><i>(md, cm, yk, ma, xl)</i></p>
<p>&nbsp;</p>
<h2>Resources</h2>
<ol>
<li><a href="https://www.designbetter.co/design-systems-handbook" target="_blank" rel="noopener">InVision’s Design System Handbook</a></li>
<li><a href="https://abookapart.com/products/expressive-design-systems" target="_blank" rel="noopener">A Book Apart: Expressive Design Systems by Yesenia Perez-Cruz</a></li>
<li><a href="https://designsystemsbook.com/" target="_blank" rel="noopener">Design Systems Book by Alla Kholmatova</a></li>
<li><a href="https://designsystemsrepo.com/design-systems/" target="_blank" rel="noopener">Design System Gallery</a></li>
<li><a href="https://www.invisionapp.com/inside-design/guide-to-design-systems/" target="_blank" rel="noopener">A Comprehensive Guide to Design Systems</a></li>
<li><a href="https://www.youtube.com/watch?v=mq984Mc9UVA" target="_blank" rel="noopener">The Future of Design Systems (Youtube)</a></li>
<li><a href="http://atomicdesign.bradfrost.com/" target="_blank" rel="noopener">Atomic Design by Brad Frost</a></li>
<li><a href="https://helpx.adobe.com/xd/help/design-systems.html" target="_blank" rel="noopener">Design Systems in Adobe XD</a></li>
<li><a href="https://uxdesign.cc/selling-a-design-system-at-your-company-74cb2bc97195" target="_blank" rel="noopener">Selling a Design System at Your Company</a></li>
<li><a href="https://www.designsystems.com/" target="_blank" rel="noopener">Figma’s Design Systems</a></li>
<li><a href="https://publication.design.systems/" target="_blank" rel="noopener">Design Systems at Medium.com</a></li>
<li><a href="https://superfriendlydesign.systems/articles/distinct-design-systems/" target="_blank" rel="noopener">Distinct Design Systems</a></li>
</ol></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Digital Product Design Tools We Love</title>
		<link>https://www.symsoftsolutions.com/ux-design/digital-product-design-tools-we-love/</link>
		
		<dc:creator><![CDATA[SymSoft Solutions]]></dc:creator>
		<pubDate>Wed, 05 Feb 2020 10:00:20 +0000</pubDate>
				<category><![CDATA[User Experience Design]]></category>
		<guid isPermaLink="false">https://www.symsoftsolutions.com/?p=4429</guid>

					<description><![CDATA[About three years ago, the SymSoft Design team started to design our products and client solutions in an increasingly systematic fashion, looking at the whole map of the interface, rather than individual pages or components. We didn’t know back then that this would become, de facto, the standard way we approach every interaction design project.]]></description>
										<content:encoded><![CDATA[<p>About three years ago, the SymSoft Design team started to design our products and client solutions in an increasingly systematic fashion, looking at the whole map of the interface, rather than individual pages or components. We didn’t know back then that this would become, <i>de facto</i>, the standard way we approach every interaction design project. Fast forward to today, and a few successful projects later, the clients themselves expect a design system — or at least a pattern library — in place, in order to maintain brand experience across multiple digital channels and properties.</p>
<p>The benefits of creating a cohesive, yet reusable system are endless. Be it a full-blown design system, a style guide, or a pattern library, thinking systematically means thinking future proof.</p>
<p>Systematic approaches to design require tighter collaboration and sharing between different functions, primarily the brand managers, designers of all stripes, and technology folks, but also product owners, program managers, and executive stakeholders. Thankfully, there are a few solid software solutions to choose from that can make the process more seamless.</p>
<p>What follows is not a comprehensive list of tools, but rather a list of selected tools that we anticipate will soon become mainstream digital product design tools if they aren’t already. In this article, we will take a look at:</p>
<ol>
<li><strong>Adobe XD</strong></li>
<li><strong>Figma</strong></li>
<li><strong>InVision Studio</strong></li>
<li><strong>Sketch</strong></li>
</ol>
<p>(Other existing tools might be as valuable as the ones that made it to our list. We would definitely like to hear about your experience and learn about the advantages of other solutions.)</p>
<p>Before we dive deeper into why we like each tool, it’s important to remember that we are a tool-agnostic design team, which means that everyone gets to choose the best tool for a job, as long as they can export it to a common format and share it with the rest of the team. And yes, sometimes we will go into Keynote to quickly mock up a series of screens, or even design a high fidelity interface.</p>
<h2>Overview of Tools</h2>
<table>
<tbody>
<tr>
<td></td>
<td><span style="font-weight: 600;">Adobe XD</span></td>
<td><span style="font-weight: 600;">Figma</span></td>
<td><span style="font-weight: 600;">InVision Studio</span></td>
<td><span style="font-weight: 600;">Sketch</span></td>
</tr>
<tr>
<td><span style="font-weight: 600;">Learnability</span></td>
<td>Easy</td>
<td>Intermediate</td>
<td>Advanced</td>
<td>Easy</td>
</tr>
<tr>
<td><span style="font-weight: 600;">Platform</span></td>
<td>Mac, Windows</td>
<td>Mac, Windows, Linux, Web</td>
<td>Mac, Windows</td>
<td>Mac</td>
</tr>
<tr>
<td><span style="font-weight: 600;">Advanced Prototyping</span></td>
<td>Basic Animation, Screen Recording</td>
<td>Basic Animation, Animation Preview</td>
<td>Advanced Animation</td>
<td>Basic Animation</td>
</tr>
<tr>
<td><span style="font-weight: 600;">Collaboration</span></td>
<td>Share and Comment</td>
<td>Live Collaboration</td>
<td>Live Collaboration with Freehand</td>
<td>Available with Plugins</td>
</tr>
<tr>
<td><span style="font-weight: 600;">Code View</span></td>
<td>Link</td>
<td>Code Mode</td>
<td>Link</td>
<td>Available with Plugins</td>
</tr>
<tr>
<td><span style="font-weight: 600;">Component Reusability</span></td>
<td>High</td>
<td>High</td>
<td>High</td>
<td>High</td>
</tr>
<tr>
<td><span style="font-weight: 600;">Export / Compatibility</span></td>
<td>jpg, png, pdf, svg</td>
<td>jpg, png, pdf, svg</td>
<td>jpg, png, svg</td>
<td>jpg, png, pdf, svg, tiff, webp, eps</td>
</tr>
<tr>
<td><span style="font-weight: 600;">Convenient Sharing</span></td>
<td>Share for Review / Development</td>
<td>Share Source File / Prototype</td>
<td>Share Prototype on InVision</td>
<td>Share on Sketch Cloud</td>
</tr>
</tbody>
</table>
<h2></h2>
<h2>Adobe XD</h2>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4499" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/cec-adobe-xd-screenshot.png" alt="Adobe XD file for the California Energy Commission website" width="2000" height="1213" /></p>
<table>
<tbody>
<tr>
<td>Year of Release</td>
<td>2019</td>
</tr>
<tr>
<td>Download Link</td>
<td><a href="https://www.adobe.com/products/xd.html" target="_blank" rel="noopener">https://www.adobe.com/products/xd.html</a></td>
</tr>
<tr>
<td>Tutorials Link</td>
<td><a href="https://letsxd.com/?promoid=8WLD53GJ&amp;mv=other" target="_blank" rel="noopener">https://letsxd.com/?promoid=8WLD53GJ&amp;mv=other</a></td>
</tr>
<tr>
<td>Brands that Use it / Popularity</td>
<td>Microsoft, Dropbox, AT&amp;T, DICE, SONOS, etc.</td>
</tr>
<tr>
<td>Roadmap / Future Features (from <a href="https://theblog.adobe.com/xd-roadmap-future-plans-recent-features/" target="_blank" rel="noopener">Adobe Blog</a>)</td>
<td>
<ol>
<li style="font-weight: 400;">Design and prototyping: new design features (bulleted lists, etc.), intelligent tools, components enhancements (support for component states, etc.), new prototyping features (more granular control, etc.)</li>
<li style="font-weight: 400;">Adobe Cloud: Creative Cloud Libraries, improved discoverability of plugins, etc.</li>
<li style="font-weight: 400;">Collaboration: shared projects, extend real-time collaboration</li>
<li style="font-weight: 400;">Design Systems: improve assets panel, enable design system documentation, provide additional control over sharing permissions, versioning, and updating design systems, support for style guides, etc.</li>
</ol>
</td>
</tr>
</tbody>
</table>
<h3>Why we love it?</h3>
<p>Adobe XD is the newest among the four tools mentioned in this article. It easily made its presence known because it was originated by Adobe, probably the most well-known design software ecosystem. We have built products in Adobe XD for previous projects that include websites and design systems, even for large organizations like <strong><a href="http://calpers.ca.gov" target="_blank" rel="noopener">CalPERS</a></strong>. It’s useful for communicating with clients and building design systems, and also easy to learn and adapt to.</p>
<h4>Convenient client communication</h4>
<p>All the design software mentioned in this article has a sharing option. Adobe XD supports two types of sharing — Share for Review and Share for Development. We use the Share for Review to receive client feedback, especially because they can annotate the prototype screens and add comments, whereas the Share for Development is intended for developers to view the code.</p>
<p>Adobe XD stands out for us as the most convenient for client communication because it’s the only one of the four that allows users to comment without signing up for an account. Another welcome feature is passcode protection, which keeps our projects more secure.</p>
<p>XD also has the most convenient prototype recording capability — accessible through a button in the top right of the preview window, with which designers can easily record the interaction and send it to the client for review.</p>
<h4>Good for building design systems</h4>
<p>The assets panel of Adobe XD makes it unique compared to the other three tools by having reusable components as well as colors and character styles all in one place. As a result of utilizing this, we can easily build a component library and a style guide consisting of the color and type systems.</p>
<p>Moreover, Adobe XD supports linked assets. This enables designers to import assets from an Adobe Cloud document and simultaneously use and update those assets across different projects. This was especially helpful when we were building the aforementioned design system for CalPERS. The ability to import linked components, colors and typography styles altogether into documents dramatically improves the workflow and keeps all the styles up-to-date.</p>
<p>
<a href="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/Screen-Shot-2020-01-30-at-10.36.19-AM.png"><img loading="lazy" decoding="async" width="242" height="618" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/Screen-Shot-2020-01-30-at-10.36.19-AM.png" class="attachment-full size-full" alt="Color palette" /></a>
<a href="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/Screen-Shot-2020-01-30-at-10.36.49-AM.png"><img loading="lazy" decoding="async" width="242" height="619" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/Screen-Shot-2020-01-30-at-10.36.49-AM.png" class="attachment-full size-full" alt="Character Style" /></a>
<a href="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/Screen-Shot-2020-01-30-at-10.37.15-AM.png"><img loading="lazy" decoding="async" width="242" height="619" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/Screen-Shot-2020-01-30-at-10.37.15-AM.png" class="attachment-full size-full" alt="Components" /></a>
</p>
<h4>Zero learning curve</h4>
<p>We found Adobe XD the easiest to learn and adapt to, especially for those designers who have experience using other Adobe products, namely Illustrator and Photoshop. With almost identical shortcuts and a very similar look-and-feel (for example, tools panel on the left, in vertical order), it reduces the learning curve for any experienced designer.</p>
<h3>What we miss?</h3>
<p>While XD is great for easy client communication and feedback, building design systems, and is easy to learn, there is room for improvement in the prototype mode.</p>
<h4>Advanced interaction</h4>
<p>Currently, XD only supports basic interactions such as tap and drag (by mouse). It doesn’t allow more advanced triggers like mouse over, double click, or swipe to different directions.</p>
<p>However, one thing to note is that XD is the only tool among the four that has a voice trigger, which is handy for prototyping conversational user interfaces. For example, Siri, Alexa, Google Home, and many more applications and devices are using the voice user interface to improve the overall customer experience.</p>
<h4>Better connected design and prototype modes</h4>
<p>Another potential issue with XD is that it separates the design and prototype modes in a way that sometimes stifles the workflow and makes our process disconnected.</p>
<p>For example, imagine this task — we want to create a menu bar component in the design mode that directs us to the same artboards wherever we use this component. In XD, it’s hard to accomplish that because when we switch to the prototype mode after we designed and used this component, we need to link everything over and over again.</p>
<h4>Better artboard organization</h4>
<p>XD only supports a single page with multiple artboards, whereas other design software usually supports multiple pages with multiple artboards. This could work for smaller projects, but for larger projects that need to be more organized, a single page might not be sufficient. Keeping a large number of artboards in one place could make it difficult to organize and navigate.</p>
<h2>Figma</h2>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4497" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/7S6A5522-cropped.jpg" alt="Designer working on the California Community Colleges Chancellor’s Office website mockup in Figma.app" width="2000" height="1000" /></p>
<table>
<tbody>
<tr>
<td>Year of Release</td>
<td>2016</td>
</tr>
<tr>
<td>Download Link</td>
<td><a href="https://www.figma.com/downloads/" target="_blank" rel="noopener">https://www.figma.com/downloads/</a></td>
</tr>
<tr>
<td>Tutorials Link</td>
<td><a href="https://www.figma.com/best-practices/" target="_blank" rel="noopener">https://www.figma.com/best-practices/</a></td>
</tr>
<tr>
<td>Brands that Use it / Popularity</td>
<td>Twitter, Dropbox, Zoom, Microsoft, Github, etc.</td>
</tr>
<tr>
<td>Roadmap / Future Features (from <a href="https://www.figma.com/blog/bringing-the-community-together-in-figma/" target="_blank" rel="noopener">Figma Editorial</a>)</td>
<td>
<ol>
<li style="font-weight: 400;">More innovative features that boost creative productivity by removing the manual, repetitive parts of design work</li>
<li style="font-weight: 400;">More features that work great with the entire product team, including engineers, product managers, and other folks critical to the development process</li>
<li style="font-weight: 400;">A richer, more open design community &#8211; Figma Community. Enable more creators to add more resources</li>
</ol>
</td>
</tr>
</tbody>
</table>
<h3></h3>
<h3>Why we love it?</h3>
<p>Figma stands out from other design tools by offering access on different platforms — Mac, Windows, Linux, and most importantly, the Web. According to its CCO, Amanda Kleha, Figma actually originated from the idea that “design should live on the Web.” Figma is unique in its ability to store everything in the Cloud so that the team can always find the latest version. It also offers a few other benefits that we don’t find in other tools including live collaboration, interaction preview, and instant code mode.</p>
<h4>Highly collaborative</h4>
<p>Unlike other design tools that follow the share-comment structure for collaboration or communication purposes, Figma takes a different approach by offering the live collaboration feature. In other words, it allows multiple users to work on the same file at the same time. This feature may seem strange for some users, but it could be useful for projects that need several designers working on the same file.</p>
<p>We are under the impression that Figma is striving to build a highly collaborative environment for users because the Comment feature is built into both design and development modes —  it’s even highlighted in the top tool panel to make communicating handier. Commenting can be “live” too. When multiple users are working on the same document, they are able to give feedback and respond to comments with a single click.</p>
<h4>Animation preview</h4>
<p>We simply love this feature! When comparing the animation and interaction features among these tools, we realized most of them have very similar capabilities and logic. But what makes Figma unique is that it offers previews for animations. This increases the learnability of this tool and is especially helpful for those who are relatively new to the animation terms.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4463" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/Screen-Shot-2020-01-30-at-4.35.44-PM.png" alt="animation preview" width="236" height="422" /></p>
<h4>Three unique modes</h4>
<p>While other design tools primarily have two modes for users to work in — Design Mode and Development Mode, Figma also incorporates a Code Mode. In the Code Mode, when we click on an element, we are able to see its CSS, iOS, and Android code without an additional step.</p>
<p>In this case, designers and developers have a chance to learn from each other &#8211; designers getting more familiar with code, and developers can always have the most up-to-date design file to build the product from.</p>
<h3>What we miss?</h3>
<p>In general, Figma is a very powerful design tool because I cannot say there is one thing about it that significantly bothers me, so here I would like to mention several aspects in which it can be improved.</p>
<h4>Local copy</h4>
<p>Unlike other design tools that allow users to save files into local drive, Figma takes a different approach by storing everything on the Web. This is good because everything is auto-saved and the teams always have access to the updated files. However, for teams working only in the Cloud, this could be problematic because everything is based on the Internet. Basically, if there’s no Internet connection, there’s no progress.</p>
<h4>Privacy</h4>
<p>Figma’s emphasis on the Web could also be a potential issue in terms of privacy. Organizations might fear that putting their projects and collaborating in the Cloud would be less private.</p>
<p>Another issue is that some designers might prefer working on their own and don’t want others to see what they are working on currently. In this case, Figma’s live collaboration feature might not work for this group of designers.</p>
<h4>Layers Organization</h4>
<p>The pages, artboards, and layers panel on the right of Figma’s design interface could be a little clearer and more legible. There could be a more obvious separation between pages and artboards. Also, Figma doesn’t have the option to search for specific layers, as XD does. For a large project that involves multiple pages and artboards, searching for specific layers to make a change could save us some time.</p>
<h2>InVision Studio</h2>
<table>
<tbody>
<tr>
<td>Year of Release</td>
<td>2018</td>
</tr>
<tr>
<td>Download Link</td>
<td><a href="https://www.invisionapp.com/studio" target="_blank" rel="noopener">https://www.invisionapp.com/studio</a></td>
</tr>
<tr>
<td>Tutorials Link</td>
<td><a href="https://www.invisionapp.com/studio/learn" target="_blank" rel="noopener">https://www.invisionapp.com/studio/learn</a></td>
</tr>
<tr>
<td>Brands that Use it / Popularity</td>
<td>Stripe, Airbnb, Amazon, Slack, Lyft, HBO, IBM, Netflix, CapitalOne, etc.</td>
</tr>
<tr>
<td>Roadmap / Future Features (from <a href="https://www.invisionapp.com/talks/invisionroadmap" target="_blank" rel="noopener">InVision Talks</a>)</td>
<td>Major investments into tools and collaboration fragmentation, version management, company-wide source of truth.</td>
</tr>
</tbody>
</table>
<h3></h3>
<h3>Why we love it?</h3>
<p>InVision has been extensively used as a powerful prototyping tool combined with other interface design tools to help design teams achieve intended results. It released its own design tool, InVision Studio, in 2018, so now we can design and prototype on the same platform. Since InVision was famous for being a prototyping tool originally, InVision Studio keeps this advantage by offering many powerful animations and interactions. Moreover, InVision has developed its own design collaboration suite, which makes it the most complete solution on the market today.</p>
<h4>Rapid prototyping</h4>
<p>InVision Studio is no doubt the best in terms of prototyping among all the design tools on the list. It allows interactions triggered by mouse, finger, keyboard, and timer. More options, such as hold tap and double-tap, which are not seen in other design tools, are also available in InVision Studio.</p>
<p>Prototyping has been made simpler in Invision Studio also because we can add interaction at any point without switching to a prototyping mode. Another convenient feature is an automatic frame (iPhone, iPad, etc.) when we prototype screens, unlike Adobe XD that needs us to manually add frames.</p>
<h4>Advanced animation</h4>
<p>Besides rapid prototyping features, InVision Studio also offers advanced animation capabilities. For example, after we set up a motion transition to an artboard or layer, we can take a step further by using the Edit Timeline function to have more granular control over the speed and timing of each component that we want to animate. In this case, it allows us to create more customized animation to fit our needs.</p>
<h4>InVision ecosystem</h4>
<p>InVision has developed its ecosystem by offering a complete solution including design, prototyping, workflow tracking, design handoff, and advanced animations. For teams working on a complete product building cycle, InVision offers complete support from planning, to design, to communication, to delivery.</p>
<p>In the early stage of the product cycle, we can use InVision Boards for inspiration and ideation. When we want to create storyboards, low-fidelity prototypes or collaborate with other team members, we can use Freehand to help with the workflow.</p>
<h3>What we miss?</h3>
<p>With powerful design prototyping features all in one mode, InVision Studio’s interface appears to be more complicated than other tools. Thus, it can be improved in its usability and performance.</p>
<h4>Relatively low learnability</h4>
<p>InVision Studio is different from other design tools, first, in its look-and-feel: it features a dark theme and a futuristic style, which might be hard for some users to adapt to. The tool icons are also not very intuitive so it takes time to learn how each of them functions.</p>
<h4>Better panel usability</h4>
<p>InVision Studio somehow sacrifices its usability for the sleekness of its interface. For example, it doesn’t have a very clear tools panel like other design software does; rather, we need to perform an additional step by clicking on the “add” icon first to see what tools it has.</p>
<p>Another example is that it only has an alphabetical list of components. You have to click on each component to see what it is, whereas all other software provides previews of the components.</p>
<h4>Interaction indicators</h4>
<p>Unlike other design tools that separate design and prototype into two different modes, InVision Studio has only one mode that incorporates the interaction feature. Some people think this is more convenient because you don’t have to switch between the two modes. However, InVision Studio doesn’t provide enough indication for already created interactions &#8211; we need to click on each layer or artboard to see if it has interactions that have been previously set up.</p>
<h2>Sketch</h2>
<table>
<tbody>
<tr>
<td>Year of Release</td>
<td>2010</td>
</tr>
<tr>
<td>Download Link</td>
<td><a href="https://www.sketch.com/get/" target="_blank" rel="noopener">https://www.sketch.com/get/</a></td>
</tr>
<tr>
<td>Tutorials Link</td>
<td><a href="https://www.sketch.com/docs/" target="_blank" rel="noopener">https://www.sketch.com/docs/</a></td>
</tr>
<tr>
<td>Brands that Use it / Popularity</td>
<td>Apple, Facebook, Google, Nintendo, Porsche, Stripe, etc.</td>
</tr>
<tr>
<td>Roadmap / Future Features (from <a href="https://blog.sketchapp.com/whats-next-for-sketch-in-2020-fbac2317e7b4" target="_blank" rel="noopener">Sketch Blog</a>)</td>
<td>
<ol>
<li style="font-weight: 400;">Launch Sketch for Teams: better collaboration across organizations, features include Mentions, Projects, Cloud Libraries, etc.</li>
<li style="font-weight: 400;">New Design Features: Components Panel, Popover, etc.</li>
<li style="font-weight: 400;">Sketch Community</li>
<li style="font-weight: 400;">Cloud Inspector: developer handoffs</li>
<li style="font-weight: 400;">Assistant: automatically check designs</li>
<li style="font-weight: 400;">Better prototyping features: modals, better sharing, hover states, hide hotspots, saved scrolling position, etc.</li>
<li style="font-weight: 400;">Live Collaboration</li>
</ol>
</td>
</tr>
</tbody>
</table>
<h3>Why we love it?</h3>
<p>Sketch revolutionized the way we design user interface when it was first launched in 2010. After that, a number of different design and prototyping tools inspired by it appeared on the market. Although there are many tools out there that have their own advantages, Sketch still keeps its place as the top-used user interface design tool today, according to <a href="https://uxtools.co/survey-2019/" target="_blank" rel="noopener">UXTool’s Design Tools Survey</a>. Sketch not only has robust functionalities for interface design but also has the most extensive plugins and resources on the internet.</p>
<p><div id="attachment_4462" style="width: 1256px" class="wp-caption alignnone"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-4462" class="wp-image-4462 size-full" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/Screen-Shot-2020-01-23-at-11.22.37-AM.png" alt="UX Survey" width="1246" height="793" /><p id="caption-attachment-4462" class="wp-caption-text">According to UXTool’s 2019 Design Tools Survey, Sketch was rated as the most used tool for user flow, wireframing, UI design, prototyping, and design systems.</p></div></p>
<h4>Customizable Toolbar</h4>
<p>One feature that sets Sketch apart from other design tools is its customizable toolbar. The other tools on the list all have a default toolbar either on the top or to the left of the interface. This convenient feature allows designers to choose what tools are in the toolbar, providing a custom fit to different design habits, and the ability to tailor it to different design needs.</p>
<p>For example, a UI Designer might stay with the default toolbar options, but a Graphic Designer or Icon Designer might want different toolbar options that are more suitable for vector arts.</p>
<h4><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4461" src="https://www.symsoftsolutions.com/wp-content/uploads/2020/02/Screen-Shot-2020-01-22-at-4.31.57-PM.png" alt="Customizable toolbar" width="1566" height="464" /></h4>
<h4>Extensive Resources</h4>
<p>Since Sketch is the very first design software that’s created for user interface design, it has the most extensive resources on the Internet for us to learn and use. There are many different websites focusing on providing Sketch resources to download, including <a href="https://www.sketchappsources.com/" target="_blank" rel="noopener"><strong>Sketch App Resources</strong></a>, <strong><a href="https://sketchrepo.com/" target="_blank" rel="noopener">Sketch Repo</a></strong>, etc.</p>
<p>Not to mention, it also has massive third-party plugins to improve its functionality and performance. For example, we can combine Sketch with advanced animation plugins to make better prototypes and we can use third-party plugins like Zeplin for design handoffs. This advantage is very important because we can mix and match plugins to create our own Sketch to best fit our needs.</p>
<h4>Templates</h4>
<p>Sketch has another convenient feature called Templates, which allows us to create new files from a template, including Android icon design, iOS app icon, material design, prototyping tutorial, smart layout tutorial, and web design. Using a template to create designs can save time when figuring out the correct dimensions, grids, layout options, etc.</p>
<h3>What we miss?</h3>
<p>Although Sketch has powerful design features and is the most-used interface design tool, it’s still not perfect. There are multiple ways it could be improved in order to be used by more people and to create a more seamless user experience.</p>
<h4>Other platforms</h4>
<p>Unlike other design tools on the list that support at least two platforms, Sketch is a Mac-only application. Its strongest rival, Figma (Figma was rated number two in the top-used user interface design software survey in 2019),  supports four platforms: Mac, Windows, Linux, and the Web, which makes it accessible from almost all platforms available.</p>
<h4>Version control</h4>
<p>Another feature we miss in Sketch is version control. It’s highly dependent on third-party plugins, such as <strong><a href="https://www.abstract.com/" target="_blank" rel="noopener">Abstract</a></strong> and <strong><a href="https://plantapp.io/" target="_blank" rel="noopener">Plant</a></strong>, for versioning. On the other hand, Figma has a built-in feature called Version History, which allows users to see all the auto-saved versions and enables the retrieval of earlier versions. And for those who prefer intentionally saving a version of the file, Figma also allows for manually saving a version.</p>
<h4>Collaboration features</h4>
<p>Although Sketch has a powerful plugin library, it’s still easier to have built-in collaboration features. Currently, Sketch doesn’t support sharing, commenting, real-time collaboration, or design handoff, whereas other design software has these features built-in. However, according to “<strong><a href="https://blog.sketchapp.com/whats-next-for-sketch-in-2020-fbac2317e7b4" target="_blank" rel="noopener">What’s Next for Sketch in 2020?</a></strong>” it plans to launch built-in collaboration features this year.</p>
<h2>Conclusion</h2>
<p>The launch of Sketch has inspired more creation and development in design software. Each tool has its own pros and cons, so organizations can choose what tool to use by analyzing the budget, project scope, and design need. Hopefully, this article can provide a new perspective to your understanding of these design tools and help you choose the right tool for you. Please let us know what you think of these tools. We’d love to hear your opinions!</p>
<p>FYI, <strong><a href="https://apply.workable.com/symsoft-solutions/j/79AA8A3233/" target="_blank" rel="noopener">SymSoft is currently hiring Interaction Designers</a></strong>. If this is you, our team is eager to meet you!</p>
<p><i>(md, cm, yk, ma, xl)</i></p>
<p>&nbsp;</p>
<h2>Resources</h2>
<ol>
<li style="font-weight: 400;"><a href="https://uxtricks.design/blogs/ux-design/best-ui-design-tools/" target="_blank" rel="noopener">Best UI Design Tools 2019: Your Guide</a></li>
<li style="font-weight: 400;"><a href="https://www.figma.com/figma-vs-invision-studio/" target="_blank" rel="noopener">Figma vs InVision Studio</a></li>
<li style="font-weight: 400;"><a href="https://blog.usejournal.com/adobe-xd-vs-sketch-invision-studio-figma-2019s-in-depth-comparison-which-one-3125caa45d2d" target="_blank" rel="noopener">Adobe XD vs Sketch, InVision Studio &amp; Figma (2019’s In-depth Comparison) Which one?</a></li>
<li style="font-weight: 400;"><a href="https://asperbrothers.com/blog/figma-vs-invision/" target="_blank" rel="noopener">Figma vs InVision in 2019 &#8211; Comparison UI Design Tools</a></li>
<li style="font-weight: 400;"><a href="https://uxtools.co/survey-2019/" target="_blank" rel="noopener">2019 Design Tools Survey</a></li>
<li style="font-weight: 400;"><a href="https://letsxd.com/?promoid=8WLD53GJ&amp;mv=other" target="_blank" rel="noopener">Learn and Master Adobe XD</a></li>
<li style="font-weight: 400;"><a href="https://www.figma.com/best-practices/" target="_blank" rel="noopener">Figma Best Practices</a></li>
<li style="font-weight: 400;"><a href="https://www.sketch.com/docs/" target="_blank" rel="noopener">Learn Sketch</a></li>
<li style="font-weight: 400;"><a href="https://www.invisionapp.com/studio/learn" target="_blank" rel="noopener">Master the Power of InVision Studio</a></li>
</ol>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Advanced Search Experience with Sitecore and Solr</title>
		<link>https://www.symsoftsolutions.com/sitecore/advanced-search-experience-with-sitecore-and-solr/</link>
		
		<dc:creator><![CDATA[SymSoft Solutions]]></dc:creator>
		<pubDate>Mon, 01 Apr 2019 21:28:12 +0000</pubDate>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[Digital Experience]]></category>
		<category><![CDATA[User Experience Design]]></category>
		<guid isPermaLink="false">https://www.symsoftsolutions.com/?p=4166</guid>

					<description><![CDATA[Google-like search experience is so ubiquitous nowadays, that as end users we hardly ever notice it. It allows us to misspell words, expand our exploration beyond the initial scope, or simply provide answers to specific questions. Yet, those familiar with the Tesler’s Law of Preservation of Complexity know that most simple user experiences are in [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Google-like search experience is so ubiquitous nowadays, that as end users we hardly ever notice it. It allows us to misspell words, expand our exploration beyond the initial scope, or simply provide answers to specific questions. Yet, those familiar with the <a href="https://en.wikipedia.org/wiki/Law_of_conservation_of_complexity" target="_blank" rel="noopener"><strong>Tesler’s Law of Preservation of Complexity</strong></a> know that most simple user experiences are in many cases quite elaborate pieces of elaborate design and engineering.</p>
<p>This article will provide you with a few examples of the advanced search experiences that are integrated with the <strong>Sitecore-based solutions</strong> we deliver to our customers, such as <a href="/case-studies/smud/"><strong>SMUD</strong></a>, <a href="/case-studies/california-department-of-water-resources-website-redesign/"><strong>DWR</strong></a> and <a href="/case-studies/california-department-of-general-services/"><strong>DGS</strong></a>.</p>
<p>Sitecore Content Search API is responsible for communicating with search engine software such as <a href="http://lucene.apache.org/solr/" target="_blank" rel="noopener"><strong>Solr</strong></a>, a popular enterprise-level platform built on Apache Lucene™. Out of the box, the Content Search API retrieves the basic list of results, which works perfectly if the end user knows exactly what they are looking for. It’s a little less convenient for people who are not quite sure what they need, or simply don’t even know how to phrase the query.</p>
<p>SymSoft improves the original Sitecore Content Search API by adding methods that can retrieve other information — such as alternative query suggestion, or query term highlights in the list of results. This creates the user experience similar to the one provided by Google Search.</p>
<p>Let’s see them in action.</p>
<h2>Alternative Query Suggestion</h2>
<p>Alternative query suggestion will attempt to search content with the original keyword. In case there are no results to display, it will suggest an alternative query results based on similar existing words or phrases. Below is an example of <a href="https://water.ca.gov/SearchResults?sort=relevance&amp;search=univorsity" target="_blank" rel="noopener"><strong>the alternative query suggestion</strong></a> on a live website for the California Department of Water Quality.</p>
<p><img loading="lazy" decoding="async" width="2277" height="1310" src="https://www.symsoftsolutions.com/wp-content/uploads/2019/04/dwr-alternative-query-suggestion-macbook.png" alt="Screenshot of DWR website search showcasing suggested alternative query results" class="alignnone size-full wp-image-4192"></p>
<h2>Stemmed Search</h2>
<p><a href="https://en.wikipedia.org/wiki/Stemming" target="_blank" rel="noopener"><strong>Stemmed search</strong></a> improves user experience by expanding query to include all results that are related to the base form of the word used in the query. In the example below, using keywords with the same root — <a href="https://water.ca.gov/SearchResults?sort=relevance&amp;search=university" target="_blank" rel="noopener"><strong>university</strong></a> and <a href="https://water.ca.gov/SearchResults?sort=relevance&amp;search=universities" target="_blank" rel="noopener"><strong>universities</strong></a> — will retrieve the same list of pages and documents (the root of the word <em>university</em> is <em>universit</em>).</p>
<p><img loading="lazy" decoding="async" width="2116" height="1959" src="https://www.symsoftsolutions.com/wp-content/uploads/2019/04/dwr-stemmed-search.png" alt="Screenshots of DWR search results page." class="alignnone size-full wp-image-4182"></p>
<h2>Query Term Highlighting</h2>
<p>Query term highlighting is useful in cases when the search query refers to multiple different contexts. Highlighted query terms help users understand the context around the keyword they were looking up. In the example below, it is easy to find documents that are related to different <a href="https://water.ca.gov/SearchResults?search=water+management&amp;tab=archivedocuments" target="_blank" rel="noopener"><strong>water management</strong></a> plans.</p>
<p><img loading="lazy" decoding="async" width="2277" height="1310" src="https://www.symsoftsolutions.com/wp-content/uploads/2019/04/dwr-keyword-highlights-macbook.png" alt="Screenshit of DWR search results showcasing keyword highlighting" class="alignnone size-full wp-image-4191"></p>
<h2>Conclusion</h2>
<p>This post hopefully illustrates how different advanced search functionalities can improve search experience for the end user. Furthermore, it demonstrates that a Sitecore-based website can be set up and customized to include advanced search features, especially when paired with a powerful search platform such as Solr.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
