-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
127 lines (110 loc) · 3.34 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Record your screen for free with our online screen recorder. Capture and share your screen easily.">
<meta name="keywords" content="free screen recorder, screen capture, record screen, online recorder, video recording">
<title>About Us - Free Record Screen</title>
<style>
/* Basic Styling - Shared with rest of site */
body {
font-family: 'Roboto', Arial, sans-serif;
background-color: #f8f8f8;
margin: 0;
padding: 0;
color: #333;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
margin-top: 50px;
}
header {
text-align: center;
}
h1 {
margin-top: 0;
}
/* About Page Specific */
main {
margin-top: 30px;
}
section {
margin-bottom: 25px;
}
h2 {
color: #3498db;
border-bottom: 2px solid #3498db;
padding-bottom: 5px;
}
ul {
margin-left: 20px;
}
footer {
text-align: center;
margin-top: 20px;
}
footer a {
color: #333;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>About Us</h1>
</header>
<main>
<section class="mission">
<h2>Our Mission</h2>
<p>To empower individuals and businesses alike with a comprehensive screen recording solution. Whether you're crafting tutorials, showcasing presentations, or building video demonstrations, we strive to be your go-to platform for seamless screen recording.</p>
</section>
<section class="why-choose-us">
<h2>Why Choose Free Record Screen?</h2>
<ul>
<li>Simplicity</li>
<li>All-in-One</li>
<li>High-Quality Output</li>
<li>Universal Access</li>
<li>Commitment to Value</li>
</ul>
</section>
<section class="team">
<h2>The Team</h2>
<p>Free Record Screen is the result of a collaborative effort by passionate developers and designers. United by a shared love for technology and a desire to make people's lives easier, we are constantly working to improve and enhance our screen recording tool.</p>
</section>
<section class="open-source">
<h2>Open Source</h2>
<p>Free Record Screen is a free and open-source project. You can find the source code and contribute to its development on <a href="https://github.com/asma019/Record-Screen/">GitHub</a>.</p>
</section>
<section class="features">
<h2>Key Features</h2>
<ul>
<li>Customizable recording area</li>
<li>Multiple output formats supported</li>
<li>Audio recording capability</li>
<li>Easy sharing options</li>
<li>Compatible with various operating systems</li>
</ul>
</section>
<section class="contact">
<h2>Contact Us</h2>
<p>If you have any questions or feedback, feel free to reach out to us at <a href="mailto:info@recordscreen.me">info@recordscreen.me</a>.</p>
</section>
</main>
<footer>
<p>Have questions? <a href="https://recordscreen.me/contact.html">Contact Us</a></p>
<p><a href="https://recordscreen.me/">Try Free Record Screen Now</a></p>
</footer>
</div>
</body>
</html>