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 {
                display: block !important;
                max-width: 100% !important;
                direction: ltr !important;
                margin: 0 !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;">
   Tech Forecast 2024, AWS’ newest cert, and more
  </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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTU5MjY5M30:1rmxW7:uOK0mh14y-VT_0mpNjuH-R_v1JOYFu1hai9HglBYNX8" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTU5OTc0OH0:1rmxW7:oGsaxXShFHK1kOWAC06kUtCJRbH_phmB-ucZziRooQ8" 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 SKILLS DAY 2024
                </h3>
                <!--
                                                            <a href=
"https://connect.pluralsight.com/MzAzLU1OSS04MDkAAAGR-16XVcbU4i1JoOyI889rNMETwX5aDlqVPYXw1ZymmoTbBMKqQkqg0ZsWeE6snO3lddOYwLw="
>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 Skills Day" class="g-img" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252F2403-newsletter-skillsleader-techskillsday.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYwMTQwN30:1rmxW7:b-XGf6vCwlkEdSfnp3fwC7PR7zlFTGpbXauWbG-RbIc" 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="paragraph658651e8-2e40-4179-b821-c8141901fd0c">
           <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="paragraphText050a5fe7-3a2e-4016-aaf0-28f32235a1ad" style="margin: 0; font-size: 16px; line-height: 28px;color: #130f25; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: 500;">
                 Begin, build, or boost your tech career at this year’s
                 <strong>
                  Tech Skills Day
                 </strong>
                 , a free virtual event with expert advice, actionable guidance, and free learning—all in one place.
                 <br/>
                 <br/>
                 You’ll gain valuable insights, tips, and strategies on how to transition into tech, the tech skills you need to stay future ready, and how to land your next big promotion or pay boost.
                 <br/>
                 <br/>
                 Watch sessions that dive into career-building topics, including:
                </p>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="paragraph33902ec4-3e8b-4482-ad51-8a42c54f31c9">
           <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="paragraphText56acc52c-133d-485a-ab50-d91b9a827858" 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>
                  How to secure your tech career in the age of AI
                 </li>
                 <li>
                  How to transition into tech through skill development
                 </li>
                 <li>
                  Cloud skills, certifications, and more: How to build a career in cloud
                 </li>
                 <li>
                  And much more
                 </li>
                </ul>
                <p>
                </p>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="paragraph11eef3a0-a6b5-4ddb-98c1-1275efbdf00e">
           <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="paragraphText0350cc8d-4be0-4ec0-b7e9-5a58d54e5f2f" style="margin: 0; font-size: 16px; line-height: 28px;color: #130f25; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: 500;">
                 Register for free
                 <strong>
                  <span style="color: #ff1675;">
                   <a id="" style="color: #ff1675;" target="_blank">
                    here
                   </a>
                  </span>
                 </strong>
                 .
                </p>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="blankSpacer072370bf-83a4-45ba-a00d-19e69ec9fece">
           <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="lineSolidSpacer019de645-5c1e-4c55-a293-381778bd7373">
           <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="level3HeadingPinkd6d2da26-f965-4eca-b796-63b77837a92d">
           <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="heading3PinkText63ea8c1d-676e-4fbb-8e83-1ee0e7d58e5d" 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/MzAzLU1OSS04MDkAAAGR-16XVcbU4i1JoOyI889rNMETwX5aDlqVPYXw1ZymmoTbBMKqQkqg0ZsWeE6snO3lddOYwLw="
>Emoji Unicode Reference</a>
                                                        -->
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="wideImageabe8ead3-ab7c-46db-8631-f871a332a196">
           <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="wideImg2f347ba3-dccc-4e6f-99cd-8124202d9db6" 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%252F2403-newsletter-skillslearner-section1image.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYwMzUzMX0:1rmxW7:bRxrCojowkDvjv7in9SX8UY6Ap9_h-h4itzkwVAXPLw" 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;">
                 The numbers are in for our recent
                 <span style="color: #ff1675;">
                  <strong>
                   <a id="" style="color: #ff1675;" target="_blank">
                    Tech Forecast
                   </a>
                  </strong>
                 </span>
                 report on what to expect in 2024. And, unsurprisingly, AI continues to take center stage as THE skill to build for the foreseeable future. Here’s what we found after surveying 3,000 executives, technologists, and tech experts:
                </p>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="paragraphb736b0dc-2e9c-4997-b2ac-d8107d2419e9">
           <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="paragraphText54672797-a2a4-4434-ba64-2df0c4ea7f06" style="margin: 0; font-size: 16px; line-height: 28px;color: #130f25; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: 500;">
                </p>
                <ol>
                 <li>
                  55% of orgs plan to deploy AI tech soon
                 </li>
                 <li>
                  20% of orgs have already deployed AI tech
                 </li>
                 <li>
                  25% of orgs don’t plan to deploy AI
                 </li>
                </ol>
                <p>
                </p>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
          <tr class="mktoModule" id="paragraph8b3a5bf2-aeca-4561-951d-2767d97f7bbd">
           <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="paragraphText70931f1c-573f-464f-ae84-68e1d8676ad1" style="margin: 0; font-size: 16px; line-height: 28px;color: #130f25; font-family: 'Montserrat', 'Tahoma', 'Arial', sans-serif !important; font-weight: 500;">
                 <span style="color: #ff1675;">
                  <a style="color: #ff1675;" target="_blank">
                   <strong>
                    Download the report
                   </strong>
                  </a>
                 </span>
                 for the inside scoop on what we’re predicting, the future-ready skills needed to solve these problems, and how to leverage these insights.
                </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/MzAzLU1OSS04MDkAAAGR-16XVcbU4i1JoOyI889rNMETwX5aDlqVPYXw1ZymmoTbBMKqQkqg0ZsWeE6snO3lddOYwLw="
>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="Build a serverless application in 5 minutes" class="g-img" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252F2403-newsletter-skillslearner-section2image.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYwNTI1M30:1rmxW7:LEq-2oJaWJ3P_0foeJRb9Zti8T2ZLhzmfFpLabd_z-Q" 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;">
                 In this tutorial, David Blocher, eight-time AWS-certified cloud Author at Pluralsight, shares how to build serverless applications with Application Composer.
                 <br/>
                 <br/>
                 <span style="color: #ff1675;">
                  <strong>
                   <a style="color: #ff1675;" target="_blank">
                    Learn more
                   </a>
                  </strong>
                 </span>
                 about how you can use this tool to open any existing Serverless Application Model (SAM) template and easily visualize ready-made applications before you start working with them.
                </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/MzAzLU1OSS04MDkAAAGR-16XVcbU4i1JoOyI889rNMETwX5aDlqVPYXw1ZymmoTbBMKqQkqg0ZsWeE6snO3lddOYwLw="
>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%252F2403-newsletter-skillslearner-section3image.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYwNjl9:1rmxW7:bqb5CUcXLSHUExhNQzh_6aYN33sgL-xytbNClhzwmP8" 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;">
                 We’ve all been there: the never-ending hamster wheel of writing emails, responding to messages, and attending meetings that
                 <em>
                  could
                 </em>
                 have been emails.
                 <br/>
                 <br/>
                 Enter Microsoft Copilot—your productivity bestie for getting day-to-day stuff out of the way faster.
                 <br/>
                 <br/>
                 <span style="color: #ff1675;">
                  <strong>
                   <a id="" style="color: #ff1675;" target="_blank">
                    See how you can use Microsoft Copilot
                   </a>
                  </strong>
                 </span>
                 to do everyday tasks from drafting emails and summarizing web pages to creating PowerPoint decks and extracting insights from your spreadsheets.
                </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/MzAzLU1OSS04MDkAAAGR-16XVcbU4i1JoOyI889rNMETwX5aDlqVPYXw1ZymmoTbBMKqQkqg0ZsWeE6snO3lddOYwLw="
>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="AWS Data Engineer" class="g-img" src="https://inboxflows.com/_/image/https%253A%252F%252Fgo.pluralsight.com%252Frs%252F303-MNI-809%252Fimages%252F2403-newsletter-skillslearner-section4image.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYwODN9:1rmxW7:TMFPWhZhV77IUrxKXYghdcwvWDCI3P47bORYrk80EaY" 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 or someone you know is looking to add some certs under their belt,
                 <span style="color: #ff1675;">
                  <strong>
                   <a id="" style="color: #ff1675;" target="_blank">
                    AWS’ Certified Data Engineer – Associate
                   </a>
                  </strong>
                 </span>
                 is a great place to start. And, since data’s going to be the backbone of the AI revolution, getting this certification will also position you as a well sought-out talent as more companies adopt AI tech.
                 <br/>
                 <br/>
                 This cert exam will cover four domains and six key services, so be sure to
                 <span style="color: #ff1675;">
                  <strong>
                   <a id="" style="color: #ff1675;" target="_blank">
                    read up on what you need to know
                   </a>
                  </strong>
                 </span>
                 before scheduling your test day.
                </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/MzAzLU1OSS04MDkAAAGR-16XVcbU4i1JoOyI889rNMETwX5aDlqVPYXw1ZymmoTbBMKqQkqg0ZsWeE6snO3lddOYwLw="
>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%252F2403-newsletter-skillslearner-section5image.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYwOTU0Mn0:1rmxW7:kywCD5iOpzaqG3XXPQN3d5FG4Bm-Cjqhpw3KvDs34bE" 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;">
                 New AI advancements are leaving technologists with a burning question: “Will AI take my job?” While AI
                 <em>
                  is
                 </em>
                 changing the way we work, companies still need humans to make their shiny new tech work.
                 <br/>
                 <br/>
                 To save you the Google search, we put together a
                 <span style="color: #ff1675;">
                  <strong>
                   <a id="" style="color: #ff1675;" target="_blank">
                    list of the top skills
                   </a>
                  </strong>
                 </span>
                 you need to set yourself up for success in the face of AI.
                </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/MzAzLU1OSS04MDkAAAGR-16XVcbU4i1JoOyI889rNMETwX5aDlqVPYXw1ZymmoTbBMKqQkqg0ZsWeE6snO3lddOYwLw="
>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>
                  <strong style="color: #ff1675;">
                   <a id="" style="color: #ff1675;" target="_blank">
                    Our expert curations: DevOps and DevSecOps training courses
                   </a>
                  </strong>
                 </li>
                 <li>
                  <strong style="color: #ff1675;">
                   <a id="" style="color: #ff1675;" target="_blank">
                    Creating a Large Language Model from scratch: A beginner's guide
                   </a>
                  </strong>
                 </li>
                 <li>
                  <strong style="color: #ff1675;">
                   <a id="" style="color: #ff1675;" target="_blank">
                    7 reasons you need Azure AI Search (even if you think you don't)
                   </a>
                  </strong>
                 </li>
                 <li>
                  <strong style="color: #ff1675;">
                   <a id="" style="color: #ff1675;" target="_blank">
                    How to read Java Bytecode for fun and profit
                   </a>
                  </strong>
                 </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/MzAzLU1OSS04MDkAAAGR-16XVcbU4i1JoOyI889rNMETwX5aDlqVPYXw1ZymmoTbBMKqQkqg0ZsWeE6snO3lddOYwLw="
>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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYxMTA0OX0:1rmxW7:4HP2W-2TEFyzOWVkeCFAoRl1EpFyRI30fQ5thQQl8Ds" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYxMjU2M30:1rmxW7:7q_n1qdYAnbv42JDXbNB_C47BwsTKiv2BL_BtVOPyUI" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYxNDAxfQ:1rmxW7:73WKw1SEJ2UxeJALUkh1gezHFUzTEmTIN15DP8FHVxM" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYxNTE4fQ:1rmxW7:x0KT362uLW0paU4Wjcc0t9uQ-_Out1HRIvMoJZQPQFM" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYxNjQ2fQ:1rmxW7:lPwV99QqoKzFo165mQhRnc24ooqIkw7ua-lqjTL-QOc" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYxNzk5Nn0:1rmxW7:_d4gFw2Wrg2qYRxx4Mjfy1JA5-Jed6eHOFPKFce1yRY" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYxOTc0NH0:1rmxW7:bvGLYQylJ3GqwZIpHReuA6jwyaHut9Pz15paOQAsfYU" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYyMTcxOH0:1rmxW7:FK2IQAmXJVVtRAlrGQwQKz_dKfw4IlR4wk4XzhwyBtg" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYyMzI4fQ:1rmxW7:9fyJMlQKs-DqgzBoQm4xjnLzHV-FpfG-C4h6Lsav5rE" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYyNDk5fQ:1rmxW7:FcgveUI2okvqt4m-PJ8xtq1hUwITTKHyi4BWilQShhw" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYyNjk0NH0:1rmxW7:0H7HAAVt5_bUJ_c5ANVzRntld2C8j1D96E1Gguat45g" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYyODU5Mn0:1rmxW7:ZDCqo2K7Uxr5C69N01jqX94YaGDq3xXnvwX0SkmiRps" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYzMDE4N30:1rmxW7:xiDu3BwEI6M4VlwfFc3oCL_5Sh01hQ43nVCYrfAO5WI" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYzMTc1fQ:1rmxW7:MzWR2dTe_1StfHGrioETvFXdsZPZ1Pcc_-Jc8FanLqI" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYzMzMxMn0:1rmxW7:bi_OX__odJwGw-1nXPoc6G1ciLu-qWgIQKhNBgKIuPs" 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=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZnby5wbHVyYWxzaSIsInRpbWUiOjE3MTA5NDcxNzEuOTYzNDg5NX0:1rmxW7:er9_Sn_IBZLA0vx1tUBXeS2RDiEunuNJ3UtTqzAET80" 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/MzAzLU1OSS04MDkAAAGR-16XVci5a5qwxOvjVX6SI26PCrfN9I88Q_LEomTCgHHavTUPXih9tMxdrtZJlGkulLVw3N4=" 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%253DMzAzLU1OSS04MDkAAAGR-16XVawAczvTEyCxAMABxW9gMyDxffyAiUpLN_5YFt0YRqat_qfoAEerdFfAMI0lu9PCy6NAkw60DofYs8ErBDjJh_d5iN2IeZsSP9mhSeUzgUHDhQmv7KXeftU9J-Y09wBdlDfuXDYC/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjb25uZWN0LnBsdSIsInRpbWUiOjE3MTA5NDcxNzEuOTYzNjc1NX0:1rmxW7:VYXun7N2uDB7svZIyCb7Uzhu0-h33hxfnJ_xqr7jCEM" 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>