<!-- udacimak v1.2.1 -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Your Udacity Professional Profile</title>
<link rel="stylesheet" href="../assets/css/bootstrap.min.css">
<link rel="stylesheet" href="../assets/css/plyr.css">
<link rel="stylesheet" href="../assets/css/katex.min.css">
<link rel="stylesheet" href="../assets/css/jquery.mCustomScrollbar.min.css">
<link rel="stylesheet" href="../assets/css/styles.css">
<link rel="shortcut icon" type="image/png" href="../assets/img/udacimak.png" />
</head>
<body>
<div class="wrapper">
<nav id="sidebar">
<div class="sidebar-header">
<h3>Career Services Available to You</h3>
</div>
<ul class="sidebar-list list-unstyled CTAs">
<li>
<a href="../index.html" class="article">Back to Home</a>
</li>
</ul>
<ul class="sidebar-list list-unstyled components">
<li class="">
<a href="01. Meet the Careers Team.html">01. Meet the Careers Team</a>
</li>
<li class="">
<a href="02. Mercedes-Benz.html">02. Mercedes-Benz</a>
</li>
<li class="">
<a href="03. NVIDIA.html">03. NVIDIA</a>
</li>
<li class="">
<a href="04. Uber ATG.html">04. Uber ATG</a>
</li>
<li class="">
<a href="05. Your Udacity Professional Profile.html">05. Your Udacity Professional Profile</a>
</li>
<li class="">
<a href="06. Get Started.html">06. Get Started</a>
</li>
</ul>
<ul class="sidebar-list list-unstyled CTAs">
<li>
<a href="../index.html" class="article">Back to Home</a>
</li>
</ul>
</nav>
<div id="content">
<header class="container-fluild header">
<div class="container">
<div class="row">
<div class="col-12">
<div class="align-items-middle">
<button type="button" id="sidebarCollapse" class="btn btn-toggle-sidebar">
<div></div>
<div></div>
<div></div>
</button>
<h1 style="display: inline-block">05. Your Udacity Professional Profile</h1>
</div>
</div>
</div>
</div>
</header>
<main class="container">
<div class="row">
<div class="col-12">
<div class="ud-atom">
<h3></h3>
<div>
<h1 id="connect-to-hiring-partners-through-your-udacity-professional-profile">Connect to Hiring Partners through your Udacity Professional Profile</h1>
</div>
</div>
<div class="divider"></div><div class="ud-atom">
<h3></h3>
<div>
<figure class="figure">
<img src="img/udacitylogo-copy.png" alt="" class="img img-fluid">
<figcaption class="figure-caption">
</figcaption>
</figure>
</div>
</div>
<div class="divider"></div><div class="ud-atom">
<h3></h3>
<div>
<p>In addition to the Career Lessons and Projects you'll find in your Nanodegree program, you have a Udacity Professional Profile, which can be accessed through your Career Portal. Once in the Career Portal, simply click on the "Edit Profile" next to your name, and you will be taken to your Udacity Professional Profile:</p>
</div>
</div>
<div class="divider"></div><div class="ud-atom">
<h3></h3>
<div>
<figure class="figure">
<img src="img/screen-shot-2018-07-27-at-1.24.38-pm.png" alt="" class="img img-fluid">
<figcaption class="figure-caption">
</figcaption>
</figure>
</div>
</div>
<div class="divider"></div><div class="ud-atom">
<h3></h3>
<div>
<p>Your Udacity Professional Profile features important, professional information about yourself. When you make your profile public, it becomes accessible to our Hiring Partners.</p>
</div>
</div>
<div class="divider"></div><div class="ud-atom">
<h3></h3>
<div>
<p>Your profile will also connect you with recruiters and hiring managers who come to Udacity to hire skilled Nanodegree graduates.</p>
<p>As you complete projects in your Nanodegree program, they will be automatically added to your Udacity Professional Profile to ensure you're able to show employers the skills you've gained through the program. In order to differentiate yourself from other candidates, make sure to go in and customize those project cards. In addition to these projects, be sure to:</p>
<ul>
<li>Keep your profile updated with your basic info and job preferences, such as location</li>
<li>Ensure you upload your latest resume</li>
<li>Return regularly to your Profile to update your projects and ensure you're showcasing your best work</li>
</ul>
<p>If you are looking for a job, make sure to keep your Udacity Professional Profile updated and visible to recruiters!</p>
</div>
</div>
<div class="divider"></div>
</div>
</div>
</main>
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-12">
<p class="text-center">
<a href="https://github.com/udacimak/udacimak#readme" target="_blank">udacimak v1.2.1</a>
</p>
</div>
</div>
</div>
</footer>
</div>
</div>
<script src="../assets/js/jquery-3.3.1.min.js"></script>
<script src="../assets/js/plyr.polyfilled.min.js"></script>
<script src="../assets/js/bootstrap.min.js"></script>
<script src="../assets/js/jquery.mCustomScrollbar.concat.min.js"></script>
<script src="../assets/js/katex.min.js"></script>
<script>
// Initialize Plyr video players
const players = Array.from(document.querySelectorAll('video')).map(p => new Plyr(p));
// render math equations
let elMath = document.getElementsByClassName('mathquill');
for (let i = 0, len = elMath.length; i < len; i += 1) {
const el = elMath[i];
katex.render(el.textContent, el, {
throwOnError: false
});
}
// this hack will make sure Bootstrap tabs work when using Handlebars
if ($('#question-tabs').length && $('#user-answer-tabs').length) {
$("#question-tabs a.nav-link").on('click', function () {
$("#question-tab-contents .tab-pane").hide();
$($(this).attr("href")).show();
});
$("#user-answer-tabs a.nav-link").on('click', function () {
$("#user-answer-tab-contents .tab-pane").hide();
$($(this).attr("href")).show();
});
} else {
$("a.nav-link").on('click', function () {
$(".tab-pane").hide();
$($(this).attr("href")).show();
});
}
// side bar events
$(document).ready(function () {
$("#sidebar").mCustomScrollbar({
theme: "minimal"
});
$('#sidebarCollapse').on('click', function () {
$('#sidebar, #content').toggleClass('active');
$('.collapse.in').toggleClass('in');
$('a[aria-expanded=true]').attr('aria-expanded', 'false');
});
});
</script>
</body>
</html>