SlideShare a Scribd company logo
Mustafa Jarrar
Lecture Notes, Web Data Management (MCOM7348)
University of Birzeit, Palestine
1st Semester, 2013

Practical guide to

RDFa
Dr. Mustafa Jarrar
University of Birzeit
mjarrar@birzeit.edu
www.jarrar.info
Jarrar © 2013

1
Watch this lecture and download the slides from
http://jarrar-courses.blogspot.com/2013/11/web-data-management.html

Jarrar © 2013

2
RDFa
•  Bridges the gap between the Web of Documents and the
Web of Data (Web 3.0).
•  Makes XHTML web pages structured data (by embedding
RDF triples inside XHTML).
•  i.e., using RDFa we build small RDF graphs and embed them
inside XHTML pages.

Jarrar © 2013

3
RDFa
•  As stated by Google Webmasters guide, RDFa can be
roughly viewed as a way to label content to describe a
specific type of information, such as a restaurant review,
an event, a person, or a product listing.
•  These information types are called entities or items. Each
entity has a number of properties. For example, a Person
has the properties name, address, job title, company, and
email address.
•  In general, RDFa uses simple attributes in XHTML tags
(often <span> or <div>) to assign brief and descriptive
names to entities and properties.
Jarrar © 2013

4
Example 1

Jarrar © 2013

5
Example 1

Jarrar © 2013

6
Example 2
Consider this HTML block:!
<div> !
!

My name is George Mousa. My friends call me Geno. I live in
Nablus, Palestine. I work as an engineer at Birzeit
University.!
!

</div>!
!
Annotate the HTML block above with RDFa:
<div xmlns:v="http://rdf.data-vocabulary.org/#"
typeof="v:Person">!
!

My name is <span property="v:name"> George Mousa </span>. !
My friends call me <span property="v:nickname"> Geno </span>. !
I live in Nablus, Palestine. !
I work as an engineer at <span property="v:affiliation">
Birzeit University </span>.!
!

</div>!
!
Jarrar © 2013

7
Example 2
<div xmlns:v="http://rdf.data-vocabulary.org/#" typeof="v:Person”>!
My name is <span property="v:name"> George Mousa </span>. !
My friends call me <span property="v:nickname"> Geno </span>. !
I live in Nablus, Palestine. !
I work as an engineer at <span property="v:affiliation"> Birzeit University </
span>.!
</div>!

•  The example begins with a namespace declaration using xmlns. This
indicates the namespace where the vocabulary is specified.
•  Also on the first line, typeof="v:Person" indicates that the markedup content represents a Person.
•  Each property of the person (such as the name and nickname) is
labeled using property.
•  To indicate a URL, use rel instead of property. Consider adding
the following to our example inside the Person div
My home page is: <a href="http://www.example.com"
rel="v:url"> www.example.com </a>.!

• 

"rel" is used to convey the relationship between two entities—in this case, a
Person entity and a webpage entity. !
Jarrar © 2013

8
Example 2
In our example, we have addressing information about George Mousa.
<div>

... I live in Nablus, Palestine. I work as an engineer ... </div>!

We use nesting. Nesting is when one information type includes the other.
In this case, we want to include George’s Address information
(typeof="v:Address") in the typeof="v:Person“ entity.
Here, we use rel to indicate a relationship between George (the entity v:Person)
and his address (the entity v:Address).
!

<div xmlns:v="http://rdf.data-vocabulary.org/#" typeof="v:Person">!
My name is <span property="v:name"> George Mousa </span>. !
My friends call me <span property="v:nickname"> Geno </span>. !
I live in!
<span rel="v:Address">!
<span typeof="v:Address"> !
<span property="v:city">Nablus</span>, !
<span property="v:country">Palestine</span>!
</span>!
</span>.!
I work as an engineer at <span property="v:affiliation"> Birzeit University
</span>.!
</div>
Jarrar © 2013

9
Let’s draw a graph of our example!

v:Person
e
v:nam

v:nickname

“George Mousa”
“Geno”
type

Of

v:city

v:Address
“Nablus”

“Palestine”
“Birzeit University”

Jarrar © 2013

10
RDFa Distiller

Jarrar © 2013

11
Jobs.ps Use Case
Suppose webpages of announcing job offers are written in
RDFa, then www.jobs.ps can crawl this data automatically.

Page 1

Page n
Jarrar © 2013

12
RDFa
Practical Session

Jarrar © 2013

13
Description
Given two XHTML files, people.html and projects.html, each
student must embed both documents with RDFa. Consider
the following when doing the exercise:
-  Both documents are validated XHTML documents. We have validated
them using the standard W3C Validator: http://validator.w3.org/
-  Students must use standard known ontologies when annotating the
documents, such as FOAF, Dublin Core, etc.
-  Students must validate their work using the standard W3C validator.
-  Each student must expect to present and discuss his/her work at class.
-  Final delivery must include links of the two RDFa-annotated documents.

PalGov © 2013

14
Projects.html
Copy and Paste this code into Notepad++
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Sina Institute - Projects</title>
</head>
<body>
<div id="box" style="text-align: center;"><strong><span class="largeFontSpan">[ </span><a title="Projects" href="#Active-Projects"><span class="largeFontSpan">Active Projects</span></a> | <a title="Past Projects" href="#Past-Projects">
<span class="largeFontSpan">Past Projects</span><span style="color: #ffffff;"> </span></a><span class="largeFontSpan"> ]</span></strong></div>
<h1 id="Active-Projects">Active Projects</h1>
<table style="height: 786px;" width="475">
<tbody>
<tr>
<td><img class="alignleft size-full wp-image-350" title="PalGov " src="http://localhost/sina/wp-content/uploads/2011/02/eGovSeer.jpg" alt="GovSeer" width="132" height="100" /></td>
<td style="vertical-align: middle;"><strong>GovSeer - Interoperability of e-Governmental Services</strong>
Page:<span><a href="http://sites.birzeit.edu/comp/GovSeer/">http://sites.birzeit.edu/comp/GovSeer/</a></span></td>
</tr>
<tr>
<td><img class="alignleft size-full wp-image-350" title="PalGov " src="http://localhost/sina/wp-content/uploads/2011/08/palgove_logo_160x76.png" alt="The Palestinian e-government academy" width="132" /></td>
<td style="vertical-align: middle;"><strong>PalGov - e-Government Lifelong Learning Consortium</strong>
Page:<span><a href="http://sites.birzeit.edu/comp/PalGov/">http://sites.birzeit.edu/comp/PalGov/</a></span></td>
</tr>
<tr>
<td><img class="alignleft size-full wp-image-337" title="Arabic Ontololgy" src="http://localhost/sina/wp-content/uploads/2011/02/arabicOntologyLogoLowResolution.jpg" alt="Arabic Ontololgy" width="133" height="126" /></td>
<td style="vertical-align: middle;"><strong>Arabic Ontology
</strong>Page:<span><a href="http://sites.birzeit.edu/comp/ArabicOntology/">http://sites.birzeit.edu/comp/ArabicOntology/</a></span></td>
</tr>
<tr>
<td><img class="alignleft size-full wp-image-352" title="Wojood" src="http://localhost/sina/wp-content/uploads/2010/09/jood.png" alt="" width="125" height="97" /></td>
<td style="vertical-align: middle;"><strong> Wojood
</strong>Page: <a href="http://localhost/sina/wojood/" target="_blank">http://localhost/sina/wojood/</a></td>
</tr>
<tr>
<td><img class="alignleft size-full wp-image-352" title="google" src="http://localhost/sina/wp-content/uploads/2010/09/google1.png" alt="" width="125" height="97" /></td>
<td style="vertical-align: middle;"><strong>A Suite of Automated Tools for Efficient Management and Search in Web-based Arabic Documents
</strong>Page:<span><a href="http://localhost/sina/SATEMSAD/">http://localhost/sina/SATEMSAD/</a></span></td>
</tr>
<tr>
<td><img class="alignleft size-full wp-image-357" title="MashQL" src="http://localhost/sina/wp-content/uploads/2010/09/mashql2.png" alt="MashQL" width="140" height="64" /></td>
<td style="vertical-align: middle;"><strong>MashQL: A novel approach for querying the Data Web</strong>
Page:<span><a href="http://sites.birzeit.edu/comp/mashql/">http://sites.birzeit.edu/comp/mashql/</a></span></td>
</tr>
<tr>
<td><img class="alignleft size-full wp-image-355" title="Mobile Information Technology for the Visually Impaired " src="http://localhost/sina/wp-content/uploads/2010/09/mitvi.png" alt="mgad" width="136" height="73" /></td>
<td style="vertical-align: middle;"><strong>Mobile Information Technology for the Visually Impaired
</strong>Page:<span><a href="http://localhost/sina/MITVI/" target="_blank">http://localhost/sina/MITVI/</a></span></td>
</tr>
</tbody>
</table>
<br class="spacer" />
<h1 id="Past-Projects">Past Projects</h1>
<table style="height: 86px;" width="473">
<tbody>
<tr>
<td><img class="alignleft size-full wp-image-353" title="Mobile Information Technology for the Visually Impaired " src="http://localhost/sina/wp-content/uploads/2010/09/mgad.png" alt="mgad" width="133" height="62" /></td>
<td style="vertical-align: middle;"><strong>Model Generation for Selected Applications</strong>
Page:<span><a href="http://localhost/sina/ModelGeneration/" target="_blank">http://localhost/sina/ModelGeneration/</a></span></td>
</tr>
</tbody>
</table>
</body>
</html>

PalGov © 2013

15
People.html
Copy and Paste this code into Notepad++
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Sina Institute - People</title>
</head>
<body>
<div id="box" style="text-align: center;"><strong><span class="largeFontSpan">[ </span><a title="Current Members" href="#Current"><span class="largeFontSpan">Current Members</span></a> |
<a title="Collaborators" href="#Collaborators"><span class="largeFontSpan">Collaborators</span></a> | <a title="Former Members" href="#Former"><span class="largeFontSpan">Former Members</span></a>
<span class="largeFontSpan"> ]</span></strong></div>
<h1 id="Current">Current Members</h1>
<table style="height: 149px;" width="617">
<tbody>
<tr>
<td style="vertical-align: middle; width: 109px; height: 160px;"><img class="alignnone" title="Dr. Mustafa Jarrar" src="http://localhost/sina/wp-content/uploads/2011/02/Jarrar.png" alt="Dr. Mustafa Jarrar" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160"><strong>Dr. Mustafa Jarrar</strong>
<em>OnTo Group Director</em>
<a href="mailto:mjarrar@birzeit.edu">mjarrar@birzeit.edu </a>
<a href="http://localhost/sina/mjarrar/" target="_blank">localhost/sina/mjarrar/</a></td>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Dr. Adnan Yahya" src="http://localhost/sina/wp-content/uploads/2011/02/yahya.png" alt="Dr. Adnan Yahya" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160"><strong>Dr. Adnan Yahya</strong>
<em>ALTIR Group Director</em>
<a href="mailto:yahya@birzeit.edu">yahya@birzeit.edu </a>
<a href="http://localhost/sina/ayahya/" target="_blank">localhost/sina/ayahya/</a></td>
</tr>
</tbody>
</table>
<!-- ******************************************************* -->
<table style="height: 147px;" width="603">
<tbody>
<tr>
<td style="vertical-align: middle; width: 220px; height: 160px;"><strong>Secretary</strong>:
Rawan Taha
<a href="mailto:rntaha@birzeit.edu">rntaha@birzeit.edu </a>
Tel: +972 2 2982917</td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="130" height="160"></td>
<td style="vertical-align: middle; width: 130px; height: 160px;"></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160"></td>
</tr>
</tbody>
</table>
<!-- ******************************************** -->
<hr /><!-- ******************************************** -->
<table style="height: 149px;" width="617">
<tbody>
<tr>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignleft size-full wp-image-354" title="Majd Al-Ashhab" src="http://localhost/sina/wp-content/uploads/2011/02/DSC079601.png"
alt="Majd Al-Ashhab" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Majd Al-Ashhab
<a href="mailto:mashhab@birzeit.edu">mashhab@birzeit.edu </a>
<a href="http://localhost/sina/mashhab/">localhost/sina/mashhab/</a></td>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Ali Salhi" src="http://localhost/sina/wp-content/uploads/2011/02/a11.png" alt="Ali Salhi" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Ali Salhi
<a href="mailto:asalhi@birzeit.edu">asalhi@birzeit.edu</a>
<a href="http://localhost/sina/asalhi/">localhost/sina/asalhi/</a></td>
</tr>
</tbody>
</table>

PalGov © 2013

16
People.html – continued
Copy and Paste this code into Notepad++
<!-- *********************************************************** -->
<table style="height: 149px;" width="617">
<tbody>
<tr>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignleft size-full wp-image-1124" title="antonPhoto" src="http://localhost/sina/wp-content/uploads/2011/02/antonPhoto.png" alt="" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Anton Deik
<a href="mailto:anton.deik@gmail.com">anton.deik@gmail.com</a>
<a href="http://localhost/sina/adeik/">localhost/sina/adeik/</a></td>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Bilal Farraj" src="http://localhost/sina/wp-content/uploads/2011/02/STB9565.png" alt="Bilal Farraj" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Bilal Farraj
<a href="mailto:bfarraj@gmail.com">bfarraj@gmail.com </a>
<a href="http://localhost/sina/bfarraj/">localhost/sina/bfarraj/</a></td>
</tr>
</tbody>
</table>
<!-- ************************************************************** -->
<table style="height: 149px;" width="617">
<tbody>
<tr>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img title="Ala' Hawash" src="../wp-content/uploads/2011/02/Ala.png" alt="Ala' Hawash" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Ala' Hawash
<a href="mailto:ala.hawash@gmail.com">ala.hawash@gmail.com</a>
<a href="http://localhost/sina/ahawash/">localhost/sina/ahawash/</a></td>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Rana Rishmawi" src="http://localhost/sina/wp-content/uploads/2011/03/Rana.png" alt="Rana Rishmawi" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Rana Rishmawi
<a href="mailto:rgr.4.12@gmail.com">rgr.4.12@gmail.com </a>
<a href="http://localhost/sina/rrishmawi/">localhost/sina/rrishmawi/</a></td>
</tr>
</tbody>
</table>
<table style="height: 149px;" width="617">
<tbody>
<tr>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img class="size-full wp-image-601 alignleft" title="Hiba Shaheen" src="http://localhost/sina/wp-content/uploads/2011/02/HibaShaheen.png" alt="" width="105"
height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Hiba Shaheen
<a href="mailto:shaheen.hiba@gmail.com ">shaheen.hiba@gmail.com </a>
<a href="http://localhost/sina/hshaheen/">localhost/sina/hshaheen/</a></td>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Rami Khaleel" src="../wp-content/uploads/2011/02/rami_khaleel.png" alt="Rami Khaleel" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Rami Khaleel
<a href="mailto:ramikhl@yahoo.com">ramikhl@yahoo.com </a>
<a href="http://localhost/sina/rkhaleel/">localhost/sina/rkhaleel/</a></td>
</tr>
</tbody>
</table>
<!-- **********************************************-->
<table style="height: 149px;" width="617">
<tbody>
<tr>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img title="Mohammed Melhem" src="http://localhost/sina/wp-content/uploads/2011/02/melhem.png" alt="Mohammed Melhem" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Mohammed Melhem
<a href="mailto:4mmelhem@gmail.com"> 4mmelhem@gmail.com </a>
<a href="http://localhost/sina/mmelhem/" target="_blank">localhost/sina/mmelhem/</a></td>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Hanya Radwan" src="http://localhost/sina/wp-content/uploads/2011/02/hanya.png" alt="Hanya Radwan" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Hanya Radwan
<a href="mailto:hanya.radwan2010@gmail.com">hanya.radwan2010@gmail.com </a>
<a href="http://localhost/sina/hradwan/">localhost/sina/hradwan/</a></td>
</tr>
</tbody>
</table>
<!-- **********************************************-->

PalGov © 2013

17
People.html – continued
Copy and Paste this code into Notepad++
<table style="height: 149px;" width="617">
<tbody>
<tr>
<td style="vertical-align: middle; width: 130px; height: 160px;"><img title="Nafiz Qasim" src="http://localhost/sina/wp-content/uploads/2011/02/
nafiz.png" alt="Nafiz Qasim" width="105" height="125" /></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Nafiz Qasim
<a href="mailto:nafizqasim@gmail.com">nafizqasim@gmail.com </a>
<a href="http://localhost/sina/nqasim/">localhost/sina/nqasim/</a></td>
<td style="vertical-align: middle; width: 130px; height: 160px;"></td>
<td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160"></td>
</tr>
</tbody>
</table>
<!-- ********************************************************************** ************************************************************************* -->
<br class="spacer" />
<h1 id="Collaborators">Collaborators</h1>
<ul>
<li><a href="mailto:wfasha@birzeit.edu">Wasim Abu Fasha</a></li>
<li><a href="mailto:lshamieh@birzeit.edu ">Luna Shamieh</a></li>
<li><a href="mailto:jamal@birzeit.edu">Jamal Daher</a></li>
</ul>
<br class="spacer" />
<h1 id="Former">Former Members</h1>
<ul>
<li><a href="mailto:samara.1050074@gmail.com">Hamam Samara</a></li>
<li><a href="mailto:smr.ayesh@gmail.com">Samar Aish</a></li>
<li><a href="mailto:mrbadaw@gmail.com">Muath Badawi</a></li>
</ul>
</body>
</html>

PalGov © 2013

18

More Related Content

What's hot

Resource description framework
Resource description frameworkResource description framework
Resource description framework
Stanley Wang
 
Understanding RDF: the Resource Description Framework in Context (1999)
Understanding RDF: the Resource Description Framework in Context  (1999)Understanding RDF: the Resource Description Framework in Context  (1999)
Understanding RDF: the Resource Description Framework in Context (1999)
Dan Brickley
 
Introduction To RDF and RDFS
Introduction To RDF and RDFSIntroduction To RDF and RDFS
Introduction To RDF and RDFS
Nilesh Wagmare
 
Linked data HHS 2015
Linked data HHS 2015Linked data HHS 2015
Linked data HHS 2015
Cason Snow
 
Resource description framework
Resource description frameworkResource description framework
Resource description framework
hozifa1010
 
Linked Data Tutorial
Linked Data TutorialLinked Data Tutorial
Linked Data Tutorial
Sören Auer
 
Sparql a simple knowledge query
Sparql  a simple knowledge querySparql  a simple knowledge query
Sparql a simple knowledge query
Stanley Wang
 
Introduction to RDF & SPARQL
Introduction to RDF & SPARQLIntroduction to RDF & SPARQL
Introduction to RDF & SPARQLOpen Data Support
 
"RDFa - what, why and how?" by Mike Hewett and Shamod Lacoul
"RDFa - what, why and how?" by Mike Hewett and Shamod Lacoul"RDFa - what, why and how?" by Mike Hewett and Shamod Lacoul
"RDFa - what, why and how?" by Mike Hewett and Shamod Lacoul
Shamod Lacoul
 
RDFa: introduction, comparison with microdata and microformats and how to use it
RDFa: introduction, comparison with microdata and microformats and how to use itRDFa: introduction, comparison with microdata and microformats and how to use it
RDFa: introduction, comparison with microdata and microformats and how to use it
Jose Luis Lopez Pino
 
IR and DSpace - International Seminar, Dhaka University
IR and DSpace - International Seminar, Dhaka UniversityIR and DSpace - International Seminar, Dhaka University
IR and DSpace - International Seminar, Dhaka University
Md. Zahid Hossain Shoeb
 
Ontologies and semantic web
Ontologies and semantic webOntologies and semantic web
Ontologies and semantic web
Stanley Wang
 
The Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQLThe Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQL
Myungjin Lee
 
Jarrar: Web 2.0 Data Mashups
Jarrar: Web 2.0 Data Mashups Jarrar: Web 2.0 Data Mashups
Jarrar: Web 2.0 Data Mashups
Mustafa Jarrar
 
An introduction to Semantic Web and Linked Data
An introduction to Semantic  Web and Linked DataAn introduction to Semantic  Web and Linked Data
An introduction to Semantic Web and Linked DataGabriela Agustini
 
Usage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application ScenariosUsage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application Scenarios
EUCLID project
 
2007 08 26 Dc Keynote Keizer
2007 08 26 Dc Keynote Keizer2007 08 26 Dc Keynote Keizer
2007 08 26 Dc Keynote KeizerJohannes Keizer
 
Library orientation: Resources and Finding overview
Library orientation: Resources  and  Finding overviewLibrary orientation: Resources  and  Finding overview
Library orientation: Resources and Finding overview
Nur Ahammad
 
The Semantic Web #9 - Web Ontology Language (OWL)
The Semantic Web #9 - Web Ontology Language (OWL)The Semantic Web #9 - Web Ontology Language (OWL)
The Semantic Web #9 - Web Ontology Language (OWL)
Myungjin Lee
 
Jarrar: RDF Stores -Challenges and Solutions
Jarrar: RDF Stores -Challenges and SolutionsJarrar: RDF Stores -Challenges and Solutions
Jarrar: RDF Stores -Challenges and Solutions
Mustafa Jarrar
 

What's hot (20)

Resource description framework
Resource description frameworkResource description framework
Resource description framework
 
Understanding RDF: the Resource Description Framework in Context (1999)
Understanding RDF: the Resource Description Framework in Context  (1999)Understanding RDF: the Resource Description Framework in Context  (1999)
Understanding RDF: the Resource Description Framework in Context (1999)
 
Introduction To RDF and RDFS
Introduction To RDF and RDFSIntroduction To RDF and RDFS
Introduction To RDF and RDFS
 
Linked data HHS 2015
Linked data HHS 2015Linked data HHS 2015
Linked data HHS 2015
 
Resource description framework
Resource description frameworkResource description framework
Resource description framework
 
Linked Data Tutorial
Linked Data TutorialLinked Data Tutorial
Linked Data Tutorial
 
Sparql a simple knowledge query
Sparql  a simple knowledge querySparql  a simple knowledge query
Sparql a simple knowledge query
 
Introduction to RDF & SPARQL
Introduction to RDF & SPARQLIntroduction to RDF & SPARQL
Introduction to RDF & SPARQL
 
"RDFa - what, why and how?" by Mike Hewett and Shamod Lacoul
"RDFa - what, why and how?" by Mike Hewett and Shamod Lacoul"RDFa - what, why and how?" by Mike Hewett and Shamod Lacoul
"RDFa - what, why and how?" by Mike Hewett and Shamod Lacoul
 
RDFa: introduction, comparison with microdata and microformats and how to use it
RDFa: introduction, comparison with microdata and microformats and how to use itRDFa: introduction, comparison with microdata and microformats and how to use it
RDFa: introduction, comparison with microdata and microformats and how to use it
 
IR and DSpace - International Seminar, Dhaka University
IR and DSpace - International Seminar, Dhaka UniversityIR and DSpace - International Seminar, Dhaka University
IR and DSpace - International Seminar, Dhaka University
 
Ontologies and semantic web
Ontologies and semantic webOntologies and semantic web
Ontologies and semantic web
 
The Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQLThe Semantic Web #10 - SPARQL
The Semantic Web #10 - SPARQL
 
Jarrar: Web 2.0 Data Mashups
Jarrar: Web 2.0 Data Mashups Jarrar: Web 2.0 Data Mashups
Jarrar: Web 2.0 Data Mashups
 
An introduction to Semantic Web and Linked Data
An introduction to Semantic  Web and Linked DataAn introduction to Semantic  Web and Linked Data
An introduction to Semantic Web and Linked Data
 
Usage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application ScenariosUsage of Linked Data: Introduction and Application Scenarios
Usage of Linked Data: Introduction and Application Scenarios
 
2007 08 26 Dc Keynote Keizer
2007 08 26 Dc Keynote Keizer2007 08 26 Dc Keynote Keizer
2007 08 26 Dc Keynote Keizer
 
Library orientation: Resources and Finding overview
Library orientation: Resources  and  Finding overviewLibrary orientation: Resources  and  Finding overview
Library orientation: Resources and Finding overview
 
The Semantic Web #9 - Web Ontology Language (OWL)
The Semantic Web #9 - Web Ontology Language (OWL)The Semantic Web #9 - Web Ontology Language (OWL)
The Semantic Web #9 - Web Ontology Language (OWL)
 
Jarrar: RDF Stores -Challenges and Solutions
Jarrar: RDF Stores -Challenges and SolutionsJarrar: RDF Stores -Challenges and Solutions
Jarrar: RDF Stores -Challenges and Solutions
 

Viewers also liked

Jarrar: RDF Stores: Challenges and Solutions
Jarrar: RDF Stores: Challenges and SolutionsJarrar: RDF Stores: Challenges and Solutions
Jarrar: RDF Stores: Challenges and Solutions
Mustafa Jarrar
 
Jarrar: OWL (Web Ontology Language)
Jarrar: OWL (Web Ontology Language)Jarrar: OWL (Web Ontology Language)
Jarrar: OWL (Web Ontology Language)
Mustafa Jarrar
 
Jarrar: RDFS ( RDF Schema)
Jarrar: RDFS ( RDF Schema) Jarrar: RDFS ( RDF Schema)
Jarrar: RDFS ( RDF Schema)
Mustafa Jarrar
 
Jarrar: Architectural Solutions in Data Integration
Jarrar: Architectural Solutions in Data IntegrationJarrar: Architectural Solutions in Data Integration
Jarrar: Architectural Solutions in Data Integration
Mustafa Jarrar
 
Jarrar: Web 2 Data Mashups
Jarrar: Web 2 Data MashupsJarrar: Web 2 Data Mashups
Jarrar: Web 2 Data MashupsMustafa Jarrar
 
Jarrar: Knowledge Engineering- Course Outline
Jarrar: Knowledge Engineering- Course OutlineJarrar: Knowledge Engineering- Course Outline
Jarrar: Knowledge Engineering- Course Outline
Mustafa Jarrar
 
Jarrar: Subtype Relations and Constraints
Jarrar: Subtype Relations and ConstraintsJarrar: Subtype Relations and Constraints
Jarrar: Subtype Relations and Constraints
Mustafa Jarrar
 
Jarrar: Data Integration and Fusion using RDF
Jarrar: Data Integration and Fusion using RDFJarrar: Data Integration and Fusion using RDF
Jarrar: Data Integration and Fusion using RDFMustafa Jarrar
 
Jarrar: Linked Data
Jarrar: Linked DataJarrar: Linked Data
Jarrar: Linked Data
Mustafa Jarrar
 
Jarrar: Sparql Project
Jarrar: Sparql ProjectJarrar: Sparql Project
Jarrar: Sparql ProjectMustafa Jarrar
 
Jarrar: Introduction to Data Integration
Jarrar: Introduction to Data IntegrationJarrar: Introduction to Data Integration
Jarrar: Introduction to Data Integration
Mustafa Jarrar
 
Jarrar: The Next Generation of the Web 3.0: The Semantic Web Vesion
Jarrar: The Next Generation of the Web 3.0: The Semantic Web VesionJarrar: The Next Generation of the Web 3.0: The Semantic Web Vesion
Jarrar: The Next Generation of the Web 3.0: The Semantic Web VesionMustafa Jarrar
 
Jarrar: OWL -Web Ontology Language
Jarrar: OWL -Web Ontology LanguageJarrar: OWL -Web Ontology Language
Jarrar: OWL -Web Ontology Language
Mustafa Jarrar
 
Jarrar: The Next Generation of the Web 3.0: The Semantic Web
Jarrar: The Next Generation of the Web 3.0: The Semantic WebJarrar: The Next Generation of the Web 3.0: The Semantic Web
Jarrar: The Next Generation of the Web 3.0: The Semantic Web
Mustafa Jarrar
 
Jarrar: Conceptual Schema Design Steps
Jarrar: Conceptual Schema Design Steps Jarrar: Conceptual Schema Design Steps
Jarrar: Conceptual Schema Design Steps
Mustafa Jarrar
 
BPMN 2.0 Descriptive Constructs
BPMN 2.0 Descriptive Constructs  BPMN 2.0 Descriptive Constructs
BPMN 2.0 Descriptive Constructs
Mustafa Jarrar
 
Jarrar: Data Schema Integration
Jarrar: Data Schema IntegrationJarrar: Data Schema Integration
Jarrar: Data Schema Integration
Mustafa Jarrar
 
Business Process Implementation
Business Process ImplementationBusiness Process Implementation
Business Process Implementation
Mustafa Jarrar
 
Business Process Design and Re-engineering
Business Process Design and Re-engineeringBusiness Process Design and Re-engineering
Business Process Design and Re-engineering
Mustafa Jarrar
 

Viewers also liked (20)

Jarrar: Zinnar
Jarrar: ZinnarJarrar: Zinnar
Jarrar: Zinnar
 
Jarrar: RDF Stores: Challenges and Solutions
Jarrar: RDF Stores: Challenges and SolutionsJarrar: RDF Stores: Challenges and Solutions
Jarrar: RDF Stores: Challenges and Solutions
 
Jarrar: OWL (Web Ontology Language)
Jarrar: OWL (Web Ontology Language)Jarrar: OWL (Web Ontology Language)
Jarrar: OWL (Web Ontology Language)
 
Jarrar: RDFS ( RDF Schema)
Jarrar: RDFS ( RDF Schema) Jarrar: RDFS ( RDF Schema)
Jarrar: RDFS ( RDF Schema)
 
Jarrar: Architectural Solutions in Data Integration
Jarrar: Architectural Solutions in Data IntegrationJarrar: Architectural Solutions in Data Integration
Jarrar: Architectural Solutions in Data Integration
 
Jarrar: Web 2 Data Mashups
Jarrar: Web 2 Data MashupsJarrar: Web 2 Data Mashups
Jarrar: Web 2 Data Mashups
 
Jarrar: Knowledge Engineering- Course Outline
Jarrar: Knowledge Engineering- Course OutlineJarrar: Knowledge Engineering- Course Outline
Jarrar: Knowledge Engineering- Course Outline
 
Jarrar: Subtype Relations and Constraints
Jarrar: Subtype Relations and ConstraintsJarrar: Subtype Relations and Constraints
Jarrar: Subtype Relations and Constraints
 
Jarrar: Data Integration and Fusion using RDF
Jarrar: Data Integration and Fusion using RDFJarrar: Data Integration and Fusion using RDF
Jarrar: Data Integration and Fusion using RDF
 
Jarrar: Linked Data
Jarrar: Linked DataJarrar: Linked Data
Jarrar: Linked Data
 
Jarrar: Sparql Project
Jarrar: Sparql ProjectJarrar: Sparql Project
Jarrar: Sparql Project
 
Jarrar: Introduction to Data Integration
Jarrar: Introduction to Data IntegrationJarrar: Introduction to Data Integration
Jarrar: Introduction to Data Integration
 
Jarrar: The Next Generation of the Web 3.0: The Semantic Web Vesion
Jarrar: The Next Generation of the Web 3.0: The Semantic Web VesionJarrar: The Next Generation of the Web 3.0: The Semantic Web Vesion
Jarrar: The Next Generation of the Web 3.0: The Semantic Web Vesion
 
Jarrar: OWL -Web Ontology Language
Jarrar: OWL -Web Ontology LanguageJarrar: OWL -Web Ontology Language
Jarrar: OWL -Web Ontology Language
 
Jarrar: The Next Generation of the Web 3.0: The Semantic Web
Jarrar: The Next Generation of the Web 3.0: The Semantic WebJarrar: The Next Generation of the Web 3.0: The Semantic Web
Jarrar: The Next Generation of the Web 3.0: The Semantic Web
 
Jarrar: Conceptual Schema Design Steps
Jarrar: Conceptual Schema Design Steps Jarrar: Conceptual Schema Design Steps
Jarrar: Conceptual Schema Design Steps
 
BPMN 2.0 Descriptive Constructs
BPMN 2.0 Descriptive Constructs  BPMN 2.0 Descriptive Constructs
BPMN 2.0 Descriptive Constructs
 
Jarrar: Data Schema Integration
Jarrar: Data Schema IntegrationJarrar: Data Schema Integration
Jarrar: Data Schema Integration
 
Business Process Implementation
Business Process ImplementationBusiness Process Implementation
Business Process Implementation
 
Business Process Design and Re-engineering
Business Process Design and Re-engineeringBusiness Process Design and Re-engineering
Business Process Design and Re-engineering
 

Similar to Jarrar: RDFa

Jarrar: RDFa
Jarrar: RDFaJarrar: RDFa
Jarrar: RDFa
Mustafa Jarrar
 
Microdata semantic-extend
Microdata semantic-extendMicrodata semantic-extend
Microdata semantic-extendSeek Tan
 
2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs
2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs
2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIsJosef Petrák
 
RDFa in ostala spletna semantika
RDFa in ostala spletna semantikaRDFa in ostala spletna semantika
RDFa in ostala spletna semantika
Jure Cuhalev
 
Linked data: spreading data over the web
Linked data: spreading data over the webLinked data: spreading data over the web
Linked data: spreading data over the webshellac
 
Semantic web support for POSH
Semantic web support for POSHSemantic web support for POSH
Semantic web support for POSHDinu Suman
 
The Server Side of Responsive Web Design
The Server Side of Responsive Web DesignThe Server Side of Responsive Web Design
The Server Side of Responsive Web Design
Dave Olsen
 
RDFa: an introduction
RDFa: an introductionRDFa: an introduction
RDFa: an introduction
Kai Li
 
Java Script Based Client Server Webapps 2
Java Script Based Client Server Webapps 2Java Script Based Client Server Webapps 2
Java Script Based Client Server Webapps 2kriszyp
 
Structured SEO Data Overview and How To
Structured SEO Data Overview and How ToStructured SEO Data Overview and How To
Structured SEO Data Overview and How To
cgmonroe
 
Understanding the Standards Gap
Understanding the Standards GapUnderstanding the Standards Gap
Understanding the Standards Gap
Dan Brickley
 
jQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveisjQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveis
Pablo Garrido
 
Searching the Web of Data (Tutorial)
Searching the Web of Data (Tutorial)Searching the Web of Data (Tutorial)
Searching the Web of Data (Tutorial)
Gerard de Melo
 
Micro frontends
Micro frontendsMicro frontends
Micro frontends
Kleyson Prado
 
Html5 advanced part2
Html5 advanced part2Html5 advanced part2
Html5 advanced part2Suresh Balla
 
Stop the noise! - Introduction to the JSON:API specification in Drupal
Stop the noise! - Introduction to the JSON:API specification in DrupalStop the noise! - Introduction to the JSON:API specification in Drupal
Stop the noise! - Introduction to the JSON:API specification in Drupal
Björn Brala
 
RDFa-deployed Multimedia Metadata - Tutorial, Part 3
RDFa-deployed Multimedia Metadata - Tutorial, Part 3RDFa-deployed Multimedia Metadata - Tutorial, Part 3
RDFa-deployed Multimedia Metadata - Tutorial, Part 3
Michael Hausenblas
 
RESS: An Evolution of Responsive Web Design
RESS: An Evolution of Responsive Web DesignRESS: An Evolution of Responsive Web Design
RESS: An Evolution of Responsive Web Design
Dave Olsen
 

Similar to Jarrar: RDFa (20)

Jarrar: RDFa
Jarrar: RDFaJarrar: RDFa
Jarrar: RDFa
 
Microdata semantic-extend
Microdata semantic-extendMicrodata semantic-extend
Microdata semantic-extend
 
2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs
2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs
2011 4IZ440 Semantic Web – RDF, SPARQL, and software APIs
 
RDFa in ostala spletna semantika
RDFa in ostala spletna semantikaRDFa in ostala spletna semantika
RDFa in ostala spletna semantika
 
Linked data: spreading data over the web
Linked data: spreading data over the webLinked data: spreading data over the web
Linked data: spreading data over the web
 
Semantic web support for POSH
Semantic web support for POSHSemantic web support for POSH
Semantic web support for POSH
 
The Server Side of Responsive Web Design
The Server Side of Responsive Web DesignThe Server Side of Responsive Web Design
The Server Side of Responsive Web Design
 
RDFa: an introduction
RDFa: an introductionRDFa: an introduction
RDFa: an introduction
 
Java Script Based Client Server Webapps 2
Java Script Based Client Server Webapps 2Java Script Based Client Server Webapps 2
Java Script Based Client Server Webapps 2
 
Structured SEO Data Overview and How To
Structured SEO Data Overview and How ToStructured SEO Data Overview and How To
Structured SEO Data Overview and How To
 
Understanding the Standards Gap
Understanding the Standards GapUnderstanding the Standards Gap
Understanding the Standards Gap
 
jQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveisjQuery Mobile - Desenvolvimento para dispositivos móveis
jQuery Mobile - Desenvolvimento para dispositivos móveis
 
Searching the Web of Data (Tutorial)
Searching the Web of Data (Tutorial)Searching the Web of Data (Tutorial)
Searching the Web of Data (Tutorial)
 
Micro frontends
Micro frontendsMicro frontends
Micro frontends
 
Html5 advanced part2
Html5 advanced part2Html5 advanced part2
Html5 advanced part2
 
Stop the noise! - Introduction to the JSON:API specification in Drupal
Stop the noise! - Introduction to the JSON:API specification in DrupalStop the noise! - Introduction to the JSON:API specification in Drupal
Stop the noise! - Introduction to the JSON:API specification in Drupal
 
RDFa-deployed Multimedia Metadata - Tutorial, Part 3
RDFa-deployed Multimedia Metadata - Tutorial, Part 3RDFa-deployed Multimedia Metadata - Tutorial, Part 3
RDFa-deployed Multimedia Metadata - Tutorial, Part 3
 
multimedia
multimediamultimedia
multimedia
 
Microformats
MicroformatsMicroformats
Microformats
 
RESS: An Evolution of Responsive Web Design
RESS: An Evolution of Responsive Web DesignRESS: An Evolution of Responsive Web Design
RESS: An Evolution of Responsive Web Design
 

Recently uploaded

678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
CarlosHernanMontoyab2
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
BhavyaRajput3
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
Peter Windle
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
Special education needs
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
beazzy04
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
JosvitaDsouza2
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
Pavel ( NSTU)
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
Nguyen Thanh Tu Collection
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
kaushalkr1407
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Po-Chuan Chen
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
EduSkills OECD
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
TechSoup
 

Recently uploaded (20)

678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
 

Jarrar: RDFa

  • 1. Mustafa Jarrar Lecture Notes, Web Data Management (MCOM7348) University of Birzeit, Palestine 1st Semester, 2013 Practical guide to RDFa Dr. Mustafa Jarrar University of Birzeit mjarrar@birzeit.edu www.jarrar.info Jarrar © 2013 1
  • 2. Watch this lecture and download the slides from http://jarrar-courses.blogspot.com/2013/11/web-data-management.html Jarrar © 2013 2
  • 3. RDFa •  Bridges the gap between the Web of Documents and the Web of Data (Web 3.0). •  Makes XHTML web pages structured data (by embedding RDF triples inside XHTML). •  i.e., using RDFa we build small RDF graphs and embed them inside XHTML pages. Jarrar © 2013 3
  • 4. RDFa •  As stated by Google Webmasters guide, RDFa can be roughly viewed as a way to label content to describe a specific type of information, such as a restaurant review, an event, a person, or a product listing. •  These information types are called entities or items. Each entity has a number of properties. For example, a Person has the properties name, address, job title, company, and email address. •  In general, RDFa uses simple attributes in XHTML tags (often <span> or <div>) to assign brief and descriptive names to entities and properties. Jarrar © 2013 4
  • 7. Example 2 Consider this HTML block:! <div> ! ! My name is George Mousa. My friends call me Geno. I live in Nablus, Palestine. I work as an engineer at Birzeit University.! ! </div>! ! Annotate the HTML block above with RDFa: <div xmlns:v="http://rdf.data-vocabulary.org/#" typeof="v:Person">! ! My name is <span property="v:name"> George Mousa </span>. ! My friends call me <span property="v:nickname"> Geno </span>. ! I live in Nablus, Palestine. ! I work as an engineer at <span property="v:affiliation"> Birzeit University </span>.! ! </div>! ! Jarrar © 2013 7
  • 8. Example 2 <div xmlns:v="http://rdf.data-vocabulary.org/#" typeof="v:Person”>! My name is <span property="v:name"> George Mousa </span>. ! My friends call me <span property="v:nickname"> Geno </span>. ! I live in Nablus, Palestine. ! I work as an engineer at <span property="v:affiliation"> Birzeit University </ span>.! </div>! •  The example begins with a namespace declaration using xmlns. This indicates the namespace where the vocabulary is specified. •  Also on the first line, typeof="v:Person" indicates that the markedup content represents a Person. •  Each property of the person (such as the name and nickname) is labeled using property. •  To indicate a URL, use rel instead of property. Consider adding the following to our example inside the Person div My home page is: <a href="http://www.example.com" rel="v:url"> www.example.com </a>.! •  "rel" is used to convey the relationship between two entities—in this case, a Person entity and a webpage entity. ! Jarrar © 2013 8
  • 9. Example 2 In our example, we have addressing information about George Mousa. <div> ... I live in Nablus, Palestine. I work as an engineer ... </div>! We use nesting. Nesting is when one information type includes the other. In this case, we want to include George’s Address information (typeof="v:Address") in the typeof="v:Person“ entity. Here, we use rel to indicate a relationship between George (the entity v:Person) and his address (the entity v:Address). ! <div xmlns:v="http://rdf.data-vocabulary.org/#" typeof="v:Person">! My name is <span property="v:name"> George Mousa </span>. ! My friends call me <span property="v:nickname"> Geno </span>. ! I live in! <span rel="v:Address">! <span typeof="v:Address"> ! <span property="v:city">Nablus</span>, ! <span property="v:country">Palestine</span>! </span>! </span>.! I work as an engineer at <span property="v:affiliation"> Birzeit University </span>.! </div> Jarrar © 2013 9
  • 10. Let’s draw a graph of our example! v:Person e v:nam v:nickname “George Mousa” “Geno” type Of v:city v:Address “Nablus” “Palestine” “Birzeit University” Jarrar © 2013 10
  • 12. Jobs.ps Use Case Suppose webpages of announcing job offers are written in RDFa, then www.jobs.ps can crawl this data automatically. Page 1 Page n Jarrar © 2013 12
  • 14. Description Given two XHTML files, people.html and projects.html, each student must embed both documents with RDFa. Consider the following when doing the exercise: -  Both documents are validated XHTML documents. We have validated them using the standard W3C Validator: http://validator.w3.org/ -  Students must use standard known ontologies when annotating the documents, such as FOAF, Dublin Core, etc. -  Students must validate their work using the standard W3C validator. -  Each student must expect to present and discuss his/her work at class. -  Final delivery must include links of the two RDFa-annotated documents. PalGov © 2013 14
  • 15. Projects.html Copy and Paste this code into Notepad++ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Sina Institute - Projects</title> </head> <body> <div id="box" style="text-align: center;"><strong><span class="largeFontSpan">[ </span><a title="Projects" href="#Active-Projects"><span class="largeFontSpan">Active Projects</span></a> | <a title="Past Projects" href="#Past-Projects"> <span class="largeFontSpan">Past Projects</span><span style="color: #ffffff;"> </span></a><span class="largeFontSpan"> ]</span></strong></div> <h1 id="Active-Projects">Active Projects</h1> <table style="height: 786px;" width="475"> <tbody> <tr> <td><img class="alignleft size-full wp-image-350" title="PalGov " src="http://localhost/sina/wp-content/uploads/2011/02/eGovSeer.jpg" alt="GovSeer" width="132" height="100" /></td> <td style="vertical-align: middle;"><strong>GovSeer - Interoperability of e-Governmental Services</strong> Page:<span><a href="http://sites.birzeit.edu/comp/GovSeer/">http://sites.birzeit.edu/comp/GovSeer/</a></span></td> </tr> <tr> <td><img class="alignleft size-full wp-image-350" title="PalGov " src="http://localhost/sina/wp-content/uploads/2011/08/palgove_logo_160x76.png" alt="The Palestinian e-government academy" width="132" /></td> <td style="vertical-align: middle;"><strong>PalGov - e-Government Lifelong Learning Consortium</strong> Page:<span><a href="http://sites.birzeit.edu/comp/PalGov/">http://sites.birzeit.edu/comp/PalGov/</a></span></td> </tr> <tr> <td><img class="alignleft size-full wp-image-337" title="Arabic Ontololgy" src="http://localhost/sina/wp-content/uploads/2011/02/arabicOntologyLogoLowResolution.jpg" alt="Arabic Ontololgy" width="133" height="126" /></td> <td style="vertical-align: middle;"><strong>Arabic Ontology </strong>Page:<span><a href="http://sites.birzeit.edu/comp/ArabicOntology/">http://sites.birzeit.edu/comp/ArabicOntology/</a></span></td> </tr> <tr> <td><img class="alignleft size-full wp-image-352" title="Wojood" src="http://localhost/sina/wp-content/uploads/2010/09/jood.png" alt="" width="125" height="97" /></td> <td style="vertical-align: middle;"><strong> Wojood </strong>Page: <a href="http://localhost/sina/wojood/" target="_blank">http://localhost/sina/wojood/</a></td> </tr> <tr> <td><img class="alignleft size-full wp-image-352" title="google" src="http://localhost/sina/wp-content/uploads/2010/09/google1.png" alt="" width="125" height="97" /></td> <td style="vertical-align: middle;"><strong>A Suite of Automated Tools for Efficient Management and Search in Web-based Arabic Documents </strong>Page:<span><a href="http://localhost/sina/SATEMSAD/">http://localhost/sina/SATEMSAD/</a></span></td> </tr> <tr> <td><img class="alignleft size-full wp-image-357" title="MashQL" src="http://localhost/sina/wp-content/uploads/2010/09/mashql2.png" alt="MashQL" width="140" height="64" /></td> <td style="vertical-align: middle;"><strong>MashQL: A novel approach for querying the Data Web</strong> Page:<span><a href="http://sites.birzeit.edu/comp/mashql/">http://sites.birzeit.edu/comp/mashql/</a></span></td> </tr> <tr> <td><img class="alignleft size-full wp-image-355" title="Mobile Information Technology for the Visually Impaired " src="http://localhost/sina/wp-content/uploads/2010/09/mitvi.png" alt="mgad" width="136" height="73" /></td> <td style="vertical-align: middle;"><strong>Mobile Information Technology for the Visually Impaired </strong>Page:<span><a href="http://localhost/sina/MITVI/" target="_blank">http://localhost/sina/MITVI/</a></span></td> </tr> </tbody> </table> <br class="spacer" /> <h1 id="Past-Projects">Past Projects</h1> <table style="height: 86px;" width="473"> <tbody> <tr> <td><img class="alignleft size-full wp-image-353" title="Mobile Information Technology for the Visually Impaired " src="http://localhost/sina/wp-content/uploads/2010/09/mgad.png" alt="mgad" width="133" height="62" /></td> <td style="vertical-align: middle;"><strong>Model Generation for Selected Applications</strong> Page:<span><a href="http://localhost/sina/ModelGeneration/" target="_blank">http://localhost/sina/ModelGeneration/</a></span></td> </tr> </tbody> </table> </body> </html> PalGov © 2013 15
  • 16. People.html Copy and Paste this code into Notepad++ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Sina Institute - People</title> </head> <body> <div id="box" style="text-align: center;"><strong><span class="largeFontSpan">[ </span><a title="Current Members" href="#Current"><span class="largeFontSpan">Current Members</span></a> | <a title="Collaborators" href="#Collaborators"><span class="largeFontSpan">Collaborators</span></a> | <a title="Former Members" href="#Former"><span class="largeFontSpan">Former Members</span></a> <span class="largeFontSpan"> ]</span></strong></div> <h1 id="Current">Current Members</h1> <table style="height: 149px;" width="617"> <tbody> <tr> <td style="vertical-align: middle; width: 109px; height: 160px;"><img class="alignnone" title="Dr. Mustafa Jarrar" src="http://localhost/sina/wp-content/uploads/2011/02/Jarrar.png" alt="Dr. Mustafa Jarrar" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160"><strong>Dr. Mustafa Jarrar</strong> <em>OnTo Group Director</em> <a href="mailto:mjarrar@birzeit.edu">mjarrar@birzeit.edu </a> <a href="http://localhost/sina/mjarrar/" target="_blank">localhost/sina/mjarrar/</a></td> <td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Dr. Adnan Yahya" src="http://localhost/sina/wp-content/uploads/2011/02/yahya.png" alt="Dr. Adnan Yahya" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160"><strong>Dr. Adnan Yahya</strong> <em>ALTIR Group Director</em> <a href="mailto:yahya@birzeit.edu">yahya@birzeit.edu </a> <a href="http://localhost/sina/ayahya/" target="_blank">localhost/sina/ayahya/</a></td> </tr> </tbody> </table> <!-- ******************************************************* --> <table style="height: 147px;" width="603"> <tbody> <tr> <td style="vertical-align: middle; width: 220px; height: 160px;"><strong>Secretary</strong>: Rawan Taha <a href="mailto:rntaha@birzeit.edu">rntaha@birzeit.edu </a> Tel: +972 2 2982917</td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="130" height="160"></td> <td style="vertical-align: middle; width: 130px; height: 160px;"></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160"></td> </tr> </tbody> </table> <!-- ******************************************** --> <hr /><!-- ******************************************** --> <table style="height: 149px;" width="617"> <tbody> <tr> <td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignleft size-full wp-image-354" title="Majd Al-Ashhab" src="http://localhost/sina/wp-content/uploads/2011/02/DSC079601.png" alt="Majd Al-Ashhab" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Majd Al-Ashhab <a href="mailto:mashhab@birzeit.edu">mashhab@birzeit.edu </a> <a href="http://localhost/sina/mashhab/">localhost/sina/mashhab/</a></td> <td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Ali Salhi" src="http://localhost/sina/wp-content/uploads/2011/02/a11.png" alt="Ali Salhi" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Ali Salhi <a href="mailto:asalhi@birzeit.edu">asalhi@birzeit.edu</a> <a href="http://localhost/sina/asalhi/">localhost/sina/asalhi/</a></td> </tr> </tbody> </table> PalGov © 2013 16
  • 17. People.html – continued Copy and Paste this code into Notepad++ <!-- *********************************************************** --> <table style="height: 149px;" width="617"> <tbody> <tr> <td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignleft size-full wp-image-1124" title="antonPhoto" src="http://localhost/sina/wp-content/uploads/2011/02/antonPhoto.png" alt="" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Anton Deik <a href="mailto:anton.deik@gmail.com">anton.deik@gmail.com</a> <a href="http://localhost/sina/adeik/">localhost/sina/adeik/</a></td> <td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Bilal Farraj" src="http://localhost/sina/wp-content/uploads/2011/02/STB9565.png" alt="Bilal Farraj" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Bilal Farraj <a href="mailto:bfarraj@gmail.com">bfarraj@gmail.com </a> <a href="http://localhost/sina/bfarraj/">localhost/sina/bfarraj/</a></td> </tr> </tbody> </table> <!-- ************************************************************** --> <table style="height: 149px;" width="617"> <tbody> <tr> <td style="vertical-align: middle; width: 130px; height: 160px;"><img title="Ala' Hawash" src="../wp-content/uploads/2011/02/Ala.png" alt="Ala' Hawash" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Ala' Hawash <a href="mailto:ala.hawash@gmail.com">ala.hawash@gmail.com</a> <a href="http://localhost/sina/ahawash/">localhost/sina/ahawash/</a></td> <td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Rana Rishmawi" src="http://localhost/sina/wp-content/uploads/2011/03/Rana.png" alt="Rana Rishmawi" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Rana Rishmawi <a href="mailto:rgr.4.12@gmail.com">rgr.4.12@gmail.com </a> <a href="http://localhost/sina/rrishmawi/">localhost/sina/rrishmawi/</a></td> </tr> </tbody> </table> <table style="height: 149px;" width="617"> <tbody> <tr> <td style="vertical-align: middle; width: 130px; height: 160px;"><img class="size-full wp-image-601 alignleft" title="Hiba Shaheen" src="http://localhost/sina/wp-content/uploads/2011/02/HibaShaheen.png" alt="" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Hiba Shaheen <a href="mailto:shaheen.hiba@gmail.com ">shaheen.hiba@gmail.com </a> <a href="http://localhost/sina/hshaheen/">localhost/sina/hshaheen/</a></td> <td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Rami Khaleel" src="../wp-content/uploads/2011/02/rami_khaleel.png" alt="Rami Khaleel" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Rami Khaleel <a href="mailto:ramikhl@yahoo.com">ramikhl@yahoo.com </a> <a href="http://localhost/sina/rkhaleel/">localhost/sina/rkhaleel/</a></td> </tr> </tbody> </table> <!-- **********************************************--> <table style="height: 149px;" width="617"> <tbody> <tr> <td style="vertical-align: middle; width: 130px; height: 160px;"><img title="Mohammed Melhem" src="http://localhost/sina/wp-content/uploads/2011/02/melhem.png" alt="Mohammed Melhem" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Mohammed Melhem <a href="mailto:4mmelhem@gmail.com"> 4mmelhem@gmail.com </a> <a href="http://localhost/sina/mmelhem/" target="_blank">localhost/sina/mmelhem/</a></td> <td style="vertical-align: middle; width: 130px; height: 160px;"><img class="alignnone" title="Hanya Radwan" src="http://localhost/sina/wp-content/uploads/2011/02/hanya.png" alt="Hanya Radwan" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Hanya Radwan <a href="mailto:hanya.radwan2010@gmail.com">hanya.radwan2010@gmail.com </a> <a href="http://localhost/sina/hradwan/">localhost/sina/hradwan/</a></td> </tr> </tbody> </table> <!-- **********************************************--> PalGov © 2013 17
  • 18. People.html – continued Copy and Paste this code into Notepad++ <table style="height: 149px;" width="617"> <tbody> <tr> <td style="vertical-align: middle; width: 130px; height: 160px;"><img title="Nafiz Qasim" src="http://localhost/sina/wp-content/uploads/2011/02/ nafiz.png" alt="Nafiz Qasim" width="105" height="125" /></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160">Nafiz Qasim <a href="mailto:nafizqasim@gmail.com">nafizqasim@gmail.com </a> <a href="http://localhost/sina/nqasim/">localhost/sina/nqasim/</a></td> <td style="vertical-align: middle; width: 130px; height: 160px;"></td> <td style="text-align: left; margin: 0px 0px 0px 0px; vertical-align: middle;" width="220" height="160"></td> </tr> </tbody> </table> <!-- ********************************************************************** ************************************************************************* --> <br class="spacer" /> <h1 id="Collaborators">Collaborators</h1> <ul> <li><a href="mailto:wfasha@birzeit.edu">Wasim Abu Fasha</a></li> <li><a href="mailto:lshamieh@birzeit.edu ">Luna Shamieh</a></li> <li><a href="mailto:jamal@birzeit.edu">Jamal Daher</a></li> </ul> <br class="spacer" /> <h1 id="Former">Former Members</h1> <ul> <li><a href="mailto:samara.1050074@gmail.com">Hamam Samara</a></li> <li><a href="mailto:smr.ayesh@gmail.com">Samar Aish</a></li> <li><a href="mailto:mrbadaw@gmail.com">Muath Badawi</a></li> </ul> </body> </html> PalGov © 2013 18