-
Notifications
You must be signed in to change notification settings - Fork 0
/
howtodo.html
54 lines (50 loc) · 1.92 KB
/
howtodo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>How It Works - Neuro Nova</title>
<link rel="stylesheet" href="style.css"> <!-- Include your CSS file -->
</head>
<body>
<header>
<!-- Include your header content if necessary -->
</header>
<nav class="navbar">
<ul>
<li><a href="index11.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="Services.html">Services</a></li>
<li><a href="howtodo.html">How It Works</a></li>
<li><a href="product.html">Products</a></li>
<li><a href="login.html">Login/SignUp</a></li>
<!-- Add other links if needed -->
</ul>
</nav>
<section class="how-it-works">
<div class="step">
<img src="images/key.png" alt="Sign Up Icon" class="step-icon">
<h3>1. Sign up and create your profile</h3>
<p>Create your account and provide some basic information to personalize your experience.</p>
</div>
<div class="step">
<img src="images/id-card.png" alt="Chat Icon" class="step-icon">
<h3>2. Login Credential </h3>
<p>Choose between Users.</p>
</div>
<div class="step">
<img src="images/clipboard.png" alt="Insights Icon" class="step-icon">
<h3>3. Confirmation Protocol </h3>
<p>Once Verification is done, The Volunteer will be Matched.</p>
</div>
<div class="step">
<img src="images/conversation.png" alt="Progress Icon" class="step-icon">
<h3>4. Connect </h3>
<p>Meet your chosen Volunteer.</p>
</div>
</section>
<footer>
<!-- Include your footer content if necessary -->
</footer>
</body>
</html>