-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathabout.html
51 lines (47 loc) · 1.99 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<style>
body {
background-color: #e8f2fc;
text-align: center;
}
</style>
<link rel="stylesheet" href="./node_modules/@mdi/font/css/materialdesignicons.min.css">
</head>
<body>
<div>
<!--Image Lab Logo-->
<img src="./assets/logos/Image Lab full logo.png" height="150px">
<!--Intro about ImageLab-->
<div style="background-color: white; margin: 15px; border-radius: 10px;">
<p style="font-family: 'Courier New', Courier, monospace; font-weight: bold;
padding: 20px;">
ImageLab is a standalone tool which supports anyone to get started with image processing related
concepts
and
techniques in an interactive, less logical way. So, this tool enables and also motivates the fresh users
to
understand how image processing concepts work by interacting with ImageLab. Moreover, for the users who
are
already comfortable with image processing tasks ImageLab offers a test environment before they move
ahead
with actual implementation or development.</p>
<a href="https://scorelab.org/" target="_blank">
</div>
<!--Score Lab Logo-->
<img src="./assets/logos/Score Lab logo.png" alt="SCoRe Lab" style="height:40px; margin-left: 20px;">
</a>
<!--Github Link-->
<a href="https://github.com/scorelab/imagelab" target="_blank">
<span class="mdi mdi-github" alt="Github Repository"
style="font-size:40px; margin-left: 20px; color: black;"></span>
</a>
<!--Blockly Library Logo-->
<a href="https://developers.google.com/blockly" target="_blank">
<img src="./assets/logos/blockly logo.png" alt="Blockly Library" style="height:50px; margin-left: 20px;">
</a>
</div>
</body>
</html>