-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (66 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Carrot Language</title>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<header class="header">
<div class="inner">
<div class="left">
<a href="/"> Carrot </a>
</div>
<div class="right">
<a href="/install">Install</a>
<a href="/tools">Tools</a>
<a href="/explore">Explore</a>
<a href="/docs">Docs</a>
</div>
</div>
</header>
<div class="masthead">
<div class="floater1"></div>
<div class="centered">
<h1>One Language. Every Codebase.</h1>
<code>npm install carrot-lang@latest</code>
</div>
</div>
<div class="infobox">
<table>
<tr>
<td>
<div class="head">
<h2>What is Carrot?</h2>
</div>
<div class="main">
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Corrupti tenetur quas perspiciatis consequuntur vel saepe animi
explicabo molestiae, illum eius sequi facere hic tempora nemo
consequatur eos! Magni, quas soluta. Lorem ipsum dolor sit amet,
consectetur adipisicing elit. Quisquam ab commodi quam sed
perspiciatis deleniti fugiat, nisi aspernatur, cupiditate
voluptate quod. Praesentium temporibus necessitatibus unde dicta
cumque corrupti, fugit perspiciatis.
</p>
</div>
</td>
<td>
<code>
function clamp(int value, int min, int max) -> int {<br />
<br />
if (value < min) return min;<br />
if (value > max) return max;<br />
return value;<br />
<br />
}
</code>
</td>
</tr>
</table>
</div>
</body>
</html>