-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (70 loc) · 2.3 KB
/
Copy pathindex.html
File metadata and controls
70 lines (70 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" href="icon.png">
<title>Escript</title>
</head>
<body>
<header>
<img src="escript.png" width="125px">
</header>
<hr>
<main>
<div class="greetingBlock" align="center">
<br>
<div class="h1Greeting">
<h1>Welcome to the Escript website</h1>
</div>
<br>
<div class="codeBlock">
<code class="greetingCode">
<span class="comment">// Simple code on Escript</span><br>
<span class="keyword">println<span class="tmp">(</span><span class="str">"Hello, World!"</span><span class="tmp">)</span></span>
</code>
</div>
<br>
<nav>
<ul>
<li>Download</li><hr>
<li>About</li><hr>
<li>GhostPI</li><hr>
<li>Docs</li><hr>
<li>Community</li><hr>
</ul>
</nav>
</div>
<br>
<div class="aboutBlock">
<div class="content">
<div class="h1About">
<h1>About the Escript</h1>
</div>
<div class="pAbout">
<p>Esscript is an interpreted, dynamically typed programming language designed for writing scripts and console programs. Esscript is written in Python and C.</p>
</div>
</div>
<div class="infImg">
<img src="inf.png" width="200px">
</div>
</div>
<br>
<hr>
<br>
<div class="downloadBlock" align="center">
<h1>Download Escript</h1>
<div class="btnDownload">
<button onclick="alert('Later...')">Download Escript v0.0.1</button>
</div>
<div class="orLabel">
<p>or</p>
</div>
<div class="sourcebtnDownload">
<button onclick="alert('Later...')">Download Source Code Escript v0.0.1</button>
</div>
</div>
</main>
</body>
</html>