SlideShare uma empresa Scribd logo
1 de 18
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

Mais conteúdo relacionado

Mais procurados

Introduction to RDF & SPARQL
Introduction to RDF & SPARQLIntroduction to RDF & SPARQL
Introduction to RDF & SPARQL
Open Data Support
 
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
Gabriela Agustini
 
2007 08 26 Dc Keynote Keizer
2007 08 26 Dc Keynote Keizer2007 08 26 Dc Keynote Keizer
2007 08 26 Dc Keynote Keizer
Johannes Keizer
 

Mais procurados (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
 

Destaque

Jarrar: Web 2 Data Mashups
Jarrar: Web 2 Data MashupsJarrar: Web 2 Data Mashups
Jarrar: Web 2 Data Mashups
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 RDF
Mustafa Jarrar
 
Jarrar: Sparql Project
Jarrar: Sparql ProjectJarrar: Sparql Project
Jarrar: Sparql Project
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 Vesion
Mustafa Jarrar
 

Destaque (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
 

Semelhante a Jarrar: RDFa

Microdata semantic-extend
Microdata semantic-extendMicrodata semantic-extend
Microdata semantic-extend
Seek 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 APIs
Josef Petrák
 
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
shellac
 
Semantic web support for POSH
Semantic web support for POSHSemantic web support for POSH
Semantic web support for POSH
Dinu Suman
 
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
kriszyp
 
Html5 advanced part2
Html5 advanced part2Html5 advanced part2
Html5 advanced part2
Suresh Balla
 

Semelhante a 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
 

Último

Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
AnaAcapella
 

Último (20)

Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 

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