-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
119 lines (119 loc) · 3.43 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!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">
<title>12 Moons</title>
<meta name="description" content="12 Moons - Remote Software Development Company.">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/css/bootstrap.min.css" integrity="sha384-y3tfxAZXuh4HwSYylfB+J125MxIs6mR5FOHamPBG064zB+AFeWH94NdvaCBm8qnd" crossorigin="anonymous">
<style>
body {
background-color: white;
}
.container-fluid {
padding-left: 30px;
padding-right: 30px;
max-width: 1350px;
}
h1 {
font-weight: bold;
font-size: 2.3em;
}
h2 {
font-size: 1.2em;
text-transform: uppercase;
opacity: 0.85;
}
h4 {
text-transform: uppercase;
font-size: 1.3em;
opacity: 0.85;
}
a, a:hover, a:active, a:visited, a:focus {
font-size: 1.1em;
text-decoration: none;
}
p {
margin-bottom: 40px;
line-height: 30px;
}
#activities {
margin-top: 125px;
}
@media (max-width: 700px) {
#activities .col-md-3 {
margin-top: 75px;
}
#activities {
margin-top: 75px;
}
}
#activities p {
margin-bottom: 30px;
}
#activities img {
width: 200px;
display: block;
margin: auto;
border: 1px solid #eee;
border-radius: 2px;
}
#footer {
margin-top: 125px;
}
#footer a {
color: #555;
}
#development img {
width: 120px;
display: inline-block;
border: 0px;
}
#header {
margin: 0;
width: 100%;
background-color: #1258ff1a;
padding-bottom: 25px;
}
</style>
</head>
<body>
<div id="header" class="text-xs-center">
<img style="margin-bottom: 30px; margin-top: 20px; width: 100px; display: inline-block" src="logo.png">
<h1 style="display: inline-block">12 Moons</h1>
<h2>Remote Software Development Company</h2>
</div>
<div class="container-fluid text-xs-center">
<div id="activities" class="row">
<div class="col-md-4">
<h4><a target="_BLANK" href="https://selecteev.io">Selecteev</a></h4>
<p>
Projects selection platform used by multiple incubators and accelerators around the world.
</p>
<img src="selecteev.png">
</div>
<div id="development" class="col-md-4">
<h4>Software development</h4>
<p>
We do full-stack software development for ambitious startups and institutions, helping them create great products.
</p>
<img src="thefamily.png">
<img src="numa.png"><br>
<img src="wbg.png">
</div>
<div class="col-md-4">
<h4>Cryptocurrency mining & consulting</h4>
<p>Looking for small scale mining operations consultation and setup services? We can help!</p>
<img src="mining.jpg">
</div>
</div>
<div id="footer" class="row">
<div class="col-sm-12">
<a href="mailto:[email protected]">[email protected]</a><br>
</div>
</div>
</div>
</body>
</html>