-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (55 loc) · 2.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Eyeon</title>
<link href="css/index.css" rel="stylesheet" />
</head>
<body>
<div class="header">
<div><img src="images/logo_dark.svg" width="40"/></div>
<div> </div>
<div class="menu">
<button onclick="location.href='#about'">About</button>
<button onclick="location.href='#contact'">Contact</button>
</div>
</div>
<div class="quote">
Fixture<br><span style="font-size: 32px">A no bullshit raster graphics editor.</span>
<hr width=60% />
</div>
<div class="fixture-parent">
<div class="fixture">
<div class="fixture-grid-parent">
<div class="fixture-logo">
<img src="images/logo_fixture.svg" width=160px />
</div>
<div class="fixture-description">
Fixture is a cross-platform free and open source raster graphics editor. It is inspired by the need for having an equivalent of Adobe Photoshop on Linux-based platforms.
<br/>Fixture aims to be solid enough for season veterans , quick enough for amateur graphic artists and easy for new users to learn. It can be ported to any of your favorite operating systems that supports Qt. And it's free!
<p>
The project is <a href="https://github.com/eyeon/Fixture">hosted at github</a> and is based on Qt 5.11 on C++.
</p>
</div>
</div>
</div>
</div>
<div id="about">
<div class="about-title">About</div>
<div class="about-text"> Eyeon is in the core - an open software organization. We are non-profit and non-political. We are a bunch of opionated developers that came together to build something useful and fun. We believe in having an open environment to work on and share ideas and fix the problems we, as users, face in everyday life because some company won't do something in a way if that doesn't bring them enough cash. We are the people, curating solutions for the people.
- Kuntal, Dedipyaman
</div>
</div>
<div id="contact">
<div class="social">
<a href="https://t.me/eyeon_social"><img src="images/telegram.svg" width="40px"/></a>
<a href="mailto:eyeon@disroot.org"><img src="images/email.svg" width="40px"/></a>
<a href="https://github.com/eyeon/"><img src="images/github.svg" width="40px" /></a>
</div>
<div class="copyright">
© 2018 Eyeon. All rights reserved.
<hr width=10%/>
</div>
</div>
</body>
</html>