-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 930 Bytes
/
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
<!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>znci Paint</title>
<link rel="stylesheet" href="./css/index.css">
</head>
<body>
<div class="centre-content">
<div class="content">
<div class="title">
<img src="./img/prototype.svg" width="200" alt="PROTOTYPE">
<img src="./img/paint.svg" alt="paint">
</div>
<div class="description">
A free drawing app with PNG, SVG and JPG support.
</div>
<div class="footer">
<a href="app.html" class="button button-primary">Get Started</a>
</div>
</div>
</div>
<div style="position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);">
<a href="https://znci.dev"><img src="./img/znci-project.svg" width="150" alt=""></a>
</div>
</body>
<script src="js/znci/tools.js"></script>
</html>