Task number 2:
I decided to follow the suggestion to create a curriculum vitae as an exercise in basic markup. So I created my short CV.
The result:
P2PU: HTML 5 Introduction – Task #2: basic markup
Curriculum Vitae
Experience
Millennium bcp, Portugal, since July 1994
Positions held:
- Intranet Global Manager
- Internet banking Manager
- Network Regional Manager
- Personal banking Manager
- Project Manager: Renewal of Distribution Channels
Gemini Consulting SA, Lisbon, Barcelona and Madrid, from 1992 to 1994
Associate: Senior management consultant in strategy, IT and operations. IT expert in the Spain and Portugal, with the following projects:
- For one of the largest savings banks in Spain: design of information technology strategy and its implementation plan.
- For a central bank in a european country: designing the corporate information model, reorganization of the IT Department and design information systems plan to five years, including relationship process with internal customers.
- For one of the largest banks in Portugal: information systems assessment, IT migration plan design to another bank in the same financial group.
- For a large French bank in Spain: market strategy analysis, implementation of new sales process and specification of IT requirements.
- For one of the largest telecommunications company in Portugal: design of information systems strategy and the corporate information model. Project manager to implement a new procurement system.
MIS Consulting, Brazil, from 1986 to 1992
Partner: Senior management consultant in IT strategy and IT operations.
- IT strategic planning for medium and large enterprises in several industries.
- Business Process Reengineer of IT function from large companies.
- Development and implementation of information systems for several companies in different areas:
- Reinsurance
- Project Management
- Fleet Management
- Large Equipament Allocation Control
- Petrochemical Production Costs
- Budget and financial control
- Sales, Billing and Accounts Receivable
- Procurement, Inventory and Accounts Payable
Brazilian Navy, Brazil, from 1982 to 1984
Systems analyst and database designer for a very large project: budget and control system for all brazilian navy departments.
Teaching Experience
- 1992 – 1996: Assistant at UCP – Catolica Lisbon, Lisbon
- 1986 – 1988: Assistant at COPPEAD/UFRJ, Rio de Janeiro, Brazil.
Education
- Jan 2006: UCP – PAME, Lisbon, Portugal.
- May 2004: INSEAD – Executive Education, Fontainebleau
- Dec 1986: MSc in Business Administration, Rio de Janeiro, Brazil. Thesis: Data Management in the largest non-financial Brazilian companies.
- Dec 1981: Computer Science in Catolica University, Rio de Janeiro, Brazil. Monograph: Logical and Physical Design of a Financial Ratios System for Brazilian Markets.
Languages
- Portuguese: native
- English: fluent
- Spanish (Castilian): fluent
- French: reading
Other
- Three books published in Brazil
- Four articles in COPPEAD/UFRJ
And the HTML code:
<!DOCTYPE html>
<html>
<head>
<meta charset=”utf-8″>
<title>Basic Markup, task #2: My Resume, by Julio Garcia</title>
</head>
<body>
<h1>P2PU: HTML 5 Introduction – Task #4: Basic Markup</h1>
<h2>Curriculum Vitae</h2>
<h3>Experience</h3>
<h4>Millennium bcp, Portugal, since July 1994</h4>
<p>Positions held:</p>
<ul>
<li>Intranet Global Manager</li>
<li>Internet banking Manager</li>
<li>Network Regional Manager</li>
<li>Personal banking Manager</li>
<li>Project Manager: Renewal of Distribution Channels</li>
</ul>
<h4>Gemini Consulting SA, Lisbon, Barcelona and Madrid, from 1992 to 1994</h4>
<p>Associate: Senior management consultant in strategy, IT and operations. IT expert in the Spain and Portugal, with the following projects:</p>
<ul>
<li>For one of the largest savings banks in Spain: design of information technology strategy and its implementation plan.</li>
<li>For a central bank in a european country: designing the corporate information model, reorganization of the IT Department and design information systems plan to five years, including relationship process with internal customers.</li>
<li>For one of the largest banks in Portugal: information systems assessment, IT migration plan design to another bank in the same financial group.</li>
<li>For a large French bank in Spain: market strategy analysis, implementation of new sales process and specification of IT requirements.</li>
<li>For one of the largest telecommunications company in Portugal: design of information systems strategy and the corporate information model. Project manager to implement a new procurement system.</li>
</ul>
<h4>MIS Consulting, Brazil, from 1986 to 1992</h4>
<p>Partner: Senior management consultant in IT strategy and IT operations.</p>
<ul>
<li>IT strategic planning for medium and large enterprises in several industries.</li>
<li>Business Process Reengineer of IT function from large companies.</li>
<li>Development and implementation of information systems for several companies in different areas:</li>
<ul>
<li>Reinsurance</li>
<li>Project Management</li>
<li>Fleet Management</li>
<li>Large Equipament Allocation Control</li>
<li>Petrochemical Production Costs</li>
<li>Budget and financial control</li>
<li>Sales, Billing and Accounts Receivable</li>
<li>Procurement, Inventory and Accounts Payable</li>
</ul>
</ul>
<h4>Brazilian Navy, Brazil, from 1982 to 1984</h4>
<p>Systems analyst and database designer for a very large project: budget and control system for all brazilian navy departments.</p>
<h3>Teaching Experience</h3>
<ul>
<li>1992 – 1996: Assistant at <a href=”http://www.clsbe.lisboa.ucp.pt/site/custom/template/fceetplhome.asp?sspageID=1&lang=2″>UCP – Catolica Lisbon</a>, Lisbon</li>
<li>1986 – 1988: Assistant at <a href=”http://mestradocoppead.com.br/areas-de-enfase/”>COPPEAD/UFRJ</a>, Rio de Janeiro, Brazil.</li>
</ul>
<h3>Education</h3>
<ul>
<li>Jan 2006: <a href=”http://www.clsbe.lisboa.ucp.pt/site/custom/template/fceetplexecour.asp?sspageID=192&lang=2″>UCP – PAME</a>, Lisbon, Portugal.</li>
<li>May 2004: <a href=”http://executive-education.insead.edu/”>INSEAD – Executive Education, Fontainebleau</a></li>
<li>Dec 1986: <a href=”http://www2.coppead.ufrj.br/engl/”>MSc in Business Administration</a>, Rio de Janeiro, Brazil. Thesis: Data Management in the largest non-financial Brazilian companies.</li>
<li>Dec 1981: <a href=”http://www.puc-rio.br/ensinopesq/ccg/ciencia_computacao.html”>Computer Science in Catolica University</a>, Rio de Janeiro, Brazil. Monograph: Logical and Physical Design of a Financial Ratios System for Brazilian Markets.</li>
</ul>
<h3>Languages</h3>
<ul>
<li>Portuguese: native</li>
<li>English: fluent</li>
<li>Spanish (Castilian): fluent</li>
<li>French: reading</li>
</ul>
<h3>Other</h3>
<ul>
<li>Three books published in Brazil</li>
<li>Four articles in COPPEAD/UFRJ</li>
</ul>
</body>
</html>