-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (66 loc) · 1.41 KB
/
Copy pathindex.html
File metadata and controls
94 lines (66 loc) · 1.41 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LanScript | Simple Programming Language</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img src="LS.png" class="logo" alt="LanScript Logo">
<nav>
<a href="index.html">Home</a>
<a href="playground.html">Playground</a>
<a href="variables.html">Variables</a>
<a href="examples.html">Examples</a>
</nav>
</header>
<section class="hero">
<h1>LanScript</h1>
<p>
A simple programming language designed to make coding easier,
cleaner, and more accessible.
</p>
<a class="button" href="playground.html">
Try LanScript
</a>
</section>
<section>
<h2>What is LanScript?</h2>
<p>
LanScript is a beginner-friendly programming language that focuses
on simple commands and readable code.
</p>
<p>
Create programs, text, and projects using an easy syntax.
</p>
</section>
<section>
<h2>Why LanScript?</h2>
<div class="cards">
<div class="card">
<h3>Easy Syntax</h3>
<p>
Simple commands make learning programming easier.
</p>
</div>
<div class="card">
<h3>Creative</h3>
<p>
Build games, websites, and programs.
</p>
</div>
<div class="card">
<h3>Beginner Friendly</h3>
<p>
Made for new developers.
</p>
</div>
</div>
</section>
<footer>
© 2026 LanScript Programming Language
</footer>
</body>
</html>