-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtextextractor.html
72 lines (67 loc) · 2.29 KB
/
textextractor.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Anthony Papetti Portfolio- TextExtractor</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.13.0/css/all.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div class="container">
<!--────────────────Header───────────────-->
<header>
<nav>
<ul class="nav-bar"><div class="bg"></div>
<li><a class="nav-link active" href="index.html">Back</a></li>
</ul>
<div class="hamburger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
</header>
<main>
<!--─────────────────Home────────────────-->
<div id="home">
<div class="filter"></div>
<section class="intro">
<h3>TextExtractor<hr></h3>
<p>A command line tool and web application</p>
<p>to extract useful data from writing</p>
</section>
</div>
<!--───────────────Projects───────────────-->
<div id="projects">
<h3>Features<hr></h3>
<em>Two Versions</em>
<p>Command line tool that takes in text files</p>
<p>Web app that takes in form text</p>
<em>Metadata</em>
<p>Word Count</p>
<p>Character count with and without spaces</p>
<p>Line count</p>
<p>Number of Special Punctuation</p>
<p>Average Word Length</p>
<em>Sorted Lists</em>
<p>Words sorted by commonality using quick sort</p>
<p>words sorted alphabetically using bucket sort</p>
</div>
<div id="projects">
<h3>Made With<hr></h3>
<p>Python</p>
<p>Flask (Web Only)</p>
</div>
<div class="social-media">
<a href="https://github.com/anthonypapetti/TextExtractor" target="_blank"><i class='fab fa-github'></i></a>
</div>
</main>
<footer class="copyright">© 2020
<a href="" target="_blank"> Anthony Papetti</a>
</footer>
</div>
</body>
</html>