-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
63 lines (63 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Acai Project</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<style>
.logo {
font-size: 100px;
text-align: center;
min-height: 470px;
max-width: 1300px;
}
.jumbotron {
background-image: url("https://raw.githubusercontent.com/syngenta/acai-docs/main/img/logo-word.png");
background-size: cover;
background-color: black;
}
.language{
background-color: grey;
border: 1px grey solid;
min-width: 200px;
}
</style>
</head>
<body>
<div class="container">
<h2>The Acai Project</h2>
<h4>Bringing Happy Path Programming to all languages & platforms</h4>
<div class="row">
<div class="col-md-12">
<div class="jumbotron logo"></div>
</div>
</div>
<div class="row">
<h4>
<img src="https://raw.githubusercontent.com/syngenta/acai-docs/main/img/aws-logo.svg" width="90px">
AWS Serverless Lambdas
</h4>
</div>
<hr />
<div class="row">
<div class="col-md-12 text-center">
<a href="https://syngenta.github.io/acai-js-docs/" class="btn btn-primary btn-lg language" role="button"
aria-disabled="true">
<img src="https://raw.githubusercontent.com/syngenta/acai-docs/main/img/Node.js_logo.svg" width="90px">
<br />
Acai Node (JS)
</a>
<a href="https://syngenta.github.io/acai-python-docs/" class="btn btn-primary btn-lg language" role="button" aria-disabled="true">
<img src="https://raw.githubusercontent.com/syngenta/acai-docs/main/img/Python-logo-notext.svg.png" width="50px">
<br />
Acai Python
</a>
</div>
</div>
<hr />
</div>
<br />
<br />
<br />
</body>
</html>