<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Wizard Tour Flow</title>
</head>
<body>
<div class="container">
<div class="overlay"></div>
<h1 class="title tourflow">
<span>Wizard Tour Flow</span>
<div class="tooltip">
<p>Title of the Project</p>
<button class="next" onClick="nextStep()">next</button>
<button class="skip" onClick="dismiss()">skip</button>
</div>
</h1>
<h2 class="subtitle tourflow">
<span>Step-by-Step guide and feature introduction</span>
<div class="tooltip">
<p>Sub Heading of the project</p>
<button class="next" onClick="nextStep()">next</button>
<button class="skip" onClick="dismiss()">skip</button>
</div>
</h2>
<div class="content tourflow">
<h3>A wizard is a series of pages that guide a user through a complex task. Allow the user to move through the pages.
<h3>Wizard panels can move in a straight line from start to finish, or branch into several different process flows.</h3>
<h3>Typically In Wizard Flow, each page collects a piece of information; when the user clicks the Finish button.</h3>
<div class="tooltip">
<p>Content of the project</p>
<button class="skip" onClick="dismiss()">skip</button>
</div>
</div>
</div>
</body>
</html>