<?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>Digital Experience &#8211; SymSoft Solutions</title>
	<atom:link href="https://www.symsoftsolutions.com/blog/topic/digital-experience/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>Digital Experience &#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>Leveraging Azure AD B2C as an Identity Access Manager </title>
		<link>https://www.symsoftsolutions.com/digital-experience/leveraging-azure-ad-b2c-as-an-identity-access-manager/</link>
		
		<dc:creator><![CDATA[Kaushik Punyamurthula]]></dc:creator>
		<pubDate>Fri, 14 Mar 2025 19:45:29 +0000</pubDate>
				<category><![CDATA[Digital Experience]]></category>
		<guid isPermaLink="false">https://www.symsoftsolutions.com/?p=13230</guid>

					<description><![CDATA[Azure Active Directory B2C (Business-to-Consumer) is a custom identity management solution provided by Microsoft Azure as part of Microsoft Entra. It is designed to handle authentication for millions of users with auto-scaling capabilities and built-in security features to mitigate various threats.  At SymSoft Solutions, we have successfully implemented Azure AD B2C across multiple projects, leveraging [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><span data-contrast="auto">Azure Active Directory B2C (Business-to-Consumer) is a custom identity management solution provided by Microsoft Azure as part of Microsoft Entra. It is designed to handle authentication </span><span data-contrast="auto">for millions of users with auto-scaling capabilities and built-in security features to mitigate various threats.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
<p><span data-contrast="auto">At SymSoft Solutions, we have successfully implemented Azure AD B2C across multiple projects, leveraging both standard user flows and custom policies to enhance the identity user experience. Azure AD B2C enables seamless integration with external identity providers such as Microsoft, Google, GitHub, and more via Single Sign-On (SSO). Additionally, it serves as a cloud-based user directory, securely storing local user information within the b2c-extension-application.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
<h2><span data-contrast="none">Integration with Applications</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:360,&quot;335559739&quot;:80,&quot;335559740&quot;:276}"> </span></h2>
<p><span data-contrast="auto">Azure AD B2C is easy to integrate with JavaScript-based front-end frameworks using the MSAL (Microsoft Authentication Library). This allows applications to redirect users or present authentication forms in a popup for a smoother login experience.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
<p><span data-contrast="auto">At the end of any user flow, Azure AD B2C issues a JWT (JSON Web Token), which serves as an identity token. Additionally, it can provide access tokens for API authentication. These tokens allow web applications to securely interact with backend APIs using MSAL or OpenID Connect (OIDC) authentication in .NET-based applications.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
<h2><span data-contrast="none">User Flows and Custom Policies</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:360,&quot;335559739&quot;:80,&quot;335559740&quot;:276}"> </span></h2>
<p><span data-contrast="auto">Azure AD B2C offers two approaches to defining authentication experiences:</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
<h3><span data-contrast="none">User Flows (Predefined Policies)</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:160,&quot;335559739&quot;:80,&quot;335559740&quot;:276}"> </span></h3>
<p><span data-contrast="auto">User flows are built-in, configurable policies that define common authentication scenarios. They allow developers to:</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
<ul>
<li data-leveltext="" data-font="Symbol" data-listid="9" 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;:[8226],&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"><b><span data-contrast="auto">Customize branding</span></b><span data-contrast="auto"> (company logos, themes, UI styling).</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276}"> </span></li>
<li data-leveltext="" data-font="Symbol" data-listid="9" 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;:[8226],&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"><b><span data-contrast="auto">Modify authentication attributes</span></b><span data-contrast="auto"> collected during sign-up or sign-in.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276}"> </span></li>
<li data-leveltext="" data-font="Symbol" data-listid="9" 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;:[8226],&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"><b><span data-contrast="auto">Configure claims</span></b><span data-contrast="auto"> returned in the JWT token.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276}"> </span></li>
</ul>
<p><span data-contrast="auto">These predefined flows are ideal for applications that require quick setup and basic identity management without extensive customization.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
<h3><span data-contrast="none">Custom Policies (Identity Experience Framework &#8211; IEF)</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:160,&quot;335559739&quot;:80,&quot;335559740&quot;:276}"> </span></h3>
<p><span data-contrast="auto">For more complex authentication requirements, custom policies offer greater control over every step of the identity journey. Unlike user flows, these policies are defined using XML files that refer to each other in a hierarchical structure.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
<p><span data-contrast="auto">Custom policies allow:</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
<ul>
<li data-leveltext="" data-font="Symbol" data-listid="10" 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;:[8226],&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"><b><span data-contrast="auto">Fine-grained control over authentication logic</span></b><span data-contrast="auto"> and user interactions.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276}"> </span></li>
<li data-leveltext="" data-font="Symbol" data-listid="10" 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;:[8226],&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"><b><span data-contrast="auto">Integration with legacy identity providers (IDPs)</span></b><span data-contrast="auto"> via SAML, OAuth2, and REST APIs.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276}"> </span></li>
<li data-leveltext="" data-font="Symbol" data-listid="10" 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;:[8226],&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"><b><span data-contrast="auto">Implementation of advanced security measures</span></b><span data-contrast="auto">, such as risk-based authentication.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276}"> </span></li>
</ul>
<p><span data-contrast="auto">While both user flows and custom policies support attribute customization, session management, and UI customization, custom policies provide significantly more flexibility at the cost of increased complexity.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
<h2><span data-contrast="none">A Few Interesting Custom Flows</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:360,&quot;335559739&quot;:80,&quot;335559740&quot;:276}"> </span></h2>
<p><span data-contrast="auto">Here are a few unique</span> <span data-contrast="auto">custom flows</span> <span data-contrast="auto">we implemented in Azure AD B2C to solve specific business challenges:</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
<h3><span data-contrast="none">Impersonation for Customer Support</span></h3>
<p><span data-contrast="auto">Some business scenarios require customer support agents to impersonate users for troubleshooting and better assistance. Since impersonation is not a built-in Azure AD B2C feature, we implemented a custom policy to enable this.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
<h4><span data-contrast="none">Implementation</span><b><span data-contrast="auto">:</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></h4>
<ul>
<li data-leveltext="" data-font="Symbol" data-listid="11" 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;:[8226],&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">Customer support agents log in via an external IDP (Microsoft).</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276}"> </span></li>
<li data-leveltext="" data-font="Symbol" data-listid="11" 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;:[8226],&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">The system verifies their credentials and retrieves their role and permissions from the b2c-extension-app.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276}"> </span></li>
<li data-leveltext="" data-font="Symbol" data-listid="11" 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;:[8226],&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">Agents enter the email address of the customer they want to impersonate.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276}"> </span></li>
<li data-leveltext="" data-font="Symbol" data-listid="11" 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;:[8226],&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">The system fetches customer information from the user directory and grants access via a modified JWT token.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276}"> </span></li>
</ul>
<p><span data-contrast="auto">This solution ensures security, traceability, and compliance while maintaining a seamless support experience.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
<h3><span data-contrast="none">Legacy IDP Authentication via REST API</span></h3>
<p><span data-contrast="auto">Organizations migrating from a legacy identity provider often need to validate users against the old system before transitioning to Azure AD B2C.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
<h4><span data-contrast="none">Implementation</span><b><span data-contrast="auto">:</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></h4>
<ul>
<li data-leveltext="" data-font="Symbol" data-listid="12" 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;:[8226],&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 built a REST API integration with the legacy IDP.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276}"> </span></li>
<li data-leveltext="" data-font="Symbol" data-listid="12" 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;:[8226],&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">During login, Azure AD B2C calls the API to verify legacy user credentials before issuing a token.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276}"> </span></li>
<li data-leveltext="" data-font="Symbol" data-listid="12" 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;:[8226],&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">Once validated, users are migrated to Azure AD B2C seamlessly.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276}"> </span></li>
<li data-leveltext="" data-font="Symbol" data-listid="12" 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;:[8226],&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">Optionally, you can have the users forcefully reset their password after migration to Azure AD B2C to meet the standard password policies.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276}"> </span></li>
</ul>
<p><span data-contrast="auto">This method enables a smooth and secure migration without disrupting user access.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
<h3><span data-contrast="none">Custom Email Verification via SendGrid</span></h3>
<p><span data-contrast="auto">By default, Azure AD B2C uses Microsoft’s email verification for account sign-ups. However, some businesses prefer using third-party email providers like SendGrid for greater control over branding, analytics, and deliverability.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
<h4><span data-contrast="none">Implementation</span><b><span data-contrast="auto">:</span></b><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></h4>
<ul>
<li data-leveltext="" data-font="Symbol" data-listid="13" 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;:[8226],&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 replaced the built-in email verification process with a custom SendGrid integration via a RESTful API call.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276}"> </span></li>
<li data-leveltext="" data-font="Symbol" data-listid="13" 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;:[8226],&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">It requires to have a SendGrid account setup in advance along with an API key stored in the Azure Policy Keys which is used to authenticate any HTTP requests made to it.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276}"> </span></li>
<li data-leveltext="" data-font="Symbol" data-listid="13" 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;:[8226],&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">This allowed personalized email templates with the help of dynamic templates and place holder variables.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276}"> </span></li>
<li data-leveltext="" data-font="Symbol" data-listid="13" 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;:[8226],&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">SendGrid supports multiple languages, improves tracking of email delivery and provide analytics regarding the engagement.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276}"> </span></li>
</ul>
<p><span data-contrast="auto">This approach ensures better user engagement and customized user experience through email.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
<h2><span data-contrast="none">Advantages and </span><span data-contrast="none">Limitations</span></h2>
<p><span data-contrast="none">Advantages</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:160,&quot;335559739&quot;:80,&quot;335559740&quot;:276}"> </span></p>
<ul>
<li data-leveltext="·" data-font="Symbol" data-listid="15" 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;:[8226],&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">Azure AD B2C is cloud-native solution which makes it highly scalable to handle millions of users while meeting the industry standards of compliance and security.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:540,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276,&quot;335559991&quot;:360}"> </span></li>
<li data-leveltext="·" data-font="Symbol" data-listid="15" 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;:[8226],&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">User management and authentication is easier as Azure B2C handles most of it for you and provides you with the options of integrating with identity federations and enterprise providers.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:540,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276,&quot;335559991&quot;:360}"> </span></li>
<li data-leveltext="·" data-font="Symbol" data-listid="15" 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;:[8226],&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">Azure AD B2C requires no on-premises identity management solutions and requires minimal setup and development effort as it provides easy to configure authentication flows.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:540,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276,&quot;335559991&quot;:360}"> </span></li>
<li data-leveltext="·" data-font="Symbol" data-listid="15" 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;:[8226],&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">Azure AD B2C is cost efficient as you are charged based on Monthly Active Users (MAU) and is easy to integrate with applications developed using the modern technical stack.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:540,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276,&quot;335559991&quot;:360}"> </span></li>
</ul>
<p><span data-contrast="none">Limitations</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:160,&quot;335559739&quot;:80,&quot;335559740&quot;:276}"> </span></p>
<ul>
<li data-leveltext="·" data-font="Symbol" data-listid="14" 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;:[8226],&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">Azure B2C provides limited customizations within the user flows and restricts the developers to use at most one external API call.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:540,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276,&quot;335559991&quot;:360}"> </span></li>
<li data-leveltext="·" data-font="Symbol" data-listid="14" 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;:[8226],&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">Working with custom policies requires deeper understanding of XML configurations, orchestration steps, technical profiles and claim transformations.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:540,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276,&quot;335559991&quot;:360}"> </span></li>
<li data-leveltext="·" data-font="Symbol" data-listid="14" 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;:[8226],&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">Debugging any errors within XML or issues during the user journeys is very difficult due to limited and non-descriptive error messages and logging.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:540,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:276,&quot;335559991&quot;:360}"> </span></li>
<li data-leveltext="·" data-font="Symbol" data-listid="14" 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;:[8226],&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">Documentation from Microsoft do not talk in detail about the advanced and more complex scenarios, making Azure B2C seem more like a black box.</span></li>
</ul>
<h2><span data-contrast="none">Conclusion</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;134245418&quot;:true,&quot;134245529&quot;:true,&quot;201341983&quot;:0,&quot;335551550&quot;:6,&quot;335551620&quot;:6,&quot;335559738&quot;:360,&quot;335559739&quot;:80,&quot;335559740&quot;:276}"> </span></h2>
<p><span data-contrast="auto">Azure AD B2C is a </span><span data-contrast="auto">powerful, scalable, and secure</span><span data-contrast="auto"> identity management solution for B2C applications, providing </span><span data-contrast="auto">SSO, API security, and seamless integrations with third-party providers</span><span data-contrast="auto">.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
<p><span data-contrast="auto">For simple authentication needs, </span><span data-contrast="auto">user flows are quick and easy</span><span data-contrast="auto"> to implement. However, for businesses requiring advanced customization, </span><span data-contrast="auto">custom policies offer greater flexibility</span><span data-contrast="auto">—but at the cost of </span><span data-contrast="auto">higher complexity</span><span data-contrast="auto"> and </span><span data-contrast="auto">longer development time</span><span data-contrast="auto">.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
<p><span data-contrast="auto">By carefully choosing the right approach—</span><span data-contrast="auto">user flows for standard implementations and custom policies for unique identity experiences</span><span data-contrast="auto">—organizations can maximize the benefits of Azure AD B2C while mitigating its limitations.</span><span data-ccp-props="{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:276}"> </span></p>
]]></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>CA GovOps Press Release: California Signs Partnerships to Utilize GenAI</title>
		<link>https://www.symsoftsolutions.com/digital-experience/ca-govops-press-release-california-signs-partnerships-to-utilize-genai/</link>
		
		<dc:creator><![CDATA[Bhavik Patel]]></dc:creator>
		<pubDate>Fri, 10 May 2024 19:43:00 +0000</pubDate>
				<category><![CDATA[Digital Experience]]></category>
		<category><![CDATA[Employee Experience]]></category>
		<guid isPermaLink="false">https://www.symsoftsolutions.com/?p=12688</guid>

					<description><![CDATA[PRESS RELEASE: California Signs Partnerships to Utilize GenAI (Click here for Official GovOps Press Release) Date: May 9, 2024 WHAT YOU NEED TO KNOW: Leading companies will utilize cutting-edge technology for five specific challenges, working with state teams on how GenAI can enhance customer service, improve health care facility inspections for better care, reduce highway [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><strong>PRESS RELEASE: California Signs Partnerships to Utilize GenAI<br />
(<a href="https://www.govops.ca.gov/wp-content/uploads/sites/11/2024/05/GenAI-awards-press-release_Final_5.9.2024_.docx" target="_blank" rel="noopener">Click here for Official GovOps Press Release</a>)<br />
</strong></p>
<p><strong>Date: May 9, 2024</strong></p>
<p><strong>WHAT YOU NEED TO KNOW</strong>: Leading companies will utilize cutting-edge technology for five specific challenges, working with state teams on how GenAI can enhance customer service, improve health care facility inspections for better care, reduce highway congestion, improve safety for vulnerable roadway users, and improve language access.</p>
<p>SACRAMENTO – California is continuing to implement Governor Gavin Newsom’s <a href="https://www.gov.ca.gov/wp-content/uploads/2023/09/AI-EO-No.12-_-GGN-Signed.pdf" target="_blank" rel="noopener">Executive Order on Generative Artificial Intelligence</a> (GenAI), entering into agreements with five vendors to test, iterate and evaluate GenAI through proofs of concept (POCs). Vendors will utilize GenAI technologies developed by OpenAI, Anthropic, Google, Meta, and others to develop these solutions. The cloud environments used will be Amazon (AWS) Cloud, Google Cloud, Microsoft Azure and ServiceNow (SaaS).</p>
<p>The state will pay each proof-of-concept vendor $1 to test in the “sandbox”, a secure and isolated testing environment. This gives the state and the vendors time to see what works, what doesn’t, and make necessary adjustments during a 6-month window.</p>
<p>“We are now at a point where we can begin understanding if GenAI can provide us with viable solutions while supporting the state workforce,” said Amy Tong, Secretary of the California Government Operations Agency. “Our job is to learn by testing, and we’ll do this by having a human in the loop at every step so that we’re building confidence in this new technology.”</p>
<p><a href="https://www.govops.ca.gov/wp-content/uploads/sites/11/2024/05/GenAI-awards-press-release_Final_5.9.2024_.docx" target="_blank" rel="noopener">Download the complete GovOps press release for additional information</a>.</p>
<p>SymSoft is thrilled to have been selected for the GenAI POC for the California Department of Tax and Fee Administration (CDTFA). As quoted in the press release:</p>
<p>“SymSoft is enthusiastic about the potential of Generative AI to elevate Customer Service and Customer Engagement,” said Savita Farooqui, Director of Research, SymSoft Solutions. Our approach not only enhances operational efficiency but also enriches the customer experience. By implementing robust AI governance and effective safeguards, we are dedicated to delivering AI solutions that genuinely benefit our customers.”</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>Agile Project Management and Organizational Partnership in an Intranet Project</title>
		<link>https://www.symsoftsolutions.com/sitecore/agile-project-management-and-organizational-partnership-in-an-intranet-project/</link>
		
		<dc:creator><![CDATA[SymSoft Solutions]]></dc:creator>
		<pubDate>Thu, 18 Feb 2021 19:35:04 +0000</pubDate>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[Digital Experience]]></category>
		<category><![CDATA[Employee Experience]]></category>
		<guid isPermaLink="false">https://www.symsoftsolutions.com/?p=8110</guid>

					<description><![CDATA[This article is the second part of our Department of Water Resources’ Intranet case study that Bianca Sievers, Kevin See, and Bhavik Patel presented at Sitecore Symposium 2020. In case you missed it, read the previous part about Intranet business opportunities and how to identify them. Kevin shares his perspective—and we further elaborate—on: Forming partnerships [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>This article is the second part of our Department of Water Resources’ Intranet case study that Bianca Sievers, Kevin See, and Bhavik Patel presented at Sitecore Symposium 2020. In case you missed it, read the previous part about <a href="https://www.symsoftsolutions.com/sitecore/intranet-business-opportunities-and-how-to-identify-them/">Intranet business opportunities and how to identify them</a>.</p>



<p>Kevin shares his perspective—and we further elaborate—on:</p>



<ol class="wp-block-list"><li><a href="#forming-partnerships" class="rank-math-link">Forming partnerships up, down, and across the organization.</a></li><li><a href="#intranet-vendor" class="rank-math-link">How to select the right vendor partner for the intranet project?</a></li><li><a href="#accelerate-timeline" class="rank-math-link">How to deliver a project in 90 days by accelerating the project timeline?</a></li><li><a href="#rapid-prototyping" class="rank-math-link">How can rapid prototyping be incorporated into a time-constrained project?</a></li></ol>



<p>Watch the video starting at about 3 minutes in, or skip to specific parts using the links above.</p>



<p></p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="Building an Engaging Intranet with Sitecore" width="1080" height="608" src="https://www.youtube.com/embed/-keK_3WQd8Y?start=174&#038;feature=oembed"  allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div></figure>



<p>DWR’s intranet project was successful in large part because of the stakeholders’ attention and the team’s dedication. To deliver the project in such a short timeframe (90 days), we needed to form strong partnerships:</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p><strong><em>Kevin See:</em></strong><em> Now, here comes the fun part. How did we do it? We had to form partnerships — the partnership with the business, the partnership with technology, and of course, our vendor partnership. The first really big piece is — our director was in full support of this initiative, but we also had executive sponsorship from our deputy director of business operations, which runs the horizontal business. So everything from HR to IT is run under business operations.</em></p><p><em>The next part is the partnership between the director’s office, where Bianca is at, and the technology office [Kevin’s office]. Bianca represents the policy, the content, and the features people want. I represent the technology in terms of how we did it.</em></p><p><em>The last very important piece is that partner engagement. We had to find a partner that met the speed we wanted to go with, that also shared the same values, vision, and goals that we wanted to share. And have the flexibility to dynamically shift where we needed to to get the job done. And that was really [the case] with our SymSoft partner and working with Bhavik.</em></p></blockquote>



<p><em>[The transcript was edited for clarity and brevity from the original audio recording. References to the slides were removed from the transcript.]</em></p>



<h2 class="wp-block-heading" id="forming-partnerships"><strong>Forming partnerships up, down, and across the organization is crucial for the success of an intranet project.</strong></h2>



<p>In a typical project, vertical communication between supervisors and their reports is a natural extension of a regular reporting routine. Many times though, that same routine and reporting frameworks can steal attention from the project at hand, because other things may take priority or urgency, and meetings may be repurposed for other pressing topics. Also, while it makes perfect sense to include stakeholders from across different divisions and offices, oftentimes their attention is elsewhere, and their calendars are difficult to coordinate.&nbsp;&nbsp;</p>



<p>In short, partnerships require dedication, structure, and excitement, which is in many cases much easier to accomplish if the team is nimble and focused and the communication is direct and candid, instead of managed and indirect.</p>



<p>Not everyone has the opportunity to form small teams as we had at the DWR’s project. This is why in large organizations, we often suggest inviting divisional representatives with decision-making power delegated by the division’s head. And especially if the division executives are stretched too thin by directly participating in the project. A useful model for defining stakeholder roles and responsibilities is the <a href="https://www.cio.com/article/2395825/project-management-how-to-design-a-successful-raci-project-plan.html" target="_blank" rel="noopener">RACI matrix</a>, which describes who is Responsible, Accountable, Consulted, and Informed.</p>



<p>To secure resources and bandwidth across divisions get executive support with a clear vision for the project’s success. Equip your leadership with talking points and clear engagement requirements, so that they can relay the message with better clarity about the timelines, efforts, expectations, and specific action items. It’s much easier for divisions to commit resources when expectations are clear.</p>



<h2 class="wp-block-heading" id="intranet-vendor"><strong>How to select the right vendor partner for the intranet project?</strong></h2>



<p>To identify whether the vendor partnership will be successful, it’s useful to ask a few questions:</p>



<ol class="wp-block-list"><li><strong>What type(s) of vendor contributors are you going to collaborate with during the course of the project?</strong> Will you work with the experts directly, or will someone be a liaison between you and the expert? Are you looking for a vendor that can participate in strategic decisions, or are you looking at the production partner only? </li><li><strong>What is the team’s availability for the length of the project?</strong> Who is engaged at different stages of the project? What will the handover from discovery, to design, to development, to deployment look like? Is there any quality control to ensure a smooth transition between different stages of the project?</li><li><strong>What are some other functions inside the client organization that might contribute to the project?</strong> What will be their availability? Will we get reviews and approvals in a timely manner? How will the project team present work in progress to internal stakeholders and seek feedback?</li></ol>



<p>Asking these questions from the perspective of the project goal will help you realistically allocate internal resources, budget for external help, and set timeline expectations.&nbsp;</p>



<p>Now that we identified partnership considerations, let’s explore some practical tips and tricks that can help us accelerate project delivery.&nbsp;</p>



<h2 class="wp-block-heading" id="accelerate-timeline"><strong>How to deliver a project in 90 days by accelerating the project timeline?</strong></h2>



<p>Let’s start with Kevin’s insights from the intranet project:</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p><strong><em>Kevin See:</em></strong><em> The “how” part is the agile delivery model. We had 90 days to get it done. Why 90 days? We had to get it done by Christmas time. That was our goal. Our time and our resources were tightly controlled. Our scope was to build an awesome and engaging intranet that employees love. It is very broad in scope in terms of what it’s going to be delivered.</em></p><p><em>Our time, as I mentioned, 90 days, got to get it done by Christmas time. Our resources? Well, that was our team. We had the resources that we had, and that was it. So we had to do all that within this very short and tight scope and build the intranet that people would use.</em></p><p><em>Decision- and policy-makers were a part of the product team. It wasn’t where we had a decision- and policy-makers that met once a month to talk about where the challenges are. The typical process in terms of how it goes is a steering committee. [But] they were actually a part of the team on a day-to-day basis. Bianca and I met literally every day or every other day. Between Bianca, Bhavik, and myself, we saw each other more than we saw our families within this 90-day timeframe. We shared a single vision, the vision of building the intranet that employees love, the vision of building the intranet within 90 days. And to get it done.</em></p></blockquote>



<h3 class="wp-block-heading"><strong>How did we apply agile delivery to the DWR’s intranet project?</strong></h3>



<p>To help us accelerate the project timeline, we used the agile delivery model and rapid prototyping (more about rapid prototyping below). We were able to utilize agile delivery because we met a couple of important essential ingredients:</p>



<ol class="wp-block-list"><li><strong>We worked as a small, fast team.</strong> While it is possible to apply agile delivery to a much bigger team of teams, it would require some preparation time to organize decentralized communication between smaller teams that follow the agile approach. We didn’t have the luxury to step back, so individual team members instead prioritized this project and focused on fully understanding the ins and outs in order to make informed decisions. By keeping the team small, we completely removed any overhead.</li></ol>



<ol class="wp-block-list" start="2"><li><strong>We communicated daily. </strong>Granted, daily communication wouldn’t be possible with a much larger team spread across multiple projects. The cost of task and project switching would be too high, and it would require additional effort to maintain the common vision and priorities.</li></ol>



<ol class="wp-block-list" start="3"><li><strong>We provided feedback instantly.</strong> When the team is focused on the project with little to no distractions, feedback and decisions are made on-the-fly and based on shared understanding and common knowledge of the project.</li></ol>



<ol class="wp-block-list" start="4"><li><strong>We made quick adjustments and shortened release cycles.</strong> Because the team was very intimate with the technical platform (Sitecore), it was possible for us to update and compile features and to try different options. This wouldn’t be possible without both content and platform owners’ expertise in content publishing on the Web.&nbsp;</li></ol>



<ol class="wp-block-list" start="5"><li><strong>We trusted one another.</strong> To develop trust, it is important to have a vision of the outcome that is attainable as well as assemble a team that shares that vision. A clear vision also helps with prioritizing features.</li></ol>



<ol class="wp-block-list" start="6"><li><strong>We prioritized features based on the project goals. </strong>As we were developing and implementing features, we developed a good sense of how much each addition or change would impact timelines and efforts. Instead of only focusing on development time, we also considered organizational policies and content governance. A good method for feature prioritization is the <a href="https://en.wikipedia.org/wiki/MoSCoW_method" target="_blank" rel="noopener">MoSCoW analysis</a> that identifies Must-have, Should-have, Could-have, and Will-not-have features.</li></ol>



<p>If your organization hasn’t already adopted an agile methodology, we suggest trying it with a small team that can operate within the framework described above. It is also useful to start implementing agile in your organization by following the <a href="http://agilemanifesto.org/" target="_blank" rel="noopener">agile manifesto</a>:</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p><em>Individuals and interactions over processes and tools</em>.</p><p><em>Working software over comprehensive documentation</em>.</p><p><em>Customer collaboration over contract negotiation</em>.</p><p><em>Responding to change over following a plan</em>.</p></blockquote>



<h3 class="wp-block-heading"><strong>How to prepare for a tight deadline project?</strong></h3>



<p>Even if you don’t follow agile methodology, or are not sure if you’d end up applying it, any project can move quickly and meet deadlines with some basic preparation:</p>



<ol class="wp-block-list"><li>Commit to the minimum projects requirements.</li><li>Define project goals and success criteria.</li><li>Secure executive sponsorship.</li><li>Book important meetings far in advance.</li></ol>



<h3 class="wp-block-heading"><strong>How to keep the project moving?</strong></h3>



<p>There are also a number of simple practices teams can implement and stick to in order to keep making good progress and avoid pitfalls:</p>



<ol class="wp-block-list"><li><strong>Appoint a project manager</strong> who will attend all meetings, track decisions, and serve as an information hub. Best results are accomplished when they work closely with the vendor’s project manager.</li></ol>



<ol class="wp-block-list" start="2"><li><strong>Show something tangible early.</strong> It’s much more cost-effective to course-correct a proof of concept or a prototype than a fully developed project. Depending on the fidelity level, and stakeholder experience, it’s a good idea to present progress in a broader context of project requirements.</li></ol>



<ol class="wp-block-list" start="3"><li><strong>Keep key decision-makers in the loop</strong> by presenting small changes often. This will make it easy for them to recall the previous decisions and ask questions early, rather than approving a major milestone without enough context.</li></ol>



<ol class="wp-block-list" start="4"><li><strong>Contain the scope</strong> by always going back to the minimum project requirements. Any additional ideas and opportunities should be moved to the backlog and revised after the must-have features are designed, implemented, and tested.</li></ol>



<h2 class="wp-block-heading" id="rapid-prototyping"><strong>How can rapid prototyping be incorporated into a time-constrained project?</strong></h2>



<p>DWR’s team is a huge fan of rapid prototyping, especially since they were deeply invested in the project and excited about the possibilities. </p>



<p>The line between rapid prototyping and agile methodology is sometimes blurry. Rapid prototyping focuses on the software design from the user and business stakeholder perspective, while agile methodology applies to software development. The confusion stems from the fact that both are iterative methodologies with short release cycles, and both can be performed in the software environment. Still, it’s important to remember that prototypes are not production-ready.&nbsp;</p>



<p>For example, before committing to a full-blown web form that connects to various systems and databases, you might embed a <a href="https://www.google.com/forms/" target="_blank" rel="noopener">Google Form</a> into a page to validate the user flow. Or, before committing to a custom developed data-dashboard, you might embed a <a href="https://www.tableau.com/" target="_blank" rel="noopener">Tableau</a> prototype as an iframe. Yet another example is prototyping a widget without actually connecting it to the database. None of these examples would be shipped to production, but would give everyone a good idea of whether the feature makes sense to develop further or not.</p>



<p>Compared to the waterfall approach, which includes detailed planning and rigid requirements <em>outside</em> of the development environment, rapid prototyping enables quick validation of scaled features and provides a short feedback loop. In short, rapid prototyping boosts decision-making processes, dramatically reducing refactoring in the actual development phase.</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p><strong><em>Kevin See: </em></strong><em>We’ve done a lot of things in terms of rapid prototyping, meaning: what we saw in the morning could be dramatically different by the evening time. It can be 180 degrees. “You know what? That feature worked. [Or] it didn’t work.” What was the benefit behind that? We might have lost a couple of hours. In a typical development timeframe, a feature might take weeks or months to get done, and you lost all that time. But we worked with a partner, with a business that really was aligned with what we were trying to do, and that is to get the job done, and course-correct and shift, as fast as we want to shift and course-correct.</em></p><p><em>I think this was pivotal in terms of getting the platform that can do that, finding a partner that’s willing to do that with you, and a business that is truly engaged and is a part of that process. “Yep, that didn’t work. Let’s move on. Yep, that worked. Let’s move on.” And I think this is key in how we got this thing done within this very tight and short timeframe of building the Department of Water Resources’ intranet.</em></p></blockquote>



<p>As previously mentioned, rapid prototyping goes hand in hand with the agile methodology, because it streamlines quick adjustments and shortened release cycles. However, it is the most suitable for experienced teams who can make such quick changes, validate options with stakeholders, and make informed decisions. This can also be a disadvantage, since rapid prototyping requires the most knowledgeable and experienced personnel.</p>



<p>Lastly, rapid prototyping is also effective in MVP (minimum viable product) development, where the PoC (proof of concept) is more important than a specific implementation approach. When the timeline is short, rapid prototyping results in a tangible output very early. Once approved, the MVP can be moved into the development phase.</p>



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



<p>While large-scale capital projects can be delivered in a very short timeframe, they require an experienced team, executive support, and dedicated stakeholders. By applying methodologies and frameworks, such as RACI stakeholder roles, MoSCoW prioritization, agile project management, and rapid prototyping, even the most challenging projects can be delivered on time and budget.</p>



<p>Have a massive project that needs to be delivered fast? <a href="https://www.symsoftsolutions.com/contact/">Contact us and let’s start the conversation</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>What to Consider When Planning a Government Website Redesign</title>
		<link>https://www.symsoftsolutions.com/sitecore/what-to-consider-when-planning-a-government-website-redesign/</link>
		
		<dc:creator><![CDATA[Daniel Calzada]]></dc:creator>
		<pubDate>Thu, 11 Feb 2021 21:35:58 +0000</pubDate>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[Digital Experience]]></category>
		<category><![CDATA[Web Design]]></category>
		<guid isPermaLink="false">https://www.symsoftsolutions.com/?p=8075</guid>

					<description><![CDATA[Incorporating relevant tasks and deliverables when planning a website redesign or implementation project will significantly impact the overall project approach and outcomes. While identifying most of the features, requirements, and deliverables is a straight-forward process, there are a few critical activities that can be easily missed in the early stages of project planning.]]></description>
										<content:encoded><![CDATA[
<p>Incorporating relevant tasks and deliverables when planning a website redesign or implementation project will significantly impact the overall project approach and outcomes. While identifying most of the features, requirements, and deliverables is a straight-forward process, there are a few critical activities that can be easily missed in the early stages of project planning.</p>



<p>In over 15 years of redesigning websites and implementing Web content management systems for our enterprise and government clients, we have identified five essential activities that are often missed in the project planning. In such cases, the whole project might be at risk because time and internal resources are not allocated. Of course, when this happens, there are still ways to deliver a project, but it might require readjustment that could have been easily avoided altogether.</p>



<p>Before you plan for your next Web design or <a href="https://www.symsoftsolutions.com/content-management-systems/" class="rank-math-link">Web CMS implementation</a> project, we suggest you consider the following five activities of a successful redesign:</p>



<ol class="wp-block-list"><li><a href="#content-production-editing-and-migration" class="rank-math-link">Content Production, Editing, and Migration</a></li><li><a href="#web-content-accessibility-support" class="rank-math-link">Web Content Accessibility Support</a></li><li><a href="#application-and-system-integration" class="rank-math-link">Application and System Integration</a></li><li><a href="#organizational-change-management" class="rank-math-link">Organizational Change Management (OCM)</a></li><li><a href="#maintenance-and-support" class="rank-math-link">Maintenance and Support</a></li></ol>



<h2 class="wp-block-heading" id="content-production-editing-and-migration"><strong>1. Content Production, Editing, and Migration</strong></h2>



<p>Whether you are redesigning a site or launching a completely new website, content migration and new content production are critical activities that require careful planning and consideration.&nbsp;</p>



<p><a href="https://www.symsoftsolutions.com/content-services/" class="rank-math-link">Content updates and organization</a> typically require engagement of the content owners and subject matter experts, such as program managers or communication teams. Failure to plan for their involvement results in low engagement and unanticipated workloads that nobody allocated for. It is common for organizations at that point to step back and re-identify project stakeholders, which in many cases results in inconvenience and delays.</p>



<p>To avoid surprises down the road, ask the following questions:</p>



<ol class="wp-block-list"><li>How much content is currently there on the existing website?</li><li>Will all the current content be migrated to the new website?</li><li>Can content be archived?</li><li>Does some content belong to the Intranet or Extranet rather than the public-facing website?</li><li>What is the legally required content that needs to be migrated over to the new website?</li><li>Do you need to create any new content, or update any existing content for the new website?</li><li>Will you introduce new content formats, such as photography, illustrations, or video?</li><li>Who will produce or edit content?</li><li>Who will migrate the content?</li><li>Who will review and approve content editing and migration?&nbsp;</li></ol>



<p>Answering these questions prior to starting the project will help you define a more realistic scope, and identify additional resources needed to ensure the delivery of a comprehensive website solution.</p>



<h2 class="wp-block-heading" id="web-content-accessibility-support"><strong>2. Web Content Accessibility Support</strong></h2>



<p>Accessible websites combine accessibility compliant platforms (e.g. content management systems or document filing systems) and accessibility compliant content.</p>



<p>While most public sector website redesign or implementation projects require an accessibility compliant platform, software, and design system, content accessibility compliance workflows and procedures are often overlooked. This can create challenges after the project is completed and the website content continues to evolve, so it is essential to establish and adopt processes to <a href="https://www.symsoftsolutions.com/accessibility-compliance/" class="rank-math-link">monitor and ensure accessibility compliance</a> moving forward.</p>



<p>When planning your next accessibility compliant project, ask the following questions:</p>



<ol class="wp-block-list"><li>How will you test and validate website accessibility after the project is completed? How will you keep the website accessible? This is especially important in public sector websites that need to self-certify for accessibility compliance (<a href="https://www.symsoftsolutions.com/accessibility-compliance/becoming-ab434-compliant-a-step-by-step-guide/" class="rank-math-link">AB 434 in California</a>).</li><li>Are there any files and documents that need to be remediated for accessibility compliance before publishing on the website? (In many cases the answer is yes.) How many of such documents are already remediated? Do you have a strategy set in place to conduct remediation of the non-compliant files and documents? In our experience, the volume of documents that require at least some accessibility remediation comes as a surprise to many organizations.</li><li>Do you have the technical resources and expertise to maintain an accessibility compliant website? If not, how do you plan to address the gap?</li></ol>



<h2 class="wp-block-heading" id="application-and-system-integration"><strong>3. Application and System Integration</strong></h2>



<p>Many organizations, especially in the public sector, provide website visitors access to <a href="https://www.symsoftsolutions.com/enterprise-mobile-applications/" class="rank-math-link">business applications</a> through their websites. These applications help with self-service tasks and therefore significantly optimize business processes, digital transactions, and time required to serve thousands and millions of users. Such applications are often the main reason users visit the website, so consider business application integration while planning for a website redesign or implementation project.</p>



<p>To help identify tasks and resources that should be part of your project, review all applications currently available to the users through the website. Consider engaging the business application owners and technical support groups in the planning.&nbsp;&nbsp;</p>



<p>In our experience, there are a few common scenarios:</p>



<ol class="wp-block-list"><li><strong>Business applications are kept as-is. </strong>They retain their look-and-feel and are hosted in the existing environment. Applications are not integrated with the main website but are merely hyperlinked. In this case, the user experience and accessibility could end up being suboptimal, but the project timelines are more predictable.</li><li><strong>Existing application rebranding and visual design alignment.</strong> This is a common option for organizations that are able to dedicate technical staff who can apply the main project’s design system to the business application.</li><li><strong>API development and integration.</strong> This is the most future-proof solution, depending on the CMS and how much development effort is required by the complexity of the business application. Benefits of API integrations include a unified brand and user experience because the user stays within the same website, which opens up possibilities for additional features such as content personalization or user profile functionalities.</li></ol>



<p>Sometimes, the rebranded applications are embedded through iframes. However, we strongly suggest avoiding this approach as it may create accessibility challenges that are expensive to address. Typically, video embeds are somewhat easier to maintain, but custom data dashboards might create more problems than benefits when embedded through an iframe.</p>



<p>As always, there are multiple solutions to a problem, but we recommend at least high-level planning, well in advance, to avoid surprises later in the process.</p>



<h2 class="wp-block-heading" id="organizational-change-management"><strong>4. Organizational Change Management (OCM)</strong></h2>



<p>Implementing new systems and tools may require changes to the organization’s internal processes, procedures, and day-to-day operations. Planning and managing the change is sometimes omitted from the project planning process, resulting in low stakeholder engagement and slow adoption.&nbsp;&nbsp;</p>



<p>When planning the project, changes and challenges that need to be identified include:</p>



<ol class="wp-block-list"><li>Changes in roles and responsibilities.&nbsp;&nbsp;</li><li>Implementation of new processes, policies, and procedures.</li><li>New resources, skills, or abilities required within the organization.</li><li>Legal requirements for implementing the changes.</li><li>Impact of the changes on the organization’s workload.&nbsp;&nbsp;</li></ol>



<p>We have partnered with many of our clients to help lead organizational change management throughout our projects, which has been vital for successful implementations and enduring solutions.</p>



<h2 class="wp-block-heading" id="maintenance-and-support"><strong>5. Maintenance and Support</strong></h2>



<p>Although most website redesign or implementation projects include a knowledge transfer deliverable, some miss the option of engaging the implementing partner to provide <a href="https://www.symsoftsolutions.com/cloud-devops/" class="rank-math-link">ongoing maintenance and support</a> after the project is complete.</p>



<p>Having maintenance and support in place allows organizations to gain additional knowledge of the solutions by monitoring issue resolution procedures, collaborating with the vendor to resolve real-life situations, and learning by doing. Having maintenance and support in place frees up internal resources to focus on more strategic tasks than day-to-day monitoring.</p>



<p>When planning the project, thinking about the organizational capabilities will provide you with a general idea of the maintenance and support requirements that should be included in the project&#8217;s scope. Consider:</p>



<ol class="wp-block-list"><li>Your organization’s familiarity with the platforms and technologies used in the project.</li><li>What resources will be available to support the solution after the new website is launched.&nbsp;&nbsp;</li></ol>



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



<p>We hope this list of considerations will give you a better idea on how to scope website redesign or Web CMS implementation projects in your organization.</p>



<p>For further questions, and help in scoping projects, please <a href="/contact/" class="rank-math-link">contact us</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
