working-lab-exercise.html 5.65 KB
<!doctype html>
<html lang="en">
  <head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
	<!-- CUSTOM CSS -->
	<link rel="stylesheet" href="css/custom.css">

    <title>Working with LAB Exercises</title>
  </head>
  <body>
    <div class="container-fluid  h-100">
		<div class="d-block d-md-none showmenu">
			<button class="btn btn-block bg-transparent text-white">show Menu</button>
		</div>
	  	<div class="row h-100">
			<div class="sidebar">
				<ul >
					<li>
						<a href="index.html">01. Introduction to A.D.A.M. Interactive Anatomy</a>
					</li>
					<li>
						<a href="whats-new-in-adam-interactive-anatomy.html">02. What's New in A.D.A.M. Interactive Anatomy?</a>
					</li>
					<li>
						<a href="customer-support.html">03. Customer Support</a>
					</li>
					<li>
						<a href="system-requirements.html">04. System Requirements</a>
					</li>
					<li>
						<a href="getting-started.html">05. Getting Started</a>
					</li>
					<li>
						<a href="working-with-dissectible-anatomy.html">06. Working with Dissectible Anatomy</a>
					</li>
					<li>
						<a href="working-with-atlas-anatomy.html">07. Working with Atlas Anatomy</a>
					</li>
					<li>
						<a href="working-3d-anatomy.html">08. Working with 3D Anatomy</a>
					</li>
					<li>
						<a href="working-curriculum-builder.html">09. Working with Curriculum Builder</a>
					</li>
					<li class="active">
						<a href="working-lab-exercise.html">10. Working with LAB Exercises</a>
					</li>
					
				</ul>
			</div>
			<div class="content">
				<h2 class="panel-heading">Working with LAB Exercises</h2>
				<div class="col-12">
				    <h4 class="sub-panel-heading">A. Opening Lab Exercises Assessments</h4>
				    <p>To open Lab Exercises Assessments</p>
					<ul class="roman">
					  <li>On the Home Page, click the Lab Exercises.</li>
					  <li>You can select any of the Body System assessment</li>
					</ul>
					<p><strong>I. Identifying Lab Exercises Assessments</strong></p>
					<p>In Lab Exercises, identified assessment by finding the body system’s images.</p>
					<ul class="roman">
					  <li>Select the body system’s thumbnail</li>
					</ul>
					<p><strong>II. To Save an Assessment</strong></p>
					<p>You can save the attempted assessment.</p>
					<p>To Save the Assessment:</p>
					<ul class="roman">
					  <li>Select the answer.</li>
					  <li>Click and hold the answer.</li>
					  <li>Drag the answer the drop-box and drop to the new position.</li>
					  <li>Click on the Save button</li>
					</ul>
					<p><strong>III. To Review the Attempted Question</strong></p>
					<p>You can review your attempted question.</p>
					<p>To review the attempted Question:</p>
					<ul class="roman">
						<li>Select the answer.</li>
						<li>Click and hold the answer.</li>
						<li>Drag the answer the drop-box and drop to the new position.</li>
						<li>Click on the Review Your Attempt.</li>
					</ul>
					<p><strong>IV. To Reset the Answers</strong></p>
					<p>You can also reset the attempted answers to their initial position.</p>
					<p>To Reset an answer:</p>
                    <ul class="roman">
						<li>Select the answer.</li>
						<li>Click and hold the answer.</li>
						<li>Drag the answer the drop-box and drop to the new position.</li>
						<li>Click on the Reset button.</li>
						
					</ul>
					<p><strong>V. To Change the Questions</strong></p>
                    <p>You can change the question by:</p>
                    <ul class="roman">
						<li>Click on the Next and Previous buttons</li>
					</ul>
					<h4 class="sub-panel-heading">B. Submitting Lab Exercises Assessments</h4>
					<p>You can Submit the Assessments and Review the status of the attempted and not-attempted questions on the Performance Report form.</p>
					<p>To Submit Assessment.</p>
					<ul>
						<li>Click on the Submit button present at the end of each assessment.</li>
					</ul>
                    <h4 class="sub-panel-heading">C. Email Lab Exercises Assessments</h4>
					<p>You can also Email the Assessments </p>
					<p>To Email Assessment.</p>
					<ul>
						<li>Click on the Email button present on the Performance Report.</li>
						<li>Enter the Valid E-mail ID(s)</li>
						<li>Click on Send.</li>
					</ul>
					<h4 class="sub-panel-heading">D. Lab Exercises Quick Reference</h4>
					<div class="row justify-content-center my-5">
						<div class="col-md-6">
							<img class="img-fluid" src="images/lab-exercise.jpg" alt="Lab Exercises">
						</div>
					</div>
				</div>
			</div>
		</div>
	</div>

    <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
	  
	  <script>
		 $(document).ready(function(){
			 $('.showmenu button').on('click', function(){
				 $('.sidebar').toggleClass('show');
			 });
		 });
	 </script> 
  </body>
</html>