-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
82 lines (73 loc) · 2.53 KB
/
about.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About PIXL MindMapper</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>PIXL MindMapper</h1>
</header>
<main>
<section id="about">
<h2>About PIXL MindMapper</h2>
<p>PIXL MindMapper is a powerful online mind mapping tool designed to help you visualize your thoughts, ideas, and concepts in a structured and intuitive way. PIXL MindMapper offers enhanced features and functionalities tailored to meet the diverse needs of our users.</p>
<p>Whether you're brainstorming for a project, organizing your thoughts for a presentation, or outlining your next big idea, PIXL MindMapper provides you with the tools you need to create dynamic and interactive mind maps effortlessly.</p>
<h3>Key Features:</h3>
<ul>
<li>Intuitive Interface: Our user-friendly interface makes it easy for users of all levels to create, edit, and customize mind maps with ease.</li>
<li>Collaborative Capabilities*: Collaborate with team members in real-time, share your mind maps, and work together to generate innovative ideas.</li>
<li>Customization Options: Customize your mind maps with different colors, shapes, icons, and styles to suit your preferences and enhance visual clarity.</li>
<li>Export and Share: Export your mind maps in various formats, including JSON, PNG, and Upload to the Cloud, to share them with colleagues, friends, and clients effortlessly.</li>
</ul>
<h3>Get Started with PIXL MindMapper Today!</h3>
<p>Unlock your creativity, streamline your thought processes, and bring your ideas to life.</p>
</section>
</main>
<footer>
<p>© 2024 PIXL Corporation. All rights reserved.</p>
</footer>
<style>
/* styles.css */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
}
header h1 {
margin: 0;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 20px;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
main {
padding: 20px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</body>
</html>