SlideShare una empresa de Scribd logo
1 de 33
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Trinity College, Cambridge)
HTML Essentials
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Trinity College, Cambridge)
HTML Essentials
KeyPoints to develop in your own time!
Introductory concepts @ OxfordCambridge.Org all for free and free for all.
The information gathered here are under KeyPoints format and may be use:
- Either to give the reader an overview before deciding for a full scale study of the subject.
- Or to guide readers in expanding their knowledge on the given topic.
Some recommendations, perhaps:
- Identify all the KeyPoints on which you feel a need to expand your knowledge.
- Choose a good book or two and/or info from Internet.
- And then work towards gaining that knowledge.
Please enjoy!
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Trinity College, Cambridge)
Aim of publication
To introduce the reader or the learner to HTML
essentials tags
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Trinity College, Cambridge)
• This presentation pack has been created to help anyone willing to
understand the HTML and Web page designing at beginner level.
• It covers topics ranging from the <HTML> </HTML> to Frames.
Learning Objectives
<HTML>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Essential Tags: <HTML> <HEAD> <TITLE> <BODY>
<HTML>
<HEAD>
<TITLE> </TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
TITLE tag
<HTML>
<HEAD>
<TITLE> My Title </TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
META NAME
<HTML>
<HEAD>
<TITLE> My Title </TITLE>
<META NAME=" " CONTENT=" ">
</HEAD>
<BODY>
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
META NAME Classics
<HTML>
<HEAD>
<TITLE> My Title </TITLE>
<META NAME="Description” CONTENT=" text">
<META NAME=" Keywords” CONTENT=" words">
</HEAD>
<BODY>
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
META Name used by Pink
<META NAME=”DESCRIPTION” CONTENT="Pink Elephant aims to be the quality market leader in IT
management and the best company to work for. Quality market leadership in this field means:
excellence in translating knowledge into results. Think Pink. Different thinking and organizing in
IT.">
<META NAME=" KEYWORDS” CONTENT="Pink Elephant, Pink, Elephant, Elephants, Pinker, Pinkers,
Nederland, Netherlands, Zoetermeer, UK, United Kingdom, Canada, North America, Australia,
Sydney, US, USA, United States, Chicago, IT, Information, Technology, Informatietechnologie,
Think, ITIL, Prince2, Prince, 2, EFQM, Management, Beheer, IT-beheer, Project,
Projectmanagement, Automatisering, Infrastructure, Infrastructuur, Service, Services,
Education, Opleiding, Opleidingen, Course, Courses, Support, Ondersteuning, Implementation,
Implementatie, Migration, Migratie, Transformation, Transformatie, Outsourcing, Intranet,
Internet, Recruitment, Recruiting, People, Skills, Specialist, Specialists, Specialisten, Knowledge,
Communication, Communicatie, Innovation, Innovatie, Innovative, Innovatief, Event, Events,
Invoering, MS, Microsoft, Windows, Windows95, Windows98, 95, 98, NT, Desktop, HR, Human
Resources, Annual, Report, Jaarverslag, Foundation, Library, Rowing Association, RDRA, Leliveld,
Blaauw, Verburg, Noorder, Dierenpark, Zoo">
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
BODY tag
<HTML>
<HEAD>
<TITLE> My Title </TITLE>
<META NAME="Description” CONTENT=" text">
<META NAME=" Keywords” CONTENT=" words">
</HEAD>
<BODY>
This is a example paragraph
that goes between the Body tags
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Paragraphs
<HTML>
<HEAD>
<TITLE> My Title </TITLE>
<META NAME="Description” CONTENT=" text">
<META NAME=" Keywords” CONTENT=" words">
</HEAD>
<BODY>
<P> one paragraph.
<P> a second paragraph.
<BR> now line break here
<BR> another line break there
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Paragraphs: more
<HTML>
<HEAD>
<TITLE> My Title </TITLE>
<META NAME="Description” CONTENT=" text">
<META NAME=" Keywords” CONTENT=" words">
</HEAD>
<BODY>
<p ALIGN="left"> Paragraph left justified </p>
<p> Also left justified</p>
<p ALIGN="center"> Paragraph centred </p>
<center><p> Also centred </p></center>
<center><p ALIGN="center"> Centred as well </p></center>
<p ALIGN="right">Paragraph right justified</p>
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Formatting Text
<HTML>
<HEAD>
<TITLE> My Title </TITLE>
<META NAME="Description” CONTENT=" text">
<META NAME=" Keywords” CONTENT=" words">
</HEAD>
<BODY>
<h1> Heading No 1 </h1>
<h5> Heading No 5 </h5>
<i>Text in Italic </i> <BR>
<b>Text in Bold </b><BR>
<b><i> Text in Bold & Italic </i></b>
<BR><u>Text Underline </u>
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Text Colour
<HTML>
<HEAD>
<TITLE> My Title </TITLE>
<META NAME="Description” CONTENT=" text">
<META NAME=" Keywords” CONTENT=" words">
</HEAD>
<BODY BGCOLOR="#FFFF000” TEXT="#FF0000">
Text is in the default colour<BR>
<font COLOR="BLUE">This Text is
blue</font> <BR>
This <sup> Text </sup> is Super-Script <BR>
This <sub> Text </sub> is Sub-Scrip t<BR>
But <strike>this one</strike> is formatted with Strike-through <BR>
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Formatting Text: font face & colour
<HTML>
<HEAD>
<TITLE> My Title </TITLE>
<META NAME="Description” CONTENT=" text">
<META NAME=" Keywords” CONTENT=" words">
</HEAD>
<BODY>
<font COLOR="#00FF00">Text is in the colour of Green</font> <BR>
<font COLOR="BLUE”> Blue Text</font> <BR>
<font FACE="ARIAL” COLOR="NAVY"> This Text is blue</font>
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Background Colour
<HTML>
<HEAD>
<TITLE> My Title </TITLE>
<META NAME="Description” CONTENT=" text">
<META NAME=" Keywords” CONTENT=" words">
</HEAD>
<BODY BGCOLOR="#FFFF000">
You can set the background to your favourite colour
<P>
You can also use a graphic as background (shown further
down)
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Adding Graphics
<HTML>
<HEAD>
<TITLE> My Title </TITLE>
</HEAD>
<BODY>
<IMG SRC="logo_pinkie.gif">
<BR>
<IMG SRC="logo_pinkie.gif" alt=”The Elephant">
<BR>
<IMG SRC="logo_pinkie.gif” HEIGHT=75 WIDTH=25>
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Adding Graphics: Alignment, more
<HTML>
<HEAD>
<TITLE> My Title </TITLE>
</HEAD>
<BODY>
Having text around the graphic
<IMG SRC="logo_pinkie.gif” VSPACE=5 HSPACE=30>
could be fun. Here we have 5 pixels forvertical space and
30 pixels for horizontal space
<BR>
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Adding Graphics: Alignment, even more
<HTML>
<HEAD>
<TITLE> My Title </TITLE>
</HEAD>
<BODY>
<IMG SRC="logo_pinkie.gif” ALIGN=TOP>Text top<P>
<IMG SRC="logo_pinkie.gif” ALIGN=MIDDLE>Text
middle<P>
<IMG SRC="logo_pinkie.gif” ALIGN=BOTTOM>Text bottom
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Graphic: as Background
<HTML>
<HEAD>
<TITLE> My Title </TITLE>
</HEAD>
<BODY BACKGROUND="Pink Elephant Blue lighter.gif">
<b>You can set the background with a graphic: GIF, JPEG</b>
<P>
<b>You can also use a colour as background (shown before) </b>
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Adding Links: local, WWW
<HTML>
<HEAD>
<TITLE> </TITLE>
</HEAD>
<BODY>
<A HREF=”frame1.html">This link will take you to another Webpage (HTML file), on your own
site named: FRAME1.HTML</A>
<P>
<A HREF=” http://www.pinkelephant.com">This link takes you to a new Website on the World
Wide Web</A>
<P>
<A HREF=” http://www.pink.co.uk">This link takes you to another Website on the World Wide
Web</A>
<P>
<A HREF=” http://www.pink.co.uk/About.htm ">This link takes you to a Webpage called
About.htm (HTML file), on a new Website on the World Wide Web</A>
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Adding Links: email
<HTML>
<HEAD>
<TITLE> </TITLE>
</HEAD>
<BODY>
<A HREF=”http://www.pinkelephant.com">This link takes you to a new Website on the World
Wide Web</A>
<P>
<A HREF=”mailto:info@pink.co.uk">This link will open your email client and all you will have to do
is to type your email body text.</A>
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Table
<HTML>
<HEAD>
<TITLE> </TITLE>
</HEAD>
<BODY>
<TABLE>
<TR>
<TH> Him </TH> <TH> Her </TH>
</TR>
<TR>
<TD>Tom </TD> <TD> Alice </TD>
</TR>
<TR>
<TD>Hate </TD> <TD> Love </TD>
</TR>
</TABLE>
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Table: border
<HTML>
<HEAD>
<TITLE> </TITLE>
</HEAD>
<BODY>
<TABLE BORDER=3>
<TR>
<TH> Him </TH> <TH> Her </TH>
</TR>
<TR>
<TD> Tom </TD> <TD> Alice </TD>
</TR>
<TR>
<TD>Hate </TD> <TD> Love </TD>
</TR>
</TABLE>
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Table: advanced sample
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Lists: Ordered list
<HTML>
<HEAD>
<TITLE> </TITLE>
</HEAD>
<BODY>
Here is an Ordered List
<OL>
<LI>Car
<LI>Plane
<LI>Helicopter
<LI>Train
</OL>
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Lists: Unordered list
<HTML>
<HEAD>
<TITLE> </TITLE>
</HEAD>
<BODY>
Here is an Unordered List
<UL>
<LI>Car
<LI>Plane
<LI>Helicopter
<LI>Train
</UL>
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Lists: Definition List
<HTML>
<HEAD>
<TITLE> </TITLE>
</HEAD>
<BODY>
<b>Here is an Unordered List</b>
<DL>
<DT>Human being
<DD>a so called “intelligent” animal
<DT>Tree
<DD>something with branches and leaves
</DL>
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
FRAMES: columns
<HTML>
<FRAMESET COLS="25%, 75%">
<FRAME SRC=”frame1.html">
<FRAME SRC="frame2.html ">
</FRAMESET>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
FRAMES: rows
<HTML>
<FRAMESET ROWS="25%, 75%">
<FRAME SRC=”frame1.html">
<FRAME SRC="frame2.html ">
</FRAMESET>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)
Template for text and picture
<HTML>
<HEAD>
<TITLE> My Title </TITLE>
<META NAME="Description” CONTENT=" text">
<META NAME=" Keywords” CONTENT=" words">
</HEAD>
<BODY BGCOLOR="#FFFF000">
</BODY>
</HTML>
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Trinity College, Cambridge)
Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)

Más contenido relacionado

Más de OxfordCambridge

Computer Networks Foundation 2022
Computer Networks Foundation 2022Computer Networks Foundation 2022
Computer Networks Foundation 2022OxfordCambridge
 
Aligning IT and Business Strategies - Study Notes
Aligning IT and Business Strategies - Study NotesAligning IT and Business Strategies - Study Notes
Aligning IT and Business Strategies - Study NotesOxfordCambridge
 
Agile Project Management Principles and Methodologies - Study Notes
Agile Project Management Principles and Methodologies - Study NotesAgile Project Management Principles and Methodologies - Study Notes
Agile Project Management Principles and Methodologies - Study NotesOxfordCambridge
 
Defining Cryptography (Cryptography fundamentals 1/2)
Defining Cryptography (Cryptography fundamentals 1/2)Defining Cryptography (Cryptography fundamentals 1/2)
Defining Cryptography (Cryptography fundamentals 1/2)OxfordCambridge
 
Information Security Governance #2A
Information Security Governance #2AInformation Security Governance #2A
Information Security Governance #2AOxfordCambridge
 
Information Security Governance: Concepts, Security Management & Metrics
Information Security Governance: Concepts, Security Management & MetricsInformation Security Governance: Concepts, Security Management & Metrics
Information Security Governance: Concepts, Security Management & MetricsOxfordCambridge
 
Information Security Governance: Concepts, Security Management & Metrics
Information Security Governance: Concepts, Security Management & MetricsInformation Security Governance: Concepts, Security Management & Metrics
Information Security Governance: Concepts, Security Management & MetricsOxfordCambridge
 
Standard Business Etiquette - Study Notes
Standard Business Etiquette - Study NotesStandard Business Etiquette - Study Notes
Standard Business Etiquette - Study NotesOxfordCambridge
 
ICT Project Management - Study Notes
ICT Project Management - Study NotesICT Project Management - Study Notes
ICT Project Management - Study NotesOxfordCambridge
 
Win Over Stress in Work & Life - Study Notes
Win Over Stress in Work & Life - Study NotesWin Over Stress in Work & Life - Study Notes
Win Over Stress in Work & Life - Study NotesOxfordCambridge
 
SIP (Session Initiation Protocol) - Study Notes
SIP (Session Initiation Protocol) - Study NotesSIP (Session Initiation Protocol) - Study Notes
SIP (Session Initiation Protocol) - Study NotesOxfordCambridge
 
IP Mobility Concepts - Study Notes
IP Mobility Concepts - Study NotesIP Mobility Concepts - Study Notes
IP Mobility Concepts - Study NotesOxfordCambridge
 
Building a Simple Network - Study Notes
Building a Simple Network - Study NotesBuilding a Simple Network - Study Notes
Building a Simple Network - Study NotesOxfordCambridge
 
Win Over Stress: in Work & Life
Win Over Stress: in Work & LifeWin Over Stress: in Work & Life
Win Over Stress: in Work & LifeOxfordCambridge
 
Reaching a Balanced Life
Reaching a Balanced LifeReaching a Balanced Life
Reaching a Balanced LifeOxfordCambridge
 
Project Management Fundamentals
Project Management FundamentalsProject Management Fundamentals
Project Management FundamentalsOxfordCambridge
 
Overcoming Negativity in Workplace - Study Notes
Overcoming Negativity in Workplace - Study NotesOvercoming Negativity in Workplace - Study Notes
Overcoming Negativity in Workplace - Study NotesOxfordCambridge
 
Overcoming Negativity in the Workplace
Overcoming Negativity in the WorkplaceOvercoming Negativity in the Workplace
Overcoming Negativity in the WorkplaceOxfordCambridge
 
Business Analysis Essentials
Business Analysis EssentialsBusiness Analysis Essentials
Business Analysis EssentialsOxfordCambridge
 
Strategic Management Overview
Strategic Management OverviewStrategic Management Overview
Strategic Management OverviewOxfordCambridge
 

Más de OxfordCambridge (20)

Computer Networks Foundation 2022
Computer Networks Foundation 2022Computer Networks Foundation 2022
Computer Networks Foundation 2022
 
Aligning IT and Business Strategies - Study Notes
Aligning IT and Business Strategies - Study NotesAligning IT and Business Strategies - Study Notes
Aligning IT and Business Strategies - Study Notes
 
Agile Project Management Principles and Methodologies - Study Notes
Agile Project Management Principles and Methodologies - Study NotesAgile Project Management Principles and Methodologies - Study Notes
Agile Project Management Principles and Methodologies - Study Notes
 
Defining Cryptography (Cryptography fundamentals 1/2)
Defining Cryptography (Cryptography fundamentals 1/2)Defining Cryptography (Cryptography fundamentals 1/2)
Defining Cryptography (Cryptography fundamentals 1/2)
 
Information Security Governance #2A
Information Security Governance #2AInformation Security Governance #2A
Information Security Governance #2A
 
Information Security Governance: Concepts, Security Management & Metrics
Information Security Governance: Concepts, Security Management & MetricsInformation Security Governance: Concepts, Security Management & Metrics
Information Security Governance: Concepts, Security Management & Metrics
 
Information Security Governance: Concepts, Security Management & Metrics
Information Security Governance: Concepts, Security Management & MetricsInformation Security Governance: Concepts, Security Management & Metrics
Information Security Governance: Concepts, Security Management & Metrics
 
Standard Business Etiquette - Study Notes
Standard Business Etiquette - Study NotesStandard Business Etiquette - Study Notes
Standard Business Etiquette - Study Notes
 
ICT Project Management - Study Notes
ICT Project Management - Study NotesICT Project Management - Study Notes
ICT Project Management - Study Notes
 
Win Over Stress in Work & Life - Study Notes
Win Over Stress in Work & Life - Study NotesWin Over Stress in Work & Life - Study Notes
Win Over Stress in Work & Life - Study Notes
 
SIP (Session Initiation Protocol) - Study Notes
SIP (Session Initiation Protocol) - Study NotesSIP (Session Initiation Protocol) - Study Notes
SIP (Session Initiation Protocol) - Study Notes
 
IP Mobility Concepts - Study Notes
IP Mobility Concepts - Study NotesIP Mobility Concepts - Study Notes
IP Mobility Concepts - Study Notes
 
Building a Simple Network - Study Notes
Building a Simple Network - Study NotesBuilding a Simple Network - Study Notes
Building a Simple Network - Study Notes
 
Win Over Stress: in Work & Life
Win Over Stress: in Work & LifeWin Over Stress: in Work & Life
Win Over Stress: in Work & Life
 
Reaching a Balanced Life
Reaching a Balanced LifeReaching a Balanced Life
Reaching a Balanced Life
 
Project Management Fundamentals
Project Management FundamentalsProject Management Fundamentals
Project Management Fundamentals
 
Overcoming Negativity in Workplace - Study Notes
Overcoming Negativity in Workplace - Study NotesOvercoming Negativity in Workplace - Study Notes
Overcoming Negativity in Workplace - Study Notes
 
Overcoming Negativity in the Workplace
Overcoming Negativity in the WorkplaceOvercoming Negativity in the Workplace
Overcoming Negativity in the Workplace
 
Business Analysis Essentials
Business Analysis EssentialsBusiness Analysis Essentials
Business Analysis Essentials
 
Strategic Management Overview
Strategic Management OverviewStrategic Management Overview
Strategic Management Overview
 

Último

Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 

Último (20)

Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 

HTML Tags Essentials

  • 1. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Trinity College, Cambridge) HTML Essentials
  • 2. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Trinity College, Cambridge) HTML Essentials KeyPoints to develop in your own time! Introductory concepts @ OxfordCambridge.Org all for free and free for all. The information gathered here are under KeyPoints format and may be use: - Either to give the reader an overview before deciding for a full scale study of the subject. - Or to guide readers in expanding their knowledge on the given topic. Some recommendations, perhaps: - Identify all the KeyPoints on which you feel a need to expand your knowledge. - Choose a good book or two and/or info from Internet. - And then work towards gaining that knowledge. Please enjoy!
  • 3. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Trinity College, Cambridge) Aim of publication To introduce the reader or the learner to HTML essentials tags
  • 4. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Trinity College, Cambridge) • This presentation pack has been created to help anyone willing to understand the HTML and Web page designing at beginner level. • It covers topics ranging from the <HTML> </HTML> to Frames. Learning Objectives <HTML> </HTML>
  • 5. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Essential Tags: <HTML> <HEAD> <TITLE> <BODY> <HTML> <HEAD> <TITLE> </TITLE> </HEAD> <BODY> </BODY> </HTML>
  • 6. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) TITLE tag <HTML> <HEAD> <TITLE> My Title </TITLE> </HEAD> <BODY> </BODY> </HTML>
  • 7. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) META NAME <HTML> <HEAD> <TITLE> My Title </TITLE> <META NAME=" " CONTENT=" "> </HEAD> <BODY> </BODY> </HTML>
  • 8. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) META NAME Classics <HTML> <HEAD> <TITLE> My Title </TITLE> <META NAME="Description” CONTENT=" text"> <META NAME=" Keywords” CONTENT=" words"> </HEAD> <BODY> </BODY> </HTML>
  • 9. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) META Name used by Pink <META NAME=”DESCRIPTION” CONTENT="Pink Elephant aims to be the quality market leader in IT management and the best company to work for. Quality market leadership in this field means: excellence in translating knowledge into results. Think Pink. Different thinking and organizing in IT."> <META NAME=" KEYWORDS” CONTENT="Pink Elephant, Pink, Elephant, Elephants, Pinker, Pinkers, Nederland, Netherlands, Zoetermeer, UK, United Kingdom, Canada, North America, Australia, Sydney, US, USA, United States, Chicago, IT, Information, Technology, Informatietechnologie, Think, ITIL, Prince2, Prince, 2, EFQM, Management, Beheer, IT-beheer, Project, Projectmanagement, Automatisering, Infrastructure, Infrastructuur, Service, Services, Education, Opleiding, Opleidingen, Course, Courses, Support, Ondersteuning, Implementation, Implementatie, Migration, Migratie, Transformation, Transformatie, Outsourcing, Intranet, Internet, Recruitment, Recruiting, People, Skills, Specialist, Specialists, Specialisten, Knowledge, Communication, Communicatie, Innovation, Innovatie, Innovative, Innovatief, Event, Events, Invoering, MS, Microsoft, Windows, Windows95, Windows98, 95, 98, NT, Desktop, HR, Human Resources, Annual, Report, Jaarverslag, Foundation, Library, Rowing Association, RDRA, Leliveld, Blaauw, Verburg, Noorder, Dierenpark, Zoo">
  • 10. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) BODY tag <HTML> <HEAD> <TITLE> My Title </TITLE> <META NAME="Description” CONTENT=" text"> <META NAME=" Keywords” CONTENT=" words"> </HEAD> <BODY> This is a example paragraph that goes between the Body tags </BODY> </HTML>
  • 11. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Paragraphs <HTML> <HEAD> <TITLE> My Title </TITLE> <META NAME="Description” CONTENT=" text"> <META NAME=" Keywords” CONTENT=" words"> </HEAD> <BODY> <P> one paragraph. <P> a second paragraph. <BR> now line break here <BR> another line break there </BODY> </HTML>
  • 12. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Paragraphs: more <HTML> <HEAD> <TITLE> My Title </TITLE> <META NAME="Description” CONTENT=" text"> <META NAME=" Keywords” CONTENT=" words"> </HEAD> <BODY> <p ALIGN="left"> Paragraph left justified </p> <p> Also left justified</p> <p ALIGN="center"> Paragraph centred </p> <center><p> Also centred </p></center> <center><p ALIGN="center"> Centred as well </p></center> <p ALIGN="right">Paragraph right justified</p> </BODY> </HTML>
  • 13. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Formatting Text <HTML> <HEAD> <TITLE> My Title </TITLE> <META NAME="Description” CONTENT=" text"> <META NAME=" Keywords” CONTENT=" words"> </HEAD> <BODY> <h1> Heading No 1 </h1> <h5> Heading No 5 </h5> <i>Text in Italic </i> <BR> <b>Text in Bold </b><BR> <b><i> Text in Bold & Italic </i></b> <BR><u>Text Underline </u> </BODY> </HTML>
  • 14. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Text Colour <HTML> <HEAD> <TITLE> My Title </TITLE> <META NAME="Description” CONTENT=" text"> <META NAME=" Keywords” CONTENT=" words"> </HEAD> <BODY BGCOLOR="#FFFF000” TEXT="#FF0000"> Text is in the default colour<BR> <font COLOR="BLUE">This Text is blue</font> <BR> This <sup> Text </sup> is Super-Script <BR> This <sub> Text </sub> is Sub-Scrip t<BR> But <strike>this one</strike> is formatted with Strike-through <BR> </BODY> </HTML>
  • 15. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Formatting Text: font face & colour <HTML> <HEAD> <TITLE> My Title </TITLE> <META NAME="Description” CONTENT=" text"> <META NAME=" Keywords” CONTENT=" words"> </HEAD> <BODY> <font COLOR="#00FF00">Text is in the colour of Green</font> <BR> <font COLOR="BLUE”> Blue Text</font> <BR> <font FACE="ARIAL” COLOR="NAVY"> This Text is blue</font> </BODY> </HTML>
  • 16. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Background Colour <HTML> <HEAD> <TITLE> My Title </TITLE> <META NAME="Description” CONTENT=" text"> <META NAME=" Keywords” CONTENT=" words"> </HEAD> <BODY BGCOLOR="#FFFF000"> You can set the background to your favourite colour <P> You can also use a graphic as background (shown further down) </BODY> </HTML>
  • 17. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Adding Graphics <HTML> <HEAD> <TITLE> My Title </TITLE> </HEAD> <BODY> <IMG SRC="logo_pinkie.gif"> <BR> <IMG SRC="logo_pinkie.gif" alt=”The Elephant"> <BR> <IMG SRC="logo_pinkie.gif” HEIGHT=75 WIDTH=25> </BODY> </HTML>
  • 18. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Adding Graphics: Alignment, more <HTML> <HEAD> <TITLE> My Title </TITLE> </HEAD> <BODY> Having text around the graphic <IMG SRC="logo_pinkie.gif” VSPACE=5 HSPACE=30> could be fun. Here we have 5 pixels forvertical space and 30 pixels for horizontal space <BR> </BODY> </HTML>
  • 19. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Adding Graphics: Alignment, even more <HTML> <HEAD> <TITLE> My Title </TITLE> </HEAD> <BODY> <IMG SRC="logo_pinkie.gif” ALIGN=TOP>Text top<P> <IMG SRC="logo_pinkie.gif” ALIGN=MIDDLE>Text middle<P> <IMG SRC="logo_pinkie.gif” ALIGN=BOTTOM>Text bottom </BODY> </HTML>
  • 20. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Graphic: as Background <HTML> <HEAD> <TITLE> My Title </TITLE> </HEAD> <BODY BACKGROUND="Pink Elephant Blue lighter.gif"> <b>You can set the background with a graphic: GIF, JPEG</b> <P> <b>You can also use a colour as background (shown before) </b> </BODY> </HTML>
  • 21. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Adding Links: local, WWW <HTML> <HEAD> <TITLE> </TITLE> </HEAD> <BODY> <A HREF=”frame1.html">This link will take you to another Webpage (HTML file), on your own site named: FRAME1.HTML</A> <P> <A HREF=” http://www.pinkelephant.com">This link takes you to a new Website on the World Wide Web</A> <P> <A HREF=” http://www.pink.co.uk">This link takes you to another Website on the World Wide Web</A> <P> <A HREF=” http://www.pink.co.uk/About.htm ">This link takes you to a Webpage called About.htm (HTML file), on a new Website on the World Wide Web</A> </BODY> </HTML>
  • 22. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Adding Links: email <HTML> <HEAD> <TITLE> </TITLE> </HEAD> <BODY> <A HREF=”http://www.pinkelephant.com">This link takes you to a new Website on the World Wide Web</A> <P> <A HREF=”mailto:info@pink.co.uk">This link will open your email client and all you will have to do is to type your email body text.</A> </BODY> </HTML>
  • 23. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Table <HTML> <HEAD> <TITLE> </TITLE> </HEAD> <BODY> <TABLE> <TR> <TH> Him </TH> <TH> Her </TH> </TR> <TR> <TD>Tom </TD> <TD> Alice </TD> </TR> <TR> <TD>Hate </TD> <TD> Love </TD> </TR> </TABLE> </BODY> </HTML>
  • 24. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Table: border <HTML> <HEAD> <TITLE> </TITLE> </HEAD> <BODY> <TABLE BORDER=3> <TR> <TH> Him </TH> <TH> Her </TH> </TR> <TR> <TD> Tom </TD> <TD> Alice </TD> </TR> <TR> <TD>Hate </TD> <TD> Love </TD> </TR> </TABLE> </BODY> </HTML>
  • 25. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Table: advanced sample
  • 26. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Lists: Ordered list <HTML> <HEAD> <TITLE> </TITLE> </HEAD> <BODY> Here is an Ordered List <OL> <LI>Car <LI>Plane <LI>Helicopter <LI>Train </OL> </BODY> </HTML>
  • 27. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Lists: Unordered list <HTML> <HEAD> <TITLE> </TITLE> </HEAD> <BODY> Here is an Unordered List <UL> <LI>Car <LI>Plane <LI>Helicopter <LI>Train </UL> </BODY> </HTML>
  • 28. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Lists: Definition List <HTML> <HEAD> <TITLE> </TITLE> </HEAD> <BODY> <b>Here is an Unordered List</b> <DL> <DT>Human being <DD>a so called “intelligent” animal <DT>Tree <DD>something with branches and leaves </DL> </BODY> </HTML>
  • 29. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) FRAMES: columns <HTML> <FRAMESET COLS="25%, 75%"> <FRAME SRC=”frame1.html"> <FRAME SRC="frame2.html "> </FRAMESET> </HTML>
  • 30. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) FRAMES: rows <HTML> <FRAMESET ROWS="25%, 75%"> <FRAME SRC=”frame1.html"> <FRAME SRC="frame2.html "> </FRAMESET> </HTML>
  • 31. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford) Template for text and picture <HTML> <HEAD> <TITLE> My Title </TITLE> <META NAME="Description” CONTENT=" text"> <META NAME=" Keywords” CONTENT=" words"> </HEAD> <BODY BGCOLOR="#FFFF000"> </BODY> </HTML>
  • 32. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Trinity College, Cambridge)
  • 33. Contact Email Design Copyright 1994-2013 © OxfordCambridge.OrgCurricula - Curriculum (This picture: Harcourt Hill, West Oxford)