-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
60 lines (57 loc) · 2.4 KB
/
about.html
File metadata and controls
60 lines (57 loc) · 2.4 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About - LocalRepo</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<div class="acrylic-container">
<header>
<div class="heading-container">
<h1 class="about-heading">About LocalRepo</h1>
</div>
</header>
<section>
<h2>My Mission</h2>
<p>
Local Repo is a website where everybody can learn the code simply by learning the
examples. I believe that everybody should learn web development regardless of whether AI
can replace developers (especially web developers) or not.
</p>
</section>
<section>
<h2>Why?</h2>
<p>
<b> I am learning web development</b> because I want to make websites, and teach the world
how to make complex as well as easy websites for various purposes like making their
portfolio or blogs for free. Learning Websites makes it easy to make complex websites for
like showcasing some IRL project and etc. Without having to use paid or even free website
builders like Wix or Wordpress, for simple things, you can use them but, the problem is
that you have to pay for the domain name or hosting. But, with your own hand coded
websites, you can host them on Github Pages for free. And the level of customization you
get is UNMATCHABLE to those website builders. And watermarks? FORGET THEM! JavaScript isnt
even available in Wordpress!
</p>
</section>
<section>
<h2>Way to teaching web dev</h2>
<p>
currently learning web development by learning HTML, CSS, and JavaScript, these three
together are called Front End Development Languages, or simply, Front End development. I
am also learning VCS (Version Control System) like Git, which is a tool that helps you
manage your code.
</p>
</section>
<section class="l2h">
<a href="index.html" class="f1">Back to Home</a>
</section>
</div>
</div>
<footer class="about-footer">
<p>Open Source Website 2025. Made by @TechySC with VS Code</p>
</footer>
</body>
</html>