Skip to content
This repository was archived by the owner on Jul 21, 2025. It is now read-only.

Commit 651b99d

Browse files
committed
First version
1 parent 9bc9407 commit 651b99d

5 files changed

Lines changed: 130 additions & 1 deletion

File tree

ie4opendata.png

31.3 KB
Loading

index.html

Lines changed: 130 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,130 @@
1-
Information Extraction for Open Data
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<title>Information Extraction for Open data</title>
5+
<meta charset="utf-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
8+
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
9+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
10+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
11+
<style>
12+
body {
13+
font: 20px Montserrat, sans-serif;
14+
line-height: 1.8;
15+
color: #f5f6f7;
16+
}
17+
p {font-size: 16px;}
18+
.margin {margin-bottom: 45px;}
19+
.bg-1 {
20+
background-color: #1abc9c; /* Green */
21+
color: #ffffff;
22+
}
23+
.bg-2 {
24+
background-color: #474e5d; /* Dark Blue */
25+
color: #ffffff;
26+
}
27+
.bg-3 {
28+
background-color: #ffffff; /* White */
29+
color: #555555;
30+
}
31+
.bg-4 {
32+
background-color: #2f2f2f; /* Black Gray */
33+
color: #fff;
34+
}
35+
.container-fluid {
36+
padding-top: 70px;
37+
padding-bottom: 70px;
38+
}
39+
.navbar {
40+
padding-top: 15px;
41+
padding-bottom: 15px;
42+
border: 0;
43+
border-radius: 0;
44+
margin-bottom: 0;
45+
font-size: 12px;
46+
letter-spacing: 5px;
47+
}
48+
.navbar-nav li a:hover {
49+
color: #1abc9c !important;
50+
}
51+
</style>
52+
</head>
53+
<body>
54+
55+
<!-- Navbar -->
56+
<nav class="navbar navbar-default">
57+
<div class="container">
58+
<div class="navbar-header">
59+
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
60+
<span class="icon-bar"></span>
61+
<span class="icon-bar"></span>
62+
<span class="icon-bar"></span>
63+
</button>
64+
<a class="navbar-brand" href="#top">IE4OpenData</a>
65+
</div>
66+
<div class="collapse navbar-collapse" id="myNavbar">
67+
<ul class="nav navbar-nav navbar-right">
68+
<li><a href="#ie">Information Extraction</a></li>
69+
<li><a href="#initiatives">Initiatives</a></li>
70+
<li><a href="#join">Joining Us</a></li>
71+
</ul>
72+
</div>
73+
</div>
74+
</nav>
75+
76+
<!-- First Container -->
77+
<div id="top" class="container-fluid bg-1 text-center">
78+
<h3 class="margin">Information Extraction for Open Data</h3>
79+
<img src="ie4opendata.png" class="img-responsive margin" style="display:inline" alt="Information Extraction for Open Data Logo" width="350" height="350">
80+
<h3>Empowering Citizens By Automatically Swifting Through Large Amounts of Text</h3>
81+
</div>
82+
83+
<!-- Second Container -->
84+
<div id="ie" class="container-fluid bg-2 text-center">
85+
<h3 class="margin">Information Extraction</h3>
86+
<p>"Information extraction (IE) is the task of automatically extracting structured information from unstructured and/or semi-structured machine-readable documents. In most of the cases this activity concerns processing human language texts by means of natural language processing (NLP)" from <a href="https://en.wikipedia.org/wiki/Information_extraction">Wikipedia</a>.</p>
87+
<a href="https://github.com/IE4OpenData/ECI2016T2" class="btn btn-default btn-lg">
88+
<span class="glyphicon glyphicon-education"></span> Learn more
89+
</a>
90+
</div>
91+
92+
<!-- Third Container (Grid) -->
93+
<div id="initiatives" class="container-fluid bg-3 text-center">
94+
<h3 class="margin">Initiatives</h3><br>
95+
<div class="row">
96+
<div class="col-sm-4">
97+
<p><a href="https://github.com/IE4OpenData/Octroy">Octroy</a>. Extracting company, amount and reason
98+
from the executive proceedings of the governments of the cities
99+
of Laval and Montreal. In French.</p>
100+
<img src="octroy.jpg" class="img-responsive margin img-circle" style="width:100%" alt="Montreal City Hall (source: Wikipedia)">
101+
</div>
102+
<div class="col-sm-4">
103+
<p><a href="https://github.com/IE4OpenData/Vozyvoto">Voz y
104+
voto</a>. Extracting speaker and speaker mentions and
105+
automatically identifying gender for national representatives in
106+
the transcriptions of the Argentinian congress. In Spanish.</p>
107+
<img src="vozyvoto.jpg" class="img-responsive img-circle margin" style="width:100%" alt="Palace of the Argentine National Congress (source: Wikipedia)">
108+
</div>
109+
<div class="col-sm-4">
110+
<p>More to come. Bring your data, your problem or your system under the umbrella of the IE4OpenData project.</p>
111+
<img src="more.jpg" class="img-responsive margin img-circle" style="width:100%" alt="Headquarters of the United Nations (source: Wikipedia)">
112+
</div>
113+
</div>
114+
</div>
115+
116+
<div id="join" class="container-fluid bg-2 text-center">
117+
<h3 class="margin">Joining Us</h3>
118+
<p>This project is just starting, the easier way is to contact us by email. </p>
119+
<a href="mailto:pablo.duboue@gmail.com" class="btn btn-default btn-lg">
120+
<span class="glyphicon glyphicon-envelope"></span> Email Us
121+
</a>
122+
</div>
123+
124+
<!-- Footer -->
125+
<footer class="container-fluid bg-4 text-center">
126+
<p>All website content under <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a></p>
127+
</footer>
128+
129+
</body>
130+
</html>

more.jpg

28 KB
Loading

octroy.jpg

37.4 KB
Loading

vozyvoto.jpg

33 KB
Loading

0 commit comments

Comments
 (0)