-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
72 lines (68 loc) · 2.2 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Csq</title>
<link rel="stylesheet" href="./static/style.css">
<link rel="icon" type="image/x-icon" href="./media/logo.png">
<script src="./static/index.js"></script>
</head>
<body onload="increment()">
<header>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="https://csqlang.github.io/docs/">Docs</a></li>
<li><a href="https://csqlang.github.io/docs/">Install</a></li>
<li><a href="/feedback.html">Feedback</a></li>
<!-- <li>Views:<span id='views'>0</span></li> -->
</ul>
</nav>
</header>
<main>
<section id="home">
<div class="home-content">
<h1 class="title_csq">Csq</h1>
<h5 class="csqdef">Csq is a high level programming language which is inspired by the speed of C++ and productivity of Python.</h5>
<a href="#download" class="btn">Get Started</a>
</div>
</section>
<section id="about">
<h2>About</h2>
<p>Csq is a programming language created by <a href="https://github.com/AniketKumar2500">Aniket Kumar</a> in 2022 which provides:</p>
<li>Easy Syntax</li>
<li>Fast Speed</li>
<li>Dynamically Typed</li>
<li>Memory Safety</li>
<br>
<h3>How it works?</h3>
<p>It's a language which is written in C & C++ and having the syntax very similar to Python. It uses a compiler which compiles the code into C++.</p>
</section>
<section id="download">
<h2>Download for linux</h2>
<div class="commands-container">
<pre class="terminal">
<code>
$ git clone https://github.com/CsqLang/Csq4
$ cd Csq4/
$ bash build.sh
</code>
</pre>
</div>
<h12>Now you are good to go!!</h12>
</section>
<section id="Community">
<h2>Community</h2>
<p>We are having a organization on github which holds the repo of Csq programming language and anyone could contribute since it's open source.</p>
For contributing visit:
<a href="https://github.com/CsqLang/">CsqLang Org</a>
<a href="https://github.com/CsqLang/">
<img src="./media/logo.png">
</a>
<!-- <a href = "https://github.com/AniketKumar2500" class="contributors">
<img>
</a> -->
</section>
</main>
</body>
</html>