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;
	        }
	    }

        /* same as media queries above, but breaks at a narrower screen width */
        @media screen and (max-width: 450px) {

            /* What it does: Forces table cells into rows, no change to width. */
            .sm-just-stack-column,
            .sm-just-stack-column-center {
                display: block !important;
                max-width: 100% !important;
                direction: ltr !important;
                margin: 0 !important;
            }
            .sm-just-stack-column-center {
                text-align: center !important;
            }
            /* What it does: Forces table cells into full-width rows. */
            .sm-stack-column,
            .sm-stack-column-center {
                display: block !important;
                width: 100% !important;
                max-width: 100% !important;
                direction: ltr !important;
                margin: 0 !important;
            }
            /* And center justify these ones. */
            .sm-stack-column-center {
                text-align: center !important;
            }
            /*Widens columns on small screens*/
            .sm-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. */
            .sm-center-on-narrow {
                text-align: center !important;
                display: block !important;
                margin-left: auto !important;
                margin-right: auto !important;
                float: none !important;
            }
            table.sm-center-on-narrow {
                display: inline-block !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"> -->
 <!-- Options for Default Footer: -->
 <!--Marketo Variables : END-->
 <!-- CSS Reset : BEGIN -->
 <!-- CSS Reset : END -->
 <!-- Progressive Enhancements : BEGIN -->
 <!-- Progressive Enhancements : END -->
 <!--Javascript for Marketo Editor 2.0 : BEGIN-->
 <!-- DEV option -->
 <!-- <script src="https://go.pluralsight.com/rs/303-MNI-809/images/mktoeditorscript-dev.js?version=0"></script> -->
 <!--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;">
   AI updates, in-demand tech skills, and cert prep
  </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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE2MzkzMX0:1rzeCF:z66_arbDm4BeRe7ycwoRt8WHD8yoWvOygThr9np09fA" 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>
         <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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE3MDk3Mn0:1rzeCF:j4xDAVYqaUGQB78b8OZh3d_pAQsS-_HN44Q56d5ZKMo" 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>
        </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="blankSpacere034b9be-72fe-4d32-b611-09ae55400786">
           <td class="wide-column" style="padding-top:24px;padding-right:50px;padding-bottom:0px;padding-left:50px;">
            <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="margin:auto; width: 100%;" width="90%">
             <tbody>
              <tr>
               <td aria-hidden="true" height="0px" style="
                                                                font-size: 0px;
                                                                line-height: 0px;
                                                                text-align: center;
                                                            ">
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="linksLearnerNewsletter53f25a47-ad8e-46d9-9b85-cc80922857a7">
           <td>
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
             <tbody>
              <tr>
               <td class="wide-column" style="padding-top:6px;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="newsletterLinksf974643c-9c12-48a8-bf09-6c21f878ba22" style="margin: 0; font-size: 12px; color: #808284; text-align:center; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important;">
                 <span>
                  <a style="color: #808284">
                   Log in
                  </a>
                 </span>
                 <span>
                  |
                 </span>
                 <span>
                  <a style="color: #808284">
                   Create a channel
                  </a>
                 </span>
                 <span>
                  |
                 </span>
                 <span>
                  <a style="color: #808284">
                   Leave a review
                  </a>
                 </span>
                 <span>
                  |
                 </span>
                 <span>
                  <a style="color: #808284">
                   Set a learning goal
                  </a>
                 </span>
                </p>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="level2Heading11909363-56a0-4e0c-81aa-f0f1c7e5b4f1">
           <td class="">
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
             <tbody>
              <tr>
               <td class="wide-column" style="padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 32px; line-height: 20px; color: #130f25;">
                <h2 class="mktoText" id="heading2Textecb1fa5a-0d55-4090-9529-af5edd6065ba" style="margin: 0; font-size: 32px; line-height: 40px;color: #130f25; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: 700;">
                 <div style="text-align: center;">
                  Welcome to our newsletter, tech learner
                 </div>
                </h2>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="paragrapha99ba701-a0ad-4ad2-a24e-db6d64baf3b5">
           <td>
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
             <tbody>
              <tr>
               <td class="wide-column" style="padding-top:6px;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="paragraphTextf8aa7fed-4a3b-4c3d-9dec-67bfe01899b0" style="margin: 0; font-size: 16px; line-height: 28px;color: #130f25; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: 500;">
                </p>
                <div style="text-align: center;">
                 <span style="font-size: 14px;">
                  <em>
                   Digging these insights? Share it with a fellow learner (so they can dig them, too).
                  </em>
                 </span>
                </div>
                <p>
                </p>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="lineSolidSpacera0c2ddc9-9be0-4d06-b0d5-899d804e1f4b">
           <td class="darkmode-bg wide-column" style="padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px; background-color: #fefefe">
            <table align="center" bgcolor=" #d3dff0" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:  #d3dff0; margin:auto; width: 100%;" width="90%">
             <tbody>
              <tr>
               <td aria-hidden="true" bgcolor=" #d3dff0" height="2px" style="
                                                                background-color:  #d3dff0;
                                                                font-size: 5px;
                                                                line-height: 5px;
                                                                text-align: center;
                                                            ">
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="level3HeadingPink331b5841-4d5d-4209-9bdf-0823f72fff66">
           <td>
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
             <tbody>
              <tr>
               <td class="wide-column" style="padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 16px; line-height: 20px; color: #ff1675 !important;">
                <h3 class="mktoText" id="heading3PinkText7b2c2e9a-54c9-4a68-83f9-8e6ad8622c74" style="margin: 0; font-size: 16px; line-height: 36px;color: #ff1675 !important; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: bold;">
                 TECH TAKES 🌶
                </h3>
                <!--
                                                            <a href=
"https://connect.pluralsight.com/MzAzLU1OSS04MDkAAAGSr50WzUuglbnmUY7-5E5nFU4lPn8ENT3vQU_LLM53ojsYiSv7w_c1vnUKreU_bG01JBOBc7Y="
>Emoji Unicode Reference</a>
                                                        -->
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="wideImage5eef7c3d-7cdd-46a3-a0c4-99e52b7c3d64">
           <td align="center" class="wide-column" style="margin:0;padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px;">
            <div class="mktoImg" id="wideImg2fc2b7d0-29b3-40d6-a094-31cdf81b0401" mktolockimgsize="true" mktolockimgstyle="true">
             <a target="_blank">
              <img alt="Tech Takes" class="g-img" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252F2404-newsletter-skillslearner-section1image.png%253Fversion%253D0/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE3Mjg0fQ:1rzeCF:_xBBqyOTRUAWW40K2MldIteloW02Klf20_coOwsbVm8" style="width: 100%; max-width: 680px; height: auto; border-top-right-radius: 20px; border-top-left-radius: 20px; border-bottom-right-radius: 20px; border-bottom-left-radius: 20px; background-color: #ffffff00; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 24px; line-height: 15px;color: #130f25; margin: auto; display: block;"/>
             </a>
            </div>
           </td>
          </tr>
          <tr class="mktoModule" id="paragraphab85056e-b104-4121-bc58-d3d473bbaf98">
           <td>
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
             <tbody>
              <tr>
               <td class="wide-column" style="padding-top:6px;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="paragraphText15f48e47-42fc-4031-be5f-6c4614d173f7" style="margin: 0; font-size: 16px; line-height: 28px;color: #130f25; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: 500;">
                 Our new
                 <span style="color: #ff1675;">
                  <strong>
                   <a id="" style="color: #ff1675;" target="_blank">
                    2024 Technical Skills Report
                   </a>
                  </strong>
                 </span>
                 reveals that it takes an average of 10 weeks to hire for IT roles in the United States, compared to the global average of nine weeks. Plus, it costs employers a whopping $23,450 to hire a new employee versus less than $5,000 to develop their skills.
                 <br/>
                 <br/>
                 Seeing as how upskilling is clearly the better solution to filling skills gaps than hiring, IT professionals can look towards developing new tech skills to grow in their current roles.
                 <br/>
                 <br/>
                 <span style="color: #ff1675;">
                  <strong>
                   <a id="" style="color: #ff1675;" target="_blank">
                    Read the report
                   </a>
                  </strong>
                 </span>
                 for actionable insights on which skills gaps remain top priority for businesses, how to build those skills, and how to become the kind of asset businesses can’t afford to lose.
                </p>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="blankSpacerb6f10fbf-aeb6-423c-bc92-94faa5330c92">
           <td class="wide-column" style="padding-top:6px;padding-right:50px;padding-bottom:0px;padding-left:50px;">
            <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="margin:auto; width: 100%;" width="90%">
             <tbody>
              <tr>
               <td aria-hidden="true" height="0px" style="
                                                                font-size: 0px;
                                                                line-height: 0px;
                                                                text-align: center;
                                                            ">
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="lineSolidSpacere4b8ac62-3059-43d3-9475-10e9ebe2e871">
           <td class="darkmode-bg wide-column" style="padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px; background-color: #fefefe">
            <table align="center" bgcolor=" #d3dff0" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:  #d3dff0; margin:auto; width: 100%;" width="90%">
             <tbody>
              <tr>
               <td aria-hidden="true" bgcolor=" #d3dff0" height="2px" style="
                                                                background-color:  #d3dff0;
                                                                font-size: 5px;
                                                                line-height: 5px;
                                                                text-align: center;
                                                            ">
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="level3HeadingPink94516b00-f9ce-470f-bfb6-38ccecdc47df">
           <td>
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
             <tbody>
              <tr>
               <td class="wide-column" style="padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 16px; line-height: 20px; color: #ff1675 !important;">
                <h3 class="mktoText" id="heading3PinkText27f72f5f-81cc-4573-95cd-264847ae061a" style="margin: 0; font-size: 16px; line-height: 36px;color: #ff1675 !important; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: bold;">
                 HOW TO 🛠
                </h3>
                <!--
                                                            <a href=
"https://connect.pluralsight.com/MzAzLU1OSS04MDkAAAGSr50WzUuglbnmUY7-5E5nFU4lPn8ENT3vQU_LLM53ojsYiSv7w_c1vnUKreU_bG01JBOBc7Y="
>Emoji Unicode Reference</a>
                                                        -->
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="wideImage65b0e1db-e44c-4d9f-80c7-61117ac7e4a1">
           <td align="center" class="wide-column" style="margin:0;padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px;">
            <div class="mktoImg" id="wideImg7263b4e9-a8bd-433b-9bdd-ab035b8c10cd" mktolockimgsize="true" mktolockimgstyle="true">
             <a target="_blank">
              <img alt="How To" class="g-img" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252F2404-newsletter-skillslearner-section2image.png%253Fversion%253D0/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE3NDU0Nn0:1rzeCF:V7pZThtM8Nawgzt7bsMvk7RaEwIrV0nrJ8a93vXvYRc" style="width: 100%; max-width: 680px; height: auto; border-top-right-radius: 20px; border-top-left-radius: 20px; border-bottom-right-radius: 20px; border-bottom-left-radius: 20px; background-color: #ffffff00; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 24px; line-height: 15px;color: #130f25; margin: auto; display: block;"/>
             </a>
            </div>
           </td>
          </tr>
          <tr class="mktoModule" id="paragraph34ddc818-389c-4a47-8b63-18e1cbbb11e5">
           <td>
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
             <tbody>
              <tr>
               <td class="wide-column" style="padding-top:6px;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="paragraphText94751838-9874-4bbe-8b2d-d7494ee6c877" style="margin: 0; font-size: 16px; line-height: 28px;color: #130f25; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: 500;">
                 Ever heard of F# computation expressions? In layman's terms, they're a really cool abstraction that allows a lot of super-powerful transformations and operations in code flow.
                 <br/>
                 <br/>
                 <span style="color: #ff1675;">
                  <strong>
                   <a id="" style="color: #ff1675;" target="_blank">
                    Learn when and how to use F# computation expressions
                   </a>
                  </strong>
                 </span>
                 to simplify and streamline your code.
                </p>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="blankSpacerb50c74c9-5d77-4725-9c37-f42c22618b62">
           <td class="wide-column" style="padding-top:6px;padding-right:50px;padding-bottom:0px;padding-left:50px;">
            <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="margin:auto; width: 100%;" width="90%">
             <tbody>
              <tr>
               <td aria-hidden="true" height="0px" style="
                                                                font-size: 0px;
                                                                line-height: 0px;
                                                                text-align: center;
                                                            ">
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="lineSolidSpacer2bfd521d-136a-42af-892e-95b5c838b704">
           <td class="darkmode-bg wide-column" style="padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px; background-color: #fefefe">
            <table align="center" bgcolor=" #d3dff0" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:  #d3dff0; margin:auto; width: 100%;" width="90%">
             <tbody>
              <tr>
               <td aria-hidden="true" bgcolor=" #d3dff0" height="2px" style="
                                                                background-color:  #d3dff0;
                                                                font-size: 5px;
                                                                line-height: 5px;
                                                                text-align: center;
                                                            ">
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="level3HeadingPink286d1448-5927-4756-b7f0-ae5819a30b18">
           <td>
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
             <tbody>
              <tr>
               <td class="wide-column" style="padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 16px; line-height: 20px; color: #ff1675 !important;">
                <h3 class="mktoText" id="heading3PinkText8588e711-10f0-462a-98c3-f6c4a729c58a" style="margin: 0; font-size: 16px; line-height: 36px;color: #ff1675 !important; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: bold;">
                 OUR AI FUTURE 🤖
                </h3>
                <!--
                                                            <a href=
"https://connect.pluralsight.com/MzAzLU1OSS04MDkAAAGSr50WzUuglbnmUY7-5E5nFU4lPn8ENT3vQU_LLM53ojsYiSv7w_c1vnUKreU_bG01JBOBc7Y="
>Emoji Unicode Reference</a>
                                                        -->
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="wideImagecf3f6609-0b9a-49e4-8b05-56f146adeafb">
           <td align="center" class="wide-column" style="margin:0;padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px;">
            <div class="mktoImg" id="wideImg54524569-99af-4367-a40e-9b7b5b28adce" mktolockimgsize="true" mktolockimgstyle="true">
             <a target="_blank">
              <img alt="Our AI Future" class="g-img" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252F2404-newsletter-skillslearner-section3image.png%253Fversion%253D0/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE3NjI2N30:1rzeCF:J4ZK2selZS1IjHeJnWktp18FOwV2wC3VWFrLwhodtnc" style="width: 100%; max-width: 680px; height: auto; border-top-right-radius: 20px; border-top-left-radius: 20px; border-bottom-right-radius: 20px; border-bottom-left-radius: 20px; background-color: #ffffff00; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 24px; line-height: 15px;color: #130f25; margin: auto; display: block;"/>
             </a>
            </div>
           </td>
          </tr>
          <tr class="mktoModule" id="paragraph15887e92-2368-45e2-93ba-f855823c571f">
           <td>
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
             <tbody>
              <tr>
               <td class="wide-column" style="padding-top:6px;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="paragraphTextfcf9ea06-d76d-4b87-969d-dae189520f61" style="margin: 0; font-size: 16px; line-height: 28px;color: #130f25; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: 500;">
                 Getting the inside scoop on where AI is headed is the best way to navigate its challenges, including AI’s effect on job security.
                 <br/>
                 <br/>
                 <span style="color: #ff1675;">
                  <strong>
                   <a style="color: #ff1675;" target="_blank">
                    In this conversation
                   </a>
                  </strong>
                 </span>
                 , learn from Faye Ellis, Principal Training Architect, and Simon Allardice, Creative Director and Principal Author, as they share actionable insights on real-world applications of AI, which AI skills to businesses are looking for, and why embracing it is the only way forward.
                </p>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="blankSpacer52adfc9f-402a-4600-a2b9-997db1bda72e">
           <td class="wide-column" style="padding-top:6px;padding-right:50px;padding-bottom:0px;padding-left:50px;">
            <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="margin:auto; width: 100%;" width="90%">
             <tbody>
              <tr>
               <td aria-hidden="true" height="0px" style="
                                                                font-size: 0px;
                                                                line-height: 0px;
                                                                text-align: center;
                                                            ">
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="lineSolidSpacer2dfc0ffd-f7e0-4692-bf52-682f861e660c">
           <td class="darkmode-bg wide-column" style="padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px; background-color: #fefefe">
            <table align="center" bgcolor=" #d3dff0" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:  #d3dff0; margin:auto; width: 100%;" width="90%">
             <tbody>
              <tr>
               <td aria-hidden="true" bgcolor=" #d3dff0" height="2px" style="
                                                                background-color:  #d3dff0;
                                                                font-size: 5px;
                                                                line-height: 5px;
                                                                text-align: center;
                                                            ">
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="level3HeadingPink9d668399-4d4d-4b8e-9b25-abfe4fc4c8c8">
           <td>
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
             <tbody>
              <tr>
               <td class="wide-column" style="padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 16px; line-height: 20px; color: #ff1675 !important;">
                <h3 class="mktoText" id="heading3PinkText8f932f7b-9b3c-4535-8d11-a19a740d3aad" style="margin: 0; font-size: 16px; line-height: 36px;color: #ff1675 !important; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: bold;">
                 CERT ALERT 📚
                </h3>
                <!--
                                                            <a href=
"https://connect.pluralsight.com/MzAzLU1OSS04MDkAAAGSr50WzUuglbnmUY7-5E5nFU4lPn8ENT3vQU_LLM53ojsYiSv7w_c1vnUKreU_bG01JBOBc7Y="
>Emoji Unicode Reference</a>
                                                        -->
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="wideImage79a15fcd-33e9-4f70-a811-a5a52cfa9ca0">
           <td align="center" class="wide-column" style="margin:0;padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px;">
            <div class="mktoImg" id="wideImgec02bac7-3362-4434-a26a-3ad0ded83ba0" mktolockimgsize="true" mktolockimgstyle="true">
             <a target="_blank">
              <img alt="Cert Alert" class="g-img" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252F2404-newsletter-skillslearner-section4image.png%253Fversion%253D0/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE3NzgyfQ:1rzeCF:riqaaejNABHnxQHdPAmQpygbR0WGA4iJNyVRM0zsFmw" style="width: 100%; max-width: 680px; height: auto; border-top-right-radius: 20px; border-top-left-radius: 20px; border-bottom-right-radius: 20px; border-bottom-left-radius: 20px; background-color: #ffffff00; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 24px; line-height: 15px;color: #130f25; margin: auto; display: block;"/>
             </a>
            </div>
           </td>
          </tr>
          <tr class="mktoModule" id="paragraph2b0803e1-08ab-46a0-b1e5-88ccf01a84a4">
           <td>
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
             <tbody>
              <tr>
               <td class="wide-column" style="padding-top:6px;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="paragraphText67c9d2c0-3011-400f-ba14-53ae2efc5af5" style="margin: 0; font-size: 16px; line-height: 28px;color: #130f25; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: 500;">
                 If you’re looking to ace your AWS Certified Cloud Practitioner exam the first time around, getting familiarized with these nine key analytics services is an absolute must.
                 <br/>
                 <br/>
                 <span style="color: #ff1675;">
                  <strong>
                   <a id="" style="color: #ff1675;" target="_blank">
                    In this quick overview
                   </a>
                  </strong>
                 </span>
                 , Principal AWS Training Architect, Faye Ellis, walks through each service in detail, including specific situations to apply them on the exam—all in under 10 minutes.
                </p>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="blankSpacer69e5425b-0631-418d-ae24-7e01bc6c0f66">
           <td class="wide-column" style="padding-top:6px;padding-right:50px;padding-bottom:0px;padding-left:50px;">
            <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="margin:auto; width: 100%;" width="90%">
             <tbody>
              <tr>
               <td aria-hidden="true" height="0px" style="
                                                                font-size: 0px;
                                                                line-height: 0px;
                                                                text-align: center;
                                                            ">
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="lineSolidSpacer5c22b700-e31b-4db9-a0e1-30e945314257">
           <td class="darkmode-bg wide-column" style="padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px; background-color: #fefefe">
            <table align="center" bgcolor=" #d3dff0" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:  #d3dff0; margin:auto; width: 100%;" width="90%">
             <tbody>
              <tr>
               <td aria-hidden="true" bgcolor=" #d3dff0" height="2px" style="
                                                                background-color:  #d3dff0;
                                                                font-size: 5px;
                                                                line-height: 5px;
                                                                text-align: center;
                                                            ">
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="level3HeadingPinkc3365e71-f7d4-4e8a-ad30-40528fcf95c8">
           <td>
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
             <tbody>
              <tr>
               <td class="wide-column" style="padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 16px; line-height: 20px; color: #ff1675 !important;">
                <h3 class="mktoText" id="heading3PinkText2f758618-3820-4e75-a7d3-85be790732ab" style="margin: 0; font-size: 16px; line-height: 36px;color: #ff1675 !important; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: bold;">
                 PATHWAYS TO SUCCESS 🛣
                </h3>
                <!--
                                                            <a href=
"https://connect.pluralsight.com/MzAzLU1OSS04MDkAAAGSr50WzUuglbnmUY7-5E5nFU4lPn8ENT3vQU_LLM53ojsYiSv7w_c1vnUKreU_bG01JBOBc7Y="
>Emoji Unicode Reference</a>
                                                        -->
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="wideImage44824438-9bca-4722-b4cc-0daa2ebeb333">
           <td align="center" class="wide-column" style="margin:0;padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px;">
            <div class="mktoImg" id="wideImgc31b7bb6-a6c4-43ec-aab0-ec46a8c20777" mktolockimgsize="true" mktolockimgstyle="true">
             <a target="_blank">
              <img alt="Pathways to Success" class="g-img" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252F2404-newsletter-skillslearner-section5image.png%253Fversion%253D0/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE3OTAyNn0:1rzeCF:UrZ_Jt5cQO4mWosHmqlmnfv4vLB1YHS07z2dy6fwahM" style="width: 100%; max-width: 680px; height: auto; border-top-right-radius: 20px; border-top-left-radius: 20px; border-bottom-right-radius: 20px; border-bottom-left-radius: 20px; background-color: #ffffff00; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 24px; line-height: 15px;color: #130f25; margin: auto; display: block;"/>
             </a>
            </div>
           </td>
          </tr>
          <tr class="mktoModule" id="paragraph300bdb03-9f63-4992-979c-d6a2d67027a3">
           <td>
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
             <tbody>
              <tr>
               <td class="wide-column" style="padding-top:6px;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="paragraphText3dc340af-6087-4a45-aed0-e2a2ae5b38b1" style="margin: 0; font-size: 16px; line-height: 28px;color: #130f25; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: 500;">
                 It can be both challenging and intimidating when you’re just getting started on your cloud journey. But with the right kind of guidance, achieving cloud mastery is a whole lot easier.
                 <br/>
                 <br/>
                 <span style="color: #ff1675;">
                  <a style="color: #ff1675;" target="_blank">
                   <strong>
                    Grow your cloud career with these tips
                   </strong>
                  </a>
                 </span>
                 on how to gain cloud experience, learn new skills, and forge a cloud path—straight from cloud engineers and developers who’ve mastered the industry.
                </p>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="blankSpacera4f1db7b-2c6c-4464-b485-552638496c23">
           <td class="wide-column" style="padding-top:6px;padding-right:50px;padding-bottom:0px;padding-left:50px;">
            <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="margin:auto; width: 100%;" width="90%">
             <tbody>
              <tr>
               <td aria-hidden="true" height="0px" style="
                                                                font-size: 0px;
                                                                line-height: 0px;
                                                                text-align: center;
                                                            ">
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="lineSolidSpacer8c12bb5e-04cd-4b68-a498-3e932384bba1">
           <td class="darkmode-bg wide-column" style="padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px; background-color: #fefefe">
            <table align="center" bgcolor=" #d3dff0" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:  #d3dff0; margin:auto; width: 100%;" width="90%">
             <tbody>
              <tr>
               <td aria-hidden="true" bgcolor=" #d3dff0" height="2px" style="
                                                                background-color:  #d3dff0;
                                                                font-size: 5px;
                                                                line-height: 5px;
                                                                text-align: center;
                                                            ">
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="level3HeadingPinkc970075a-cb3d-4797-b571-df97fc487f74">
           <td>
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
             <tbody>
              <tr>
               <td class="wide-column" style="padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 16px; line-height: 20px; color: #ff1675 !important;">
                <h3 class="mktoText" id="heading3PinkText94722c9b-8399-42d7-a0fc-5f587f577628" style="margin: 0; font-size: 16px; line-height: 36px;color: #ff1675 !important; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: bold;">
                 ICYMI 😀
                </h3>
                <!--
                                                            <a href=
"https://connect.pluralsight.com/MzAzLU1OSS04MDkAAAGSr50WzUuglbnmUY7-5E5nFU4lPn8ENT3vQU_LLM53ojsYiSv7w_c1vnUKreU_bG01JBOBc7Y="
>Emoji Unicode Reference</a>
                                                        -->
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="paragraphb7db3a8e-0a7a-4765-a4ed-32fdd5cf9532">
           <td>
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
             <tbody>
              <tr>
               <td class="wide-column" style="padding-top:6px;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="paragraphText83fd1b1f-0e33-415f-892b-3ae866ddbc79" style="margin: 0; font-size: 16px; line-height: 28px;color: #130f25; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: 500;">
                </p>
                <ul>
                 <li>
                  <span style="color: #ff1675;">
                   <strong>
                    <a id="" style="color: #ff1675;" target="_blank">
                     Innova Solutions: Enhancing innovation through hands-on learning
                    </a>
                   </strong>
                  </span>
                 </li>
                 <li>
                  <span style="color: #ff1675;">
                   <strong>
                    <a id="" style="color: #ff1675;" target="_blank">
                     How to integrate generative AI into your applications
                    </a>
                   </strong>
                  </span>
                 </li>
                 <li>
                  <span style="color: #ff1675;">
                   <strong>
                    <a id="" style="color: #ff1675;" target="_blank">
                     5 ways to secure AWS Lambda for compliance requirements
                    </a>
                   </strong>
                  </span>
                 </li>
                 <li>
                  <span style="color: #ff1675;">
                   <strong>
                    <a id="" style="color: #ff1675;" target="_blank">
                     How to convince your boss to send you to a tech conference
                    </a>
                   </strong>
                  </span>
                 </li>
                </ul>
                <p>
                </p>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="level3HeadingPinkb4c24cbc-3533-4d38-9c67-09efdbc3c5d9">
           <td>
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
             <tbody>
              <tr>
               <td class="wide-column" style="padding-top:6px;padding-right:50px;padding-bottom:6px;padding-left:50px; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-size: 16px; line-height: 20px; color: #ff1675 !important;">
                <h3 class="mktoText" id="heading3PinkTextf124ddc1-3b02-4708-8944-edf44f154447" style="margin: 0; font-size: 16px; line-height: 36px;color: #ff1675 !important; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: bold;">
                 JOIN US 👋
                </h3>
                <!--
                                                            <a href=
"https://connect.pluralsight.com/MzAzLU1OSS04MDkAAAGSr50WzUuglbnmUY7-5E5nFU4lPn8ENT3vQU_LLM53ojsYiSv7w_c1vnUKreU_bG01JBOBc7Y="
>Emoji Unicode Reference</a>
                                                        -->
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="paragraph0351051d-f671-4257-b7e6-f1b7f0c07a50">
           <td>
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
             <tbody>
              <tr>
               <td class="wide-column" style="padding-top:6px;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="paragraphText18a1255d-2efd-4f0d-bd6c-24bfaf707f79" style="margin: 0; font-size: 16px; line-height: 28px;color: #130f25; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: 500;">
                </p>
                <ul>
                 <li>
                  Subscribe to our
                  <span style="color: #ff1675;">
                   <strong>
                    <a id="" style="color: #ff1675;" target="_blank">
                     YouTube channel
                    </a>
                   </strong>
                  </span>
                 </li>
                 <li>
                  Follow us on
                  <span style="color: #ff1675;">
                   <strong>
                    <a id="" style="color: #ff1675;" target="_blank">
                     Twitter
                    </a>
                   </strong>
                  </span>
                 </li>
                </ul>
                <p>
                </p>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="blankSpacer08941aae-ad5c-48ba-879e-6a2d9a23ea41">
           <td class="wide-column" style="padding-top:24px;padding-right:50px;padding-bottom:0px;padding-left:50px;">
            <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="margin:auto; width: 100%;" width="90%">
             <tbody>
              <tr>
               <td aria-hidden="true" height="0px" style="
                                                                font-size: 0px;
                                                                line-height: 0px;
                                                                text-align: center;
                                                            ">
               </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="display: block; 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE4MDJ9:1rzeCF:5qYPLqZvZEgwfNIbXb1SiVEFUEObJ2_gapN73V8Cm4A" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE4MTMyOX0:1rzeCF:iaFl565j9WF7N1vjNWMrZLjKKWqMgzkKTCWYAaBrJyI" 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>
               <td style="display: none; padding: 30px 0; text-align: center">
                <a>
                 <img alt="A Cloud Guru Logo" border="0" class="light-img" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252FACG-logo_ACG-Black.png%253Fversion%253D0/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE4MjQxNn0:1rzeCF:YA4CYFX8Tw4a3rPsXivqz-NEQT3o-OZNd3fOTZrCzz4" 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="A Cloud Guru Logo" border="0" class="dark-img" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252FACG-logo_ACG-White.png%253Fversion%253D0/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE4NDM2OX0:1rzeCF:cINFlm7AmlmUcfnv10JBY9cDjCX4WjHSZa44FHD7YLA" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE4NTk5N30:1rzeCF:ytsqdkL5cSFiWTPLQEGfU8NDUhV_A-2hy0bA9vRNaaQ" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE4NzQ2Nn0:1rzeCF:1NEzFdDxqBmreBORy8w7vb77HhdUmPvMhbYNLUBwc9Q" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE4OTE2Nn0:1rzeCF:GUZSQYGh5O7DEekA74ct2Jj108uF-vvVzeD4xSxsaCA" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE5MDk4fQ:1rzeCF:_aC5BKv1a3oqFBPLOPzRwQlyur0ltOmiBlelvJdGRq4" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE5MjQ1Nn0:1rzeCF:IeAQ3y8e2U-163NncsRGDha2qaSXX3C9VZvN-Sq0o9k" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE5MzgyNH0:1rzeCF:kgMjo51ZnnVeGFuGElduNhPYKnuqbeNdBXO3NN0M-hs" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE5NjE1MX0:1rzeCF:8Dryz-4yvjrr1-Euu03z19Tpx-BEGcLZU0ZDo9QSXMo" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE5NzU5MX0:1rzeCF:Yw3zR9FmwXWmAR9W7V62d1SCNQVZF7S9fCgGfnUGLdk" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzE5OTAxNX0:1rzeCF:eABezH6LFQ-tkWm6pUGeiwgA_a2XsGIMdrDxGR6HlWY" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzIwMDU1N30:1rzeCF:O2qZ7Q81T522wBBXAle0vzyjor_dwUiH6a4Qs6MHyPU" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzIwMjQ4Nn0:1rzeCF:KL3O9igY0MAPKiuhK2e3O3qaElBtJtF1vnvxCrDy7dc" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTM5NzExNjcuMzIwNDE2fQ:1rzeCF:KKm71cQeFLa_9eCLZLTAogP-2ZRurRDJ7USL-NlIfts" 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=
"https://connect.pluralsight.com/MzAzLU1OSS04MDkAAAGSr50WzRjgVdUWDBv2XGRmwqfb456ubwV5Dhi3SFwQpIuFbw4MwzfINP77yuawmgTizIpZCdI=" 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 - 2024 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/https%253A%252F%252Fconnect.pluralsight.com%252Ftrk%253Ft%253D1%2526mid%253DMzAzLU1OSS04MDkAAAGSr50Wzh3_vYZHRH0U2WDYqCbSJB2EkMeB_BVPYqh_eMDeXGHrz6VwdWECZIQPwmS4yKwQuUpjXckrKZM1bbBh_7EQJ3kuT5IqfQ6TVMYzWaUzUbw8OPKV6nu3JuHfGWQL1KI2e6RgO_pY6w/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjb25uZWN0LnBsdSIsInRpbWUiOjE3MTM5NzExNjcuMzIwNjIxM30:1rzeCF:uz9WJnLRPFHzDkJXsQhBBmzJd7Nc_iVxX4_eJGGQV-s" 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>