forked from vishanurag/Canvas-Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about-us.html
201 lines (192 loc) · 5.74 KB
/
about-us.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About Us - Creative Canvas Tool</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<style>
}
header {
background-color: #333;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
}
.site-name {
color: #ffffff; /* Changed to white for better visibility */
font-size: 24px; /* Slightly increased size */
font-weight: 600; /* Made it semi-bold */
margin: 0;
text-transform: uppercase; /* Added uppercase for emphasis */
letter-spacing: 1px; /* Added letter spacing */
}
.navbar a {
color: #a0a0a0;
font-size: 18px;
text-decoration: none;
padding: 0.5rem 1rem;
border-radius: 0.5rem;
transition: background-color 0.3s ease;
}
.navbar a:hover {
color: #fff;
background-color: rgba(255, 255, 255, 0.1);
}
/* Rest of your CSS remains the same */
h1 {
font-size: 2.5rem;
color: #353047;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
h2 {
text-align: center;
margin: 2rem 0;
font-size: 2rem;
}
.first, .second {
display: flex;
justify-content: center;
align-items: center;
margin: 2rem 0;
}
.first {
flex-wrap: wrap;
}
.first-para, .second-para {
background-color: rgba(255, 255, 255, 0.3);
border-radius: 30px;
padding: 30px;
margin: 10px;
flex: 1;
min-width: 300px;
}
img {
height: auto;
width: 30%;
border-radius: 30px;
margin-top: 20px;
}
h3 {
font-size: 2rem;
text-align: center;
margin: 2rem 0;
}
.desc {
font-size: 1.2rem;
text-align: center;
padding: 0 20px;
}
.teams {
text-align: center;
margin: 2rem 0;
}
.team-member {
margin: 1rem 0;
}
/* Scroll Up Button Styles */
.scroll-up {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #333;
color: white;
border: none;
border-radius: 50%;
width: 50px;
height: 50px;
font-size: 24px;
cursor: pointer;
display: none; /* Hidden by default */
align-items: center;
justify-content: center;
}
.scroll-up:hover {
background-color: #555;
}
@media (max-width: 768px) {
.first, .second {
flex-direction: column;
align-items: center;
}
img {
width: 80%;
}
.first-para, .second-para {
width: 90%;
}
}
</style>
</head>
<body>
<!-- Circles -->
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<header class="header">
<nav class="navbar">
<div class="title">
<h1 class="site-name">Canvas Editor</h1>
<i class="fa-solid fa-paintbrush"></i>
</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="about-us.html">About</a>
<a href="privacy.html">Privacy</a>
<a href="Blog_page.html">Blogs</a>
<a href="Faq.html">FAQ</a>
<a href="contributors.html">Contributors</a>
<a href="testimonial.html">Testimonial</a>
<a href="signup.html">Sign Up</a>
<a href="login.html">Login</a>
</div>
</nav>
</header>
<section class="about-section">
</div>
</div>
<script>
// Get the button
const scrollUpBtn = document.getElementById("scrollUpBtn");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
scrollUpBtn.style.display = "flex";
} else {
scrollUpBtn.style.display = "none";
}
};
// When the user clicks on the button, scroll to the top of the document
scrollUpBtn.onclick = function() {
document.body.scrollTop = 0; // For Safari
document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera
};
</script>
</body>
</html>