Inboxes

Create an inbox to save and track emails. It's free!

+New inbox

<!DOCTYPE html>
<html lang="en" xmlns="//www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml">
 <head>
  <meta charset="utf-8"/>
  <meta content="width=device-width" name="viewport"/>
  <meta content="IE=edge" http-equiv="X-UA-Compatible"/>
  <meta name="x-apple-disable-message-reformatting"/>
  <meta content="telephone=no,address=no,email=no,date=no,url=no" name="format-detection"/>
  <meta content="light dark" name="color-scheme"/>
  <meta content="light dark" name="supported-color-schemes"/>
  <link href="https://fonts.googleapis.com" rel="preconnect"/>
  <link crossorigin="" href="https://fonts.gstatic.com" rel="preconnect"/>
  <title>
   Pluralsight
  </title>
  <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&amp;display=swap" rel="stylesheet" type="text/css"/>
  <style>
   /* What it does: Tells the email client that both light and dark styles are provided. A duplicate of meta color-scheme meta tag above. */
        :root {
          color-scheme: light dark;
          supported-color-schemes: light dark;
        }

        /* What it does: Remove spaces around the email design added by some email clients. */
        /* Beware: It can remove the padding / margin and add a background color to the compose a reply window. */
        html,
        body {
            margin: 0 auto !important;
            padding: 0 !important;
            height: 100% !important;
            width: 100% !important;
        }

        /* What it does: Stops email clients resizing small text. */
        * {
            -ms-text-size-adjust: 100%;
            -webkit-text-size-adjust: 100%;
        }

        /* What it does: Centers email on Android 4.4 */
        div[style*="margin: 16px 0"] {
            margin: 0 !important;
        }
        /* What it does: forces Samsung Android mail clients to use the entire viewport */
        #MessageViewBody, #MessageWebViewDiv{
            width: 100% !important;
        }

        /* What it does: Stops Outlook from adding extra spacing to tables. */
        table,
        td {
            mso-table-lspace: 0pt !important;
            mso-table-rspace: 0pt !important;
        }

        /* What it does: Fixes webkit padding issue. */
        table {
            border-spacing: 0 !important;
            border-collapse: collapse !important;
            table-layout: fixed !important;
            margin: 0 auto !important;
        }

        /* What it does: Uses a better rendering method when resizing images in IE. */
        img {
            -ms-interpolation-mode:bicubic;
        }

        /* What it does: Prevents Windows 10 Mail from underlining links despite inline CSS. Styles for underlined links should be inline. */
        a {
            text-decoration: none;
        }

        /* What it does: A work-around for email clients meddling in triggered links. */
        a[x-apple-data-detectors],  /* iOS */
        .unstyle-auto-detected-links a,
        .aBn {
            border-bottom: 0 !important;
            cursor: default !important;
            color: inherit !important;
            text-decoration: none !important;
            font-size: inherit !important;
            font-family: inherit !important;
            font-weight: inherit !important;
            line-height: inherit !important;
        }

        /* What it does: Prevents Gmail from changing the text color in conversation threads. */
        .im {
            color: inherit !important;
        }

        /* What it does: Prevents Gmail from displaying a download button on large, non-linked images. */
        .a6S {
            display: none !important;
            opacity: 0.01 !important;
        }
        /* If the above doesn't work, add a .g-img class to any image in question. */
        img.g-img + div {
            display: none !important;
        }

        /* What it does: Removes right gutter in Gmail iOS app: https://github.com/TedGoas/Cerberus/issues/89  */
        /* Create one of these media queries for each additional viewport size you'd like to fix */

        /* iPhone 4, 4S, 5, 5S, 5C, and 5SE */
        @media only screen and (min-device-width: 320px) and (max-device-width: 374px) {
            u ~ div .email-container {
                min-width: 320px !important;
            }
        }
        /* iPhone 6, 6S, 7, 8, and X */
        @media only screen and (min-device-width: 375px) and (max-device-width: 413px) {
            u ~ div .email-container {
                min-width: 375px !important;
            }
        }
        /* iPhone 6+, 7+, and 8+ */
        @media only screen and (min-device-width: 414px) {
            u ~ div .email-container {
                min-width: 414px !important;
            }
        }
  </style>
  <style>
   /* What it does: Hover styles for buttons */
	    /* .button-td,
	    .button-a {
	        transition: all 100ms ease-in;
	    }
	    .button-td-primary:hover,
	    .button-a-primary:hover {
	        background: #ff1675 !important;
	        border-color: #ff1675 !important;
	    } */

	    /* Media Queries */
	    @media screen and (max-width: 680px) {

	        /* What it does: Forces table cells into full-width rows. */
	        .stack-column,
	        .stack-column-center {
	            display: block !important;
	            width: 100% !important;
	            max-width: 100% !important;
	            direction: ltr !important;
                margin: 0 !important;
	        }
	        /* And center justify these ones. */
	        .stack-column-center {
	            text-align: center !important;
	        }
            /*Widens columns on small screens*/
            .wide-column {
                padding-left: 20px !important;
                padding-right: 20px !important;
                max-width: 100% !important;
            }
	        /* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */
	        .center-on-narrow {
	            text-align: center !important;
	            display: block !important;
	            margin-left: auto !important;
	            margin-right: auto !important;
	            float: none !important;
	        }
	        table.center-on-narrow {
	            display: inline-block !important;
	        }

	        /* What it does: Adjust typography on small screens to improve readability */
	        .email-container p {
	            font-size: 16px !important;
	        }
	    }

        /* Dark Mode Styles : BEGIN */
        @media (prefers-color-scheme: dark) {
            .email-bg {
                background: #130f25 !important;
            }
            .darkmode-bg {
                background: #242145 !important;
            }
            .darkmode-mod {
                background: #393b6b !important;
                box-shadow: none !important;
            }
            h1,
            h2,
            h3,
            p,
            li,
            .darkmode-text,
            .email-container a:not([class]) {
                color: #F7F7F9 !important;
            }
            .footer a:not([class]) {
                color: #8E93C2 !important;
            }

            /* Shows Dark Mode-Only Content, Like Images */
            .dark-img { 
                display:block !important; 
            }
            .dark-icon { 
                display:inline-block !important; 
            }
            /* Hides Light Mode-Only Content, Like Images */
            .light-img { 
                display:none !important; 
            }
            /* td.button-td-primary,
            td.button-td-primary a {
                background: #e7005e !important;
                border-color: #e7005e !important;
                color: #F7F7F7 !important;
            }
            td.button-td-primary:hover,
            td.button-td-primary a:hover {
                background: #ff1675 !important;
                border-color: #ff1675 !important;
            } */
            .footer td {
                background: #1B1834 !important;
                color: #8E93C2 !important;
            }
            /* .darkmode-fullbleed-bg {
                background-color: #0F3016 !important;
            } */
        }
        /* Dark Mode Styles : END */
  </style>
  <script src="https://go.pluralsight.com/rs/303-MNI-809/images/mktoeditorscript.js">
  </script>
 </head>
 <!--Yahoo and Aol Android apps will remove styles from the first <head> but will allow then in a second one-->
 <!-- utf-8 works for most cases -->
 <!-- Forcing initial-scale shouldn't be necessary -->
 <!-- Use the latest (edge) version of IE rendering engine -->
 <!-- Disable auto-scale in iOS 10 Mail entirely -->
 <!-- Tell iOS not to automatically link certain text strings. -->
 <!-- The title tag shows in email notifications, like Android 4.4. -->
 <!-- What it does: Makes background images in 72ppi Outlook render at correct size. -->
 <!--[if gte mso 9]>
    <xml>
        <o:OfficeDocumentSettings>
            <o:PixelsPerInch>96</o:PixelsPerInch>
        </o:OfficeDocumentSettings>
    </xml>
    <![endif]-->
 <!-- Web Font / @font-face : BEGIN -->
 <!-- Desktop Outlook chokes on web font references and defaults to Times New Roman, so we force a safe fallback font. -->
 <!--[if mso]>
        <style>
            * {
                font-family: sans-serif !important;
            }
        </style>
    <![endif]-->
 <!-- All other clients get the webfont reference; some will render the font and others will silently fail to the fallbacks. More on that here: https://web.archive.org/web/20190717120616///stylecampaign.com/blog/2015/02/webfont-support-in-email/ -->
 <!--[if !mso]><!-->
 <!--<![endif]-->
 <!-- Web Font / @font-face : END -->
 <!--Marketo Variables : BEGIN-->
 <!-- <meta class="mktoString" id="InboxPreviewText" mktoName="Inbox Preview Text" default=""> -->
 <!-- ***Note: commenting out preview text, we will use Marketo's preheader text email setting instead-->
 <!-- <meta class="mktoNumber" id="spacerHeight" mktoName="Spacer Height" default="20" min="5" max="40" units="px" step="5" mktoModuleScope="true"> -->
 <!-- <meta class="mktoString" id="transparentCTA" mktoName="Transparent CTA" default="padding: 0px !important; font-weight: bold; background-color: inherit; color:#e7005e !important" mktoModuleScope="false"> -->
 <!--Marketo Variables : END-->
 <!-- CSS Reset : BEGIN -->
 <!-- CSS Reset : END -->
 <!-- Progressive Enhancements : BEGIN -->
 <!-- Progressive Enhancements : END -->
 <!--Javascript for Marketo Editor 2.0 : BEGIN-->
 <!--Javascript for Marketo Editor 2.0 : END-->
 <!--
	The email background color #f4f7fa is defined in three places:
	1. body tag: for most email clients
	2. center tag: for Gmail and Inbox mobile apps and web versions of Gmail, GSuite, Inbox, Yahoo, AOL, Libero, Comcast, freenet, Mail.ru, Orange.fr
	3. mso conditional: For Windows 10 Mail
-->
 <body class="email-bg" style="margin: 0; padding: 0 !important; mso-line-height-rule: exactly; background-color: #f4f7fa; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important" width="100%">
  <style type="text/css">
   div#emailPreHeader{ display: none !important; }
  </style>
  <div id="emailPreHeader" style="mso-hide:all; visibility:hidden; opacity:0; color:transparent; mso-line-height-rule:exactly; line-height:0; font-size:0px; overflow:hidden; border-width:0; display:none !important;">
   Sign up and save 50%
  </div>
  <center aria-roledescription="email" class="email-bg" lang="en" role="article" style="width: 100%; background: #f4f7fa;">
   <!--[if mso | IE]>
    <table role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%" style="background-color: #F4F7FA;" class="email-bg">
    <tr>
    <td>
    <![endif]-->
   <!-- Visually Hidden Preheader Text : BEGIN -->
   <!-- ***Note: commenting out preview text, we will use Marketo's preheader text email setting instead-->
   <!-- <div style="max-height:0; overflow:hidden; mso-hide:all;" aria-hidden="true">
           
        </div> -->
   <!-- Visually Hidden Preheader Text : END -->
   <!-- Create white space after the desired preview text so email clients don’t pull other distracting text into the inbox preview. Extend as necessary. -->
   <!-- Preview Text Spacing Hack : BEGIN -->
   <div style="display: none; font-size: 1px; line-height: 1px; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; mso-hide: all;">
    ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­
   </div>
   <!-- Preview Text Spacing Hack : END -->
   <!--
            Set the email width. Defined in two places:
            1. max-width for all clients except Desktop Windows Outlook, allowing the email to squish on narrow but never go wider than 680px.
            2. MSO tags for Desktop Windows Outlook enforce a 680px width.
            Note: The Fluid and Responsive templates have a different width (600px). The hybrid grid is more "fragile", and I've found that 680px is a good width. Change with caution.
        -->
   <div class="email-container email-bg" style="width:100%; max-width: 100%; margin: 0 auto; background: #f4f7fa;">
    <!--[if mso]>
            <table align="center" role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
            <tr>
            <td>
            <![endif]-->
    <!--Email Header + Body : BEGIN-->
    <div class="email-container email-bg" style="max-width: 680px; margin: 0 auto;">
     <!--[if mso]>
                <table align="center" role="presentation" cellspacing="0" cellpadding="0" border="0" width="680">
                <tr>
                <td>
                <![endif]-->
     <!--View as Webpage : BEGIN-->
     <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="margin: auto;" width="100%">
      <tbody>
       <tr>
        <td style="padding: 5px; text-align: center;">
         <a style="margin: 0; font-size: 10px; text-decoration: underline; color: #130f25; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important;">
          View this email as a web page
         </a>
        </td>
       </tr>
      </tbody>
     </table>
     <!--View as Webpage : END-->
     <!-- Email Header Logo : BEGIN -->
     <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="margin: auto;" width="100%">
      <tbody>
       <tr>
        <td style="padding: 40px 0; text-align: center">
         <a>
          <img alt="Pluralsight Logo" border="0" class="light-img" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252FPluralsight-Logo-Horizontal-Color-Fill.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2MTAyMDAuMDc4MjY0NX0:1rQZ7w:XJomMutwISa6fFmrEHzKVVmZnWxkLDFp2c-SHYXWT-s" style="width:100%; max-width:172.5px; height: auto; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 15px; line-height: 15px;color: #130f25;" width="172.5"/>
         </a>
         <!--[if !mso]><! -->
         <a>
          <img alt="Pluralsight Logo" border="0" class="dark-img" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252FPluralsight-Logo-Horizontal-ColorWhite-Fill.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2MTAyMDAuMDc4ODcwM30:1rQZ7w:WCYdilFpVb9vbHe3Y2Y20hoDic76V5WnCAhwoIB9eD0" style="width:100%; max-width:172.5px; height: auto; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 15px; line-height: 15px;color: #130f25; display:none; margin:auto;" width="172.5"/>
         </a>
         <!--<![endif]-->
        </td>
       </tr>
      </tbody>
     </table>
     <!-- Email Header Logo : END -->
     <!-- Email Body w Round Corners : BEGIN-->
     <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="margin: 0 auto;" width="100%">
      <tbody>
       <tr>
        <td align="center" bgcolor="#fefefe" border="0" cellpadding="0" cellspacing="0" class="darkmode-bg" role="presentation" style="margin:0 auto; padding: 0px; border-top-right-radius: 20px; border-top-left-radius: 20px; background-color: #fefefe;" width="100%">
         <!-- MKTO Container : BEGIN -->
         <table border="0" cellpadding="0" cellspacing="0" class="mktoContainer darkmode-text" id="container" role="presentation" style="margin: auto; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important;" width="100%">
          <tr class="mktoModule" id="heroImage27f9a8f4-ae0e-4c1b-9628-ee4dda01def8">
           <td align="center" class="email-bg" style="margin:0;padding:0; background-color: #f4f7fa;">
            <div class="mktoImg" id="heroImg5050a938-f40a-45d9-80cc-6ba4531039ba" mktolockimgsize="true" mktolockimgstyle="true">
             <a target="_blank">
              <img class="g-img" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252FEmail%2520Header-PS-LastChance.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2MTAyMDAuMDc4OTk4OH0:1rQZ7w:r99HHF3XmTpOw657tT7N7QxYx_oDVp5XYx8_w-5cxLE" style="width: 100%; max-width: 680px; height: auto; border-width: 0; border-top-right-radius: 20px; border-top-left-radius: 20px; background-color: #ff1675; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 24px; color: #130f25; margin: auto; display: block;"/>
             </a>
            </div>
           </td>
          </tr>
          <tr class="mktoModule" id="paragraph0121a605-a0b6-4f11-a36c-00a881dc313e">
           <td>
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
             <tbody>
              <tr>
               <td class="wide-column" style="padding-top:24px;padding-right:50px;padding-bottom:6px;padding-left:50px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 16px; line-height: 20px; color: #130f25;">
                <p class="mktoText" id="paragraphText0a68a313-735c-470b-a747-1a4e4e4ca710" style="margin: 0; font-size: 16px; line-height: 28px;color: #130f25; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: 500;">
                 Our big sale ends tomorrow. Don’t miss your chance to
                 <strong>
                  save 50%
                 </strong>
                 on Pluralsight Skills or A Cloud Guru.*
                 <br/>
                 <br/>
                 Start your Skills or ACG
                 <strong>
                  free trial
                 </strong>
                 today and then enroll at 50% off.
                </p>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="btnCta40689486-9d36-43a1-af69-ed73a8f7dfa3">
           <td class="wide-column darkmode-bg" style="padding-top:24px;padding-right:50px;padding-bottom:6px;padding-left:50px; background-color: #fefefe">
            <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="margin: auto;">
             <tbody>
              <tr>
               <td class="button-td button-td-primary" style="border-radius: 999px !important; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important;">
                <a class="button-a button-a-primary" style="padding: 18px 34px; border: 0px; text-decoration: none; display: block; border-radius: 999px !important; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 16px; background-color: #e7005e; color:#fefefe !important;">
                 Get 50% off Pluralsight Skills + 10-day free trial
                 <span style="display:none">
                  ›
                 </span>
                </a>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="btnCta1b2322fa-b129-475a-be5d-b1ef38cf70d0">
           <td class="wide-column darkmode-bg" style="padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px; background-color: #fefefe">
            <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="margin: auto;">
             <tbody>
              <tr>
               <td class="button-td button-td-primary" style="border-radius: 999px !important; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important;">
                <a class="button-a button-a-primary" style="padding: 18px 34px; border: 0px; text-decoration: none; display: block; border-radius: 999px !important; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 16px; background-color: #e7005e; color:#fefefe !important;">
                 Get 50% off ACG + 7-day free trial
                 <span style="display:none">
                  ›
                 </span>
                </a>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="fineprint7fe07ced-cbe8-458f-888c-e670d63a9c4c">
           <td>
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
             <tbody>
              <tr>
               <td class="wide-column" style="padding-top:24px;padding-right:50px;padding-bottom:24px;padding-left:50px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 11px; color: #130f25;">
                <p class="mktoText" id="fineprintTextfa046a97-cf4d-481c-b3a7-7a2582fa24fa" style="margin: 0; font-size: 11px; font-style: italic; color: #130f25; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important;">
                 <em>
                  *Offer valid from 12 a.m. MT on November 21, 2023, until 11:59 p.m. MT on December 5, 2023, and applies only to customers who purchase new subscriptions, renew, or upgrade. Discount cannot be retroactively applied to existing subscriptions. Offer may not be combined with other offers and includes access to the Pluralsight Skills platform only. Purchases made in connection with this offer are subject to the
                  <span style="text-decoration: underline;">
                   <a id="" target="_blank">
                    Terms of Use
                   </a>
                  </span>
                  .
                 </em>
                </p>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule footer" id="defaultFooter">
           <td bgcolor="#E6EDF4" class="footer" style="background-color:#E6EDF4; padding: 40px 20px 0px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 12px; line-height: 15px; text-align: center; color: #242145 !important;">
            <table border="0" cellpadding="0" cellspacing="0" class="footer" role="presentation" style="max-width:680px">
             <!--LOGO : BEGIN-->
             <tbody>
              <tr>
               <td style="padding: 30px 0; text-align: center">
                <a>
                 <img alt="Pluralsight Logo" border="0" class="light-img" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252FPluralsight-Logo-Horizontal-Color-Fill.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2MTAyMDAuMDc5MTA4fQ:1rQZ7w:V1oRa3xWm0jvdVNGG59Zkj3ttX9SWrMAptLUKVKKA8E" style="width:100%; max-width:200px; height: auto; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 12px; line-height: 15px;color: #242145; margin:auto" width="200px"/>
                </a>
                <!--[if !mso]><! -->
                <a>
                 <img alt="Pluralsight Logo" border="0" class="dark-img" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252FPluralsight-Logo-Horizontal-ColorWhite-Fill.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2MTAyMDAuMDc5MjEyfQ:1rQZ7w:nyUDkOgZ8Rg3MVfANCBq6S8K8HGyv5fAEoC_LjssiI8" style="width:100%; max-width:200px; height: auto; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 12px; line-height: 15px;color: #242145; margin:auto; display:none" width="200px"/>
                </a>
                <!--<![endif]-->
               </td>
              </tr>
              <!--LOGO : END-->
              <!--Download Buttons : BEGIN-->
              <tr>
               <td style="padding:20px 0; text-align: center">
                <a style="padding: 20px 10px; text-align: center" target="_blank">
                 <img alt="Get it on Google Play" border="0" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252Fget-googleplay.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2MTAyMDAuMDc5MzE5Mn0:1rQZ7w:7w_JXMiPPxsAxOI4d1JqoRUWriyR7bwnGKn9dHXdux0" style="vertical-align:top; max-width:117.5px; height: auto; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 12px; line-height: 15px;color: #242145;" width="40%"/>
                </a>
                <a style="padding: 20px 10px; text-align: center" target="_blank">
                 <img alt="Download on the App Store" border="0" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252Fdownload-apple.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2MTAyMDAuMDc5NDIxfQ:1rQZ7w:b7rAxRHL4QPFfIHNii8ftUIZxYZzqZQoohIeEbQuTEY" style="vertical-align:top; max-width:117.5px; height: auto; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 12px; line-height: 15px;color: #242145;" width="40%"/>
                </a>
               </td>
              </tr>
              <!--Download Buttons : END-->
              <!--Social Icons : BEGIN-->
              <tr>
               <td style="padding: 20px 0; text-align: center; color: #242145 !important;">
                <!--Icons by icons8.com-->
                <a style="padding: 10px 10px; text-align: center" target="_blank">
                 <img alt="Instagram" border="0" class="light-img" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252FD-instagram-50.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2MTAyMDAuMDc5NTIwN30:1rQZ7w:jFcXkZD4IXnMJI-j-qSS13pOMhAdj_Q5LSaD_tkMS1Q" style="width: auto; height: 20px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 12px; line-height: 15px;color: #242145;" width="auto"/>
                 <!--[if !mso]><! -->
                 <img alt="Instagram" border="0" class="dark-icon" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252FL-instagram-50.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2MTAyMDAuMDc5NjE2NX0:1rQZ7w:aTBqz1LGUh2gSHowcnoqNspYSn-KE5KzKCtJaG3S7Yc" style="width: auto; height: 20px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 12px; line-height: 15px;color: #242145; display:none" width="auto"/>
                 <!--<![endif]-->
                </a>
                <a style="padding: 10px 10px; text-align: center" target="_blank">
                 <img alt="Facebook" border="0" class="light-img" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252FD-facebook-64.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2MTAyMDAuMDc5NzE3Mn0:1rQZ7w:IMF5CJtk3xV-hoWDBK01tMujZKRGuXEe_t7yERKySq8" style="width: auto; height: 20px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 12px; line-height: 15px;color: #242145;" width="auto"/>
                 <!--[if !mso]><! -->
                 <img alt="Facebook" border="0" class="dark-icon" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252FL-facebook-64.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2MTAyMDAuMDc5ODA5NH0:1rQZ7w:XsOnyDIOCon5BkpBpbO5LGB_gqgVckqPNJDllE6wK5Q" style="width: auto; height: 20px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 12px; line-height: 15px;color: #242145; display:none" width="auto"/>
                 <!--<![endif]-->
                </a>
                <a style="padding: 10px 10px; text-align: center" target="_blank">
                 <img alt="YouTube" border="0" class="light-img" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252FD-youtube-64.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2MTAyMDAuMDc5OTAyMn0:1rQZ7w:iHEip6a650aufdHj64pNifYGjQaH-AfoPKo0D76UPUk" style="width: auto; height: 20px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 12px; line-height: 15px;color: #242145;" width="auto"/>
                 <!--[if !mso]><! -->
                 <img alt="YouTube" border="0" class="dark-icon" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252FL-youtube-64.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2MTAyMDAuMDc5OTk0N30:1rQZ7w:fcN6dWa3p4AOysl8923g-ISPgJHM8RJdo6BcPj_77nw" style="width: auto; height: 20px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 12px; line-height: 15px;color: #242145; display:none" width="auto"/>
                 <!--<![endif]-->
                </a>
                <a style="padding: 10px 10px; text-align: center" target="_blank">
                 <img alt="LinkedIn" border="0" class="light-img" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252FD-linkedin-64.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2MTAyMDAuMDgwMDkyNH0:1rQZ7w:NFU15GaQQevW1dUT1U_nULCuBIzpDNrUElmaxT6NF_g" style="width: auto; height: 20px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 12px; line-height: 15px;color: #242145;" width="auto"/>
                 <!--[if !mso]><! -->
                 <img alt="LinkedIn" border="0" class="dark-icon" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252FL-linkedin-64.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2MTAyMDAuMDgwMjExNn0:1rQZ7w:OdWvqkxgCbtACf3lcym-9dtBWX4j-CxuInbM4QKgy1U" style="width: auto; height: 20px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 12px; line-height: 15px;color: #242145; display:none" width="auto"/>
                 <!--<![endif]-->
                </a>
                <a style="padding: 10px 10px; text-align: center" target="_blank">
                 <img alt="Twitter" border="0" class="light-img" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252FD-twitter-50.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2MTAyMDAuMDgwMzA5NH0:1rQZ7w:AuN-tyee4zWPhgKlAeilh1Rt6a9epyQxxcphH1dTSog" style="width: auto; height: 20px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 12px; line-height: 15px;color: #242145;" width="auto"/>
                 <!--[if !mso]><! -->
                 <img alt="Twitter" border="0" class="dark-icon" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252FL-twitter-50.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2MTAyMDAuMDgwNDAxNH0:1rQZ7w:YxJj0pigi1G3ZfPfi7r_ytmGzCVAO7HjTqe6-1L1Tzw" style="width: auto; height: 20px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 12px; line-height: 15px;color: #242145; display:none" width="auto"/>
                 <!--<![endif]-->
                </a>
                <!-- <a href=
"//mkto-sj370153.com/MzAzLU1OSS04MDkAAAGP0-oK8q9efwBU83zjzUoCIw4g4IuEPP5i9OjjEVsVAoACOVATj1mVDFNuQDJL8_obyJ8g9H0=" target="_blank" style="padding: 10px 10px; text-align: center"
>
                                                            <img src="https://go.pluralsight.com/rs/303-MNI-809/images/discord-50.png" width="12px" height="auto" alt="Discord" border="0" style="width: auto; height: 20px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 12px; line-height: 15px;color: #242145;"/>
                                                        </a> -->
               </td>
              </tr>
              <!--Social Icons : END-->
             </tbody>
            </table>
           </td>
          </tr>
         </table>
         <!-- MKTO Container : END -->
        </td>
       </tr>
      </tbody>
     </table>
     <!-- Email Body w Round Corners : END-->
     <!--[if mso]>
                </td>
                </tr>
                </table>
                <![endif]-->
    </div>
    <!--Email Header + Body : END-->
    <!-- Static Footer : BEGIN -->
    <table border="0" cellpadding="0" cellspacing="0" class="footer" role="presentation" style="max-width: 680px; margin: 0 auto;" width="100%">
     <tbody>
      <tr>
       <td bgcolor="#E6EDF4" style="background-color:#E6EDF4; padding: 0px 20px 40px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 12px; line-height: 15px; text-align: center; color: #242145 !important;">
        <table border="0" cellpadding="0" cellspacing="0" class="footer" role="presentation" style="max-width:680px">
         <tbody>
          <tr>
           <td style="padding: 20px 0px; text-align: center; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important;">
            <span class="unstyle-auto-detected-links">
             Copyright © 2004 - 2023 Pluralsight LLC
            </span>
            <br/>
            <span style="font-style: italic;">
             All logos and trademarks are the properties of their respective owners
            </span>
            <br/>
            <br/>
            <span class="unstyle-auto-detected-links">
             42 Future Way Draper, UT 84020
            </span>
            <br/>
            <br/>
            <span>
             <a style="text-decoration: underline; color: #242145;">
              manage preferences
             </a>
            </span>
            <span>
             |
            </span>
            <unsubscribe>
             <a style="text-decoration: underline; color: #242145;">
              unsubscribe
             </a>
            </unsubscribe>
            <span>
             |
            </span>
            <span>
             <a style="text-decoration: underline; color: #242145;">
              privacy policy
             </a>
            </span>
           </td>
          </tr>
         </tbody>
        </table>
       </td>
      </tr>
     </tbody>
    </table>
    <!-- Static Footer : END -->
    <!--[if mso]>
            </td>
            </tr>
            </table>
            <![endif]-->
   </div>
  </center>
  <a>
  </a>
  <img alt="" height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fmkto-sj370153.com%252Ftrk%253Ft%253D1%2526mid%253DMzAzLU1OSS04MDkAAAGP0-oK87k4O7ecSN640Lgh3IzTXBDxHWLs3DtWLCmGuIhm-65mFjarpos689igsdKQuY2OcyRXbRGNCwv6GdGlBzMt9s70Wi4eLoxuDLJOH6INjLZ_Paed6B4Ytp69sqSZupFW7u75YJsO/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1rdG8tc2ozNzAxNSIsInRpbWUiOjE3MDU2MTAyMDAuMDgwNTM2MX0:1rQZ7w:30LoZYJtsfuTs-QmiIR9GLVUpkPjEslGETVbSpd5aiA" style="display:none !important;" width="1"/>
  <p>
   <font face="Verdana" size="1">
    This email was sent to b68aae10@uifeed.com. If you no longer wish to receive these emails you may
    <a>
     unsubscribe
    </a>
    at any time.
   </font>
  </p>
 </body>
</html>