-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (58 loc) · 1.36 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
<html>
<head>
<title>CSV Handler</title>
<style>
body{
font-family: calibri;
outline: none;
margin: 0;
text-align: center;
background-color: #e3efff;
}
.poster{
max-width: 100%;
}
.content
{
text-align: justify;
display: inline-block;
width: 85%;
margin-top: 40pt;
margin-bottom: 40pt;
background-color: white;
padding: 15pt;
box-shadow: 0 2px 0 rgba(0,0,0,0.05);
border-radius: 5px;
}
</style>
</head>
<body>
<div class="content">
<table class="app">
<tr>
<td style="padding-left: 10pt;">
<div style="font-size: 35pt;">CSV Handler</div>
<div style="font-size: 20pt;">Java .csv file operation utility</div><br>
<a href="https://github.com/ppml38/CSV-Handler">Github repository</a>  ||  
<a href="https://ppml38.github.io/CSV-Handler/docs/index.html">Documentation</a>
</td>
</tr>
</table>
<br>
<hr><br>
<h3>What is this?</h3>
This utility is a package of frequently performed operations on .csv files.
<h3>How to use this?</h3>
<ol>
<li>Import this package in your program</li>
<li>Initiate with the file of your concern</li>
<li>Call the method of your purpose from your program</li>
</ol>
<h3>License</h3>
MIT License. Improvements are welcome.
<h3>Developer</h3>
Prakash Maria Liju P (<a href="https://www.linkedin.com/in/prakashmarialiju">linkedin.com/in/prakashmarialiju</a>)
<br><br>
</div>
</body>
</html>