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;">
   Don't forget and save BIG!
  </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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2NTkwOTUuMTU3Nzg2NH0:1rQlqZ:su8Cg_T6aIOqPAeLyWXagj6lP83MFL7p1xSJ_EzkNSg" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2NTkwOTUuMTU4MzkzNH0:1rQlqZ:ZIz2rfzoF9fOOEXeUIPyulTk_G8-vRRuYudinOaDF6w" 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 alt="Don't forget! 50% off individual gift plans." class="g-img" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252F231207-Promo-GiftofPS-Reminder-Blue.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2NTkwOTUuMTU4NTI3NH0:1rQlqZ:NuDU4SFhSHKOA_zUhvf10IAFyrU1Gn-bza0jsAHRVRM" 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;">
                 Still wondering what to give? We’ve got you.
                 <br/>
                 <br/>
                 For a limited time, you can gift a one-month, three-month, or one-year individual subscription to Pluralsight Skills and
                 <strong>
                  save 50%.
                 </strong>
                 <br/>
                 <br/>
                 With this 50% discount, gift subscriptions start
                 <strong>
                  as low as $14.
                 </strong>
                 <br/>
                 <br/>
                 There’s never been a better time to give—place your gift order today.
                 <br/>
                </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: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;">
                 Give the gift of Pluralsight
                 <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 December 7, 2023, until 11:59 p.m. MT on December 31, 2023, and is only available to customers purchasing a new Gift of Pluralsight subscription. Includes access only to the Pluralsight Skills platform. Subscriptions do not auto-renew. All pricing and product offerings are subject to change. This offer cannot be combined with other offers. Discount associated with this offer cannot be retroactively applied to existing subscriptions. All Purchases are governed by 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2NTkwOTUuMTU4NjUzN30:1rQlqZ:2ynhF-u2sz2pxo4vJlhqzpcFoB-Q4OTpnT-ORtBRaEg" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2NTkwOTUuMTU4NzY4Mn0:1rQlqZ:ooFXi1rGteZLaA_OtswUvX9f41fZ6ClB1zu8kaWb9A0" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2NTkwOTUuMTU4OTAyMn0:1rQlqZ:N6RU63Ramcs12Xitu6tEK3PkoMLatrVOhywrQ2N29mw" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2NTkwOTUuMTU5MDE4M30:1rQlqZ:tA9HfgiS7tF_qZrj8kCwBUkVo82hURH8-vL8SZFu6kw" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2NTkwOTUuMTU5MTg5N30:1rQlqZ:c6wbsJbINXZFXI8MGq8pRPrhtSW3Iub3jTO1qaZtRB4" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2NTkwOTUuMTU5MzQ0fQ:1rQlqZ:5WSn15NNk1BH6Ive3il8fgUmHB06B8pxKprUALmkJ1s" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2NTkwOTUuMTU5NDk5NH0:1rQlqZ:IU0x9Dm6mx6jRtFNlj2z6WQwX42KjpLeUMZPXUBLKNE" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2NTkwOTUuMTU5NjYxfQ:1rQlqZ:qdntlP5LjhDtn-3y5k7Xl_vGKvJqZGYyRq0fpF87ojk" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2NTkwOTUuMTU5ODAxNX0:1rQlqZ:faOUyyL1touUu9FY-_xUBakF9yRcV6GwFfNi2NCa8Aw" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2NTkwOTUuMTU5OTQ3OX0:1rQlqZ:yt0JguDu9G-b0vKV6jF6WYWft97aNYO1K40FzeyypJs" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2NTkwOTUuMTYwMDk5M30:1rQlqZ:wWnAmWT08oZOC2QCoYzhLJsB0IXmrxS1UMYpNnrJW94" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2NTkwOTUuMTYwMjU4M30:1rQlqZ:4U6NPa_Whm9-_3AMP94rutLwx_0HdUVmPW4FUcGwt_4" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2NTkwOTUuMTYwNDYxN30:1rQlqZ:-_nti3CGLvR0ZJWCWjrj-gPLd1NtmdEuREPEOh_BIiY" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MDU2NTkwOTUuMTYwNjAxNn0:1rQlqZ:oGK4A0oEwMX5-0iefw3Quox-fablqpvq6LEzvzAZEfw" 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/MzAzLU1OSS04MDkAAAGQIShQbn5rvc8CxAxr8Bvdn8dWblFjbalmqHnTPx7bu8PHzo1YPv4ze3gdwMARSj2xgYhlVMXC9BFbhJM=" 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%253DMzAzLU1OSS04MDkAAAGQIShQbvFY5UjR4Wz7g7aAkN_z_acLAYPqifKajphNFFki7tgdoF2-KBKWLj-xBA42AxgyzsVB1yyzhqI2Zw_9lhNCVg19fTgcinP0VZLP-C29Qk1PyDJSsB3ZEQnX2qrzkLUZJ_2Bls5deF75kZMw/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRm1rdG8tc2ozNzAxNSIsInRpbWUiOjE3MDU2NTkwOTUuMTYwNzgxfQ:1rQlqZ:lvhELX2wiAYV0mGXkLW11I55DnE66bPCxb-8_vWWPnc" 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>