-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
45 lines (40 loc) · 1.61 KB
/
about.html
File metadata and controls
45 lines (40 loc) · 1.61 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-D0ENCWPZL9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-D0ENCWPZL9');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>About Us | LoOPCode</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 40px;
max-width: 900px;
margin: auto;
background-color: #f9f9f9;
}
h1 {
color: #333;
}
p {
line-height: 1.6;
color: #555;
}
</style>
</head>
<body>
<h1>About Us</h1>
<p><strong>LoOPCode</strong> is a learning platform dedicated to helping aspiring developers master the art of web development. Our mission is to make programming easy, accessible, and engaging for everyone, from complete beginners to experienced coders.</p>
<p>We offer structured content, hands-on projects, interactive tools, and AI-powered assistance to guide learners through HTML, CSS, JavaScript, and beyond.</p>
<p>Our vision is to build a strong, self-paced learning ecosystem where students can explore, create, and innovate freely.</p>
<p>We believe in empowering creators — whether you're building your first website or launching a full-scale application, LoOPCode is here to support your journey.</p>
<p>If you have questions, suggestions, or just want to say hi, feel free to contact us at <strong>sdharmandra92@gmail.com</strong>.</p>
</body>
</html>