SlideShare a Scribd company logo
1 of 76
HTML Basics HTML, Text, Images, Tables, Forms Doncho Minkov Telerik Mobile Development Course mobiledevcourse.telerik.com Technical Trainer http://www.minkov.it
Table of Contents ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Table of Contents (2) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
How the Web Works? ,[object Object],[object Object],Client running a Web Browser Server running Web Server Software  (IIS, Apache, etc.) HTTP HTTP Server response
What is a Web Page? ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Creating HTML Pages ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
HTML Basics Text, Images, Tables, Forms
HTML Structure ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;> <html> <head></head> <body></body> </html> <img src=&quot;logo.jpg&quot; alt=&quot;logo&quot; />
HTML Code Formatting ,[object Object],[object Object],[object Object],[object Object],[object Object]
First HTML Page <!DOCTYPE HTML> <html> <head> <title>My First HTML Page</title> </head> <body> <p>This is some text...</p> </body> </html> test.html
First HTML Page: Tags <!DOCTYPE HTML> <html> <head> <title>My First HTML Page</title> </head> <body> <p>This is some text...</p> </body> </html> Opening tag Closing tag An HTML element consists of an opening tag, a closing tag and the content inside.
First HTML Page: Header <!DOCTYPE HTML> <html> <head> <title>My First HTML Page</title> </head> <body> <p>This is some text...</p> </body> </html> HTML header
First HTML Page: Body <!DOCTYPE HTML> <html> <head> <title>My First HTML Page</title> </head> <body> <p>This is some text...</p> </body> </html> HTML body
Some Simple Tags ,[object Object],[object Object],[object Object],<a href=&quot;http://www.telerik.com/&quot; title=&quot;Telerik&quot;>Link to Telerik Web site</a> <img src=&quot;logo.gif&quot; alt=&quot;logo&quot; /> This text is <em>emphasized.</em> <br />new line<br /> This one is <strong>more emphasized.</strong>
Some Simple Tags – Example <!DOCTYPE HTML> <html> <head> <title> Simple Tags Demo</title> </head> <body> <a href=&quot;http://www.telerik.com/&quot; title= &quot;Telerik site&quot;>This is a link.</a> <br /> <img src=&quot;logo.gif&quot; alt=&quot;logo&quot; /> <br /> <strong>Bold</strong> and <em>italic</em> text. </body> </html> some-tags.html
Some Simple Tags – Example (2) <!DOCTYPE HTML> <html> <head> <title> Simple Tags Demo</title> </head> <body> <a href=&quot;http://www.telerik.com/&quot; title= &quot;Telerik site&quot;>This is a link.</a> <br /> <img src=&quot;logo.gif&quot; alt=&quot;logo&quot; /> <br /> <strong>Bold</strong> and <em>italic</em> text. </body> </html> some-tags.html
Some HTML Tags Live Demo
Tags Attributes ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<img src=&quot;logo.gif&quot; alt=&quot;logo&quot; /> Attribute  alt  with value &quot; logo &quot;
Headings and Paragraphs ,[object Object],[object Object],[object Object],<p>This is my first paragraph</p> <p>This is my second paragraph</p> <h1>Heading 1</h1> <h2>Sub heading 2</h2> <h3>Sub heading 3</h3> <div style=&quot;background: skyblue;&quot;> This is a div</div>
Headings and Paragraphs – Example  <!DOCTYPE HTML> <html> <head><title>Headings and paragraphs</title></head> <body> <h1>Heading 1</h1> <h2>Sub heading 2</h2> <h3>Sub heading 3</h3> <p>This is my first paragraph</p> <p>This is my second paragraph</p> <div style=&quot;background:skyblue&quot;> This is a div</div> </body> </html> headings.html
Headings and Paragraphs – Example (2) <!DOCTYPE HTML> <html> <head><title>Headings and paragraphs</title></head> <body> <h1>Heading 1</h1> <h2>Sub heading 2</h2> <h3>Sub heading 3</h3> <p>This is my first paragraph</p> <p>This is my second paragraph</p> <div style=&quot;background:skyblue&quot;> This is a div</div> </body> </html> headings.html
Headings and Paragraphs Live Demo
Introduction to HTML HTML Document Structure in Depth
Preface ,[object Object],[object Object],[object Object],[object Object]
The  < ! DOCTYPE>  Declaration ,[object Object],[object Object],[object Object],[object Object],[object Object],<!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;>
HTML vs. XHTML ,[object Object],[object Object],[object Object],[object Object]
XHTML vs. HTML (2) ,[object Object],[object Object],[object Object],<input type=&quot;checkbox&quot; checked> <input type=&quot;checkbox&quot; checked=&quot;checked&quot; />
The  <head>  Section ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
<head> Section: <title> tag ,[object Object],[object Object],[object Object],<title>Telerik Academy – Winter Season 2009/2010 </title>
<head> Section: <meta> ,[object Object],<meta name=&quot;description&quot; content=&quot;HTML tutorial&quot; /> <meta name=&quot;keywords&quot; content=&quot;html, web design, styles&quot; /> <meta name=&quot;author&quot; content=&quot;Chris Brewer&quot; />  <meta http-equiv=&quot;refresh&quot; content=&quot;5; url=http://www.telerik.com&quot; />
<head> Section: <script> ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
The <script> Tag – Example <!DOCTYPE HTML> <html> <head> <title>JavaScript Example</title> <script type=&quot;text/javascript&quot;> function sayHello() { document.write(&quot;<p>Hello World!<p>&quot;); } </script> </head> <body> <script type= &quot;text/javascript&quot;> sayHello(); </script> </body> </html> scripts-example.html
Using Scripts Live Demo
<head> Section: <style> ,[object Object],<html> <head> <style type=&quot;text/css&quot;> p { font-size: 12pt; line-height: 12pt; } p:first-letter { font-size: 200%; } span { text-transform: uppercase; } </style> </head> <body> <p>Styles demo.<br /> <span>Test uppercase</span>. </p> </body> </html> style-example.html
Embedding CSS Styles Live Demo
Comments: <!-- --> Tag ,[object Object],[object Object],<!–- Telerik Logo (a JPG file) --> <img src=&quot;logo.jpg&quot; alt=“Telerik Logo&quot;> <!–- Hyperlink to the web site --> <a href=&quot;http://telerik.com/&quot;>Telerik</a> <!–- Show the news table --> <table class=&quot;newstable&quot;> ...
<body> Section: Introduction ,[object Object],[object Object],[object Object],<html> <head><title>Test page</title></head> <body> <!-- This is the Web page body --> </body> </html>
Text Formatting ,[object Object],[object Object]
Text Formatting – Example <!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;> <html> <head> <title>Page Title</title> </head> <body> <h1>Notice</h1> <p>This is a <em>sample</em> Web page.</p> <p><pre>Next paragraph: preformatted.</pre></p> <h2>More Info</h2> <p>Specifically, we’re using XHMTL 1.0 transitional.<br /> Next line.</p> </body> </html> text-formatting.html
Text Formatting – Example (2) <!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;> <html> <head> <title>Page Title</title> </head> <body> <h1>Notice</h1> <p>This is a <em>sample</em> Web page.</p> <p><pre>Next paragraph: preformatted.</pre></p> <h2>More Info</h2> <p>Specifically, we’re using XHMTL 1.0 transitional.<br /> Next line.</p> </body> </html> text-formatting.html
Text Formatting Live Demo
Hyperlinks: <a> Tag ,[object Object],[object Object],[object Object],<a href=&quot;form.html&quot;>Fill Our Form</a> <a href=&quot;../parent.html&quot;>Parent</a> <a href=&quot;stuff/cat.html&quot;>Catalog</a>
Hyperlinks: <a> Tag (2) ,[object Object],[object Object],[object Object],[object Object],<a href=&quot;http://www.devbg.org&quot; target=&quot;_blank&quot;>BASD</a> <a href=&quot;mailto:bugs@example.com?subject=Bug+Report&quot;> Please report bugs here (by e-mail only)</a>
Hyperlinks: <a> Tag (3) ,[object Object],[object Object],[object Object],[object Object],[object Object],<a href=&quot;apply-now.html&quot;><img src=&quot;apply-now-button.jpg&quot; /></a> <a href=&quot;../english/index.html&quot;>Switch to English version</a>
Hyperlinks and Sections ,[object Object],[object Object],<a href=&quot;#section1&quot;>Go to Introduction</a> ... <h2 id=&quot;section1&quot;>Introduction</h2> <a href=&quot;chapter3.html#section3.1.1&quot;>Go to Section 3.1.1</a> <!–- In chapter3.html --> ... <div id=&quot;section3.1.1&quot;> <h3>3.1.1. Technical Background</h3> </div>
Hyperlinks – Example <a href=&quot;form.html&quot;>Fill Our Form</a> <br /> <a href=&quot;../parent.html&quot;>Parent</a> <br /> <a href=&quot;stuff/cat.html&quot;>Catalog</a> <br /> <a href=&quot;http://www.devbg.org&quot; target=&quot;_blank&quot;>BASD</a> <br /> <a href=&quot;mailto:bugs@example.com?subject=Bug Report&quot;>Please report bugs here (by e-mail only)</a> <br /> <a href=&quot;apply-now.html&quot;><img src=&quot;apply-now-button.jpg” /></a> <br /> <a href=&quot;../english/index.html&quot;>Switch to English version</a> <br /> hyperlinks.html
Hyperlinks – Example (2) <a href=&quot;form.html&quot;>Fill Our Form</a> <br /> <a href=&quot;../parent.html&quot;>Parent</a> <br /> <a href=&quot;stuff/cat.html&quot;>Catalog</a> <br /> <a href=&quot;http://www.devbg.org&quot; target=&quot;_blank&quot;>BASD</a> <br /> <a href=&quot;mailto:bugs@example.com?subject=Bug Report&quot;>Please report bugs here (by e-mail only)</a> <br /> <a href=&quot;apply-now.html&quot;><img src=&quot;apply-now-button.jpg” /></a> <br /> <a href=&quot;../english/index.html&quot;>Switch to English version</a> <br /> hyperlinks.html
Hyperlinks Live Demo
Links to the Same Document – Example  <h1>Table of Contents</h1> <p><a href=&quot;#section1&quot;>Introduction</a><br /> <a href=&quot;#section2&quot;>Some background</A><br /> <a href=&quot;#section2.1&quot;>Project History</a><br /> ...the rest of the table of contents... <!-- The document text follows here --> <h2 id=&quot;section1&quot;>Introduction</h2> ... Section 1 follows here ... <h2 id=&quot;section2&quot;>Some background</h2> ... Section 2 follows here ... <h3 id=&quot;section2.1&quot;>Project History</h3> ... Section 2.1 follows here ... links-to-same-document.html
Links to the Same Document – Example (2)  <h1>Table of Contents</h1> <p><a href=&quot;#section1&quot;>Introduction</a><br /> <a href=&quot;#section2&quot;>Some background</A><br /> <a href=&quot;#section2.1&quot;>Project History</a><br /> ...the rest of the table of contents... <!-- The document text follows here --> <h2 id=&quot;section1&quot;>Introduction</h2> ... Section 1 follows here ... <h2 id=&quot;section2&quot;>Some background</h2> ... Section 2 follows here ... <h3 id=&quot;section2.1&quot;>Project History</h3> ... Section 2.1 follows here ... links-to-same-document.html
Links to the Same Document Live Demo
Images:  <img>  tag ,[object Object],[object Object],[object Object],<img src=&quot;/img/basd-logo.png&quot;> <img src=&quot;./php.png&quot; alt=&quot;PHP Logo&quot; /> src  Location of image file  (relative or absolute) alt Substitute text for display  (e.g. in text mode) height  Number of pixels of the height width  Number of pixels of the width border  Size of border, 0 for no border
Miscellaneous Tags ,[object Object],[object Object],[object Object],<hr size=&quot;5&quot; width=&quot;70%&quot; /> <center>Hello World!</center> <font size=&quot;3&quot; color=&quot;blue&quot;>Font3</font> <font size=&quot;+4&quot; color=&quot;blue&quot;>Font+4</font>
Miscellaneous Tags – Example <html> <head> <title>Miscellaneous Tags Example</title> </head> <body> <hr size=&quot;5&quot; width=&quot;70%&quot; /> <center>Hello World!</center> <font size=&quot;3&quot; color=&quot;blue&quot;>Font3</font> <font size=&quot;+4&quot; color=&quot;blue&quot;>Font+4</font> </body> </html> misc.html
Miscellaneous Tags Live Demo
Ordered Lists:  <ol>  Tag ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<ol type=&quot;1&quot;> <li>Apple</li> <li>Orange</li> <li>Grapefruit</li> </ol>
Unordered Lists:  < u l>  Tag ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<ul type=&quot;disk&quot;> <li>Apple</li> <li>Orange</li> <li>Grapefruit</li> </ul>
Definition lists: <dl> tag ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Lists – Example <ol type=&quot;1&quot;> <li>Apple</li> <li>Orange</li> <li>Grapefruit</li> </ol> <ul type=&quot;disc&quot;> <li>Apple</li> <li>Orange</li> <li>Grapefruit</li> </ul> <dl> <dt>HTML</dt> <dd>A markup lang…</dd> </dl> lists.html
Creating Lists Live Demo
HTML Special Characters £ &pound; British Pound € &#8364; Euro &quot; &quot; Quotation Mark ¥ &yen; Japanese Yen — &mdash; Em Dash &nbsp; Non-breaking Space & &amp; Ampersand > &gt; Greater Than < &lt; Less Than ™ &trade; Trademark Sign ® &reg; Registered Trademark Sign © &copy; Copyright Sign Symbol HTML Entity Symbol Name
Special Characters – Example <p>[&gt;&gt;&nbsp;&nbsp;Welcome &nbsp;&nbsp;&lt;&lt;]</p> <p>&#9658;I have following cards: A&#9827;, K&#9830; and 9&#9829;.</p> <p>&#9658;I prefer hard rock &#9835; music &#9835;</p> <p>&copy; 2006 by Svetlin Nakov &amp; his team</p> <p>Telerik Academy™</p> special-chars.html
Special Chars – Example (2) <p>[&gt;&gt;&nbsp;&nbsp;Welcome &nbsp;&nbsp;&lt;&lt;]</p> <p>&#9658;I have following cards: A&#9827;, K&#9830; and 9&#9829;.</p> <p>&#9658;I prefer hard rock &#9835; music &#9835;</p> <p>&copy; 2006 by Svetlin Nakov &amp; his team</p> <p>Telerik Academy™</p> special-chars.html
HTML Special Characters Live Demo
Using  <DIV>  and  <SPAN>  Block and Inline Elements
Block and Inline Elements ,[object Object],[object Object],[object Object],[object Object],[object Object]
The <div> Tag ,[object Object],[object Object],[object Object],[object Object],<div style=&quot;font-size:24px; color:red&quot;>DIV example</div> <p>This one is <span style=&quot;color:red; font-weight:bold&quot;>only a test</span>.</p> div-and-span.html
<DIV> Live Demo
The <span> Tag ,[object Object],[object Object],[object Object],[object Object],<p>This one is <span style=&quot;color:red; font-weight:bold&quot;>only a test</span>.</p> <p>This one is another <span style=&quot;font-size:32px; font-weight:bold&quot;>TEST</span>.</p> span.html
<SPAN> Live Demo
HTML Tags Index ,[object Object],[object Object]
HTML Basics ,[object Object],http://academy.telerik.com
Exercises ,[object Object],[object Object]
Exercises (2) ,[object Object],[object Object]
Exercises (3) ,[object Object]
Exercises (4) ,[object Object],[object Object]

More Related Content

What's hot (18)

Html Ppt
Html PptHtml Ppt
Html Ppt
 
Html Ppt
Html PptHtml Ppt
Html Ppt
 
New HTML5/CSS3 techniques
New HTML5/CSS3 techniquesNew HTML5/CSS3 techniques
New HTML5/CSS3 techniques
 
Html tags
Html tagsHtml tags
Html tags
 
Html Intro2
Html Intro2Html Intro2
Html Intro2
 
HTML & CSS
HTML & CSSHTML & CSS
HTML & CSS
 
Html Presentation Of Web Page Making
Html Presentation Of Web Page MakingHtml Presentation Of Web Page Making
Html Presentation Of Web Page Making
 
Basic html
Basic htmlBasic html
Basic html
 
BasicHTML
BasicHTMLBasicHTML
BasicHTML
 
Html basic tags
Html basic tagsHtml basic tags
Html basic tags
 
LAMP_TRAINING_SESSION_3
LAMP_TRAINING_SESSION_3LAMP_TRAINING_SESSION_3
LAMP_TRAINING_SESSION_3
 
Html intro
Html introHtml intro
Html intro
 
Html1
Html1Html1
Html1
 
Basic Html Knowledge for students
Basic Html Knowledge for studentsBasic Html Knowledge for students
Basic Html Knowledge for students
 
Html ppt
Html pptHtml ppt
Html ppt
 
Intro to html
Intro to htmlIntro to html
Intro to html
 
Html ppt
Html pptHtml ppt
Html ppt
 
Html
HtmlHtml
Html
 

Viewers also liked

Guia para pais com filhos com DAE
Guia para pais com filhos com DAEGuia para pais com filhos com DAE
Guia para pais com filhos com DAERosa Mendonça
 
AAUN AUSTRALIA AFRICA UNIVERSITIES NETWORK
AAUN AUSTRALIA AFRICA UNIVERSITIES NETWORKAAUN AUSTRALIA AFRICA UNIVERSITIES NETWORK
AAUN AUSTRALIA AFRICA UNIVERSITIES NETWORKACIAR
 
Benedicto Xvi Catequesis Sobre San Pablo
Benedicto Xvi Catequesis Sobre San PabloBenedicto Xvi Catequesis Sobre San Pablo
Benedicto Xvi Catequesis Sobre San PabloNombre Apellidos
 
ՀԱՊԿ-ի կազմակերպություն
ՀԱՊԿ-ի կազմակերպությունՀԱՊԿ-ի կազմակերպություն
ՀԱՊԿ-ի կազմակերպությունEmma Isakhanyan
 
Study: The Future of VR, AR and Self-Driving Cars
Study: The Future of VR, AR and Self-Driving CarsStudy: The Future of VR, AR and Self-Driving Cars
Study: The Future of VR, AR and Self-Driving CarsLinkedIn
 
Hype vs. Reality: The AI Explainer
Hype vs. Reality: The AI ExplainerHype vs. Reality: The AI Explainer
Hype vs. Reality: The AI ExplainerLuminary Labs
 

Viewers also liked (8)

Guia para pais com filhos com DAE
Guia para pais com filhos com DAEGuia para pais com filhos com DAE
Guia para pais com filhos com DAE
 
2012 World Economic Situation and Prospects (Mid-Year Update)
2012 World Economic Situation and Prospects (Mid-Year Update)2012 World Economic Situation and Prospects (Mid-Year Update)
2012 World Economic Situation and Prospects (Mid-Year Update)
 
AAUN AUSTRALIA AFRICA UNIVERSITIES NETWORK
AAUN AUSTRALIA AFRICA UNIVERSITIES NETWORKAAUN AUSTRALIA AFRICA UNIVERSITIES NETWORK
AAUN AUSTRALIA AFRICA UNIVERSITIES NETWORK
 
Benedicto Xvi Catequesis Sobre San Pablo
Benedicto Xvi Catequesis Sobre San PabloBenedicto Xvi Catequesis Sobre San Pablo
Benedicto Xvi Catequesis Sobre San Pablo
 
ՀԱՊԿ-ի կազմակերպություն
ՀԱՊԿ-ի կազմակերպությունՀԱՊԿ-ի կազմակերպություն
ՀԱՊԿ-ի կազմակերպություն
 
Tema XI Pablo: El gran misionero
Tema XI Pablo: El gran misioneroTema XI Pablo: El gran misionero
Tema XI Pablo: El gran misionero
 
Study: The Future of VR, AR and Self-Driving Cars
Study: The Future of VR, AR and Self-Driving CarsStudy: The Future of VR, AR and Self-Driving Cars
Study: The Future of VR, AR and Self-Driving Cars
 
Hype vs. Reality: The AI Explainer
Hype vs. Reality: The AI ExplainerHype vs. Reality: The AI Explainer
Hype vs. Reality: The AI Explainer
 

Similar to HTML Fundamentals

Similar to HTML Fundamentals (20)

Understanding html
Understanding htmlUnderstanding html
Understanding html
 
Html
HtmlHtml
Html
 
Html intro
Html introHtml intro
Html intro
 
Diva
DivaDiva
Diva
 
Html part2
Html part2Html part2
Html part2
 
How an html file is structured
How an html file is structuredHow an html file is structured
How an html file is structured
 
How To Create Personal Web Pages On My Web
How To Create Personal Web Pages On My WebHow To Create Personal Web Pages On My Web
How To Create Personal Web Pages On My Web
 
HTML to FTP
HTML to FTPHTML to FTP
HTML to FTP
 
AK html
AK  htmlAK  html
AK html
 
HTML_Slideshow1
HTML_Slideshow1HTML_Slideshow1
HTML_Slideshow1
 
Intro to html
Intro to htmlIntro to html
Intro to html
 
1.2 elements and attributes copy (3)
1.2 elements and attributes   copy (3)1.2 elements and attributes   copy (3)
1.2 elements and attributes copy (3)
 
1.2 elements and attributes copy (3)
1.2 elements and attributes   copy (3)1.2 elements and attributes   copy (3)
1.2 elements and attributes copy (3)
 
1.1 xhtml basics
1.1 xhtml basics1.1 xhtml basics
1.1 xhtml basics
 
Intr To Html & Xhtml
Intr To Html & XhtmlIntr To Html & Xhtml
Intr To Html & Xhtml
 
Fundamentals Of Html
Fundamentals Of HtmlFundamentals Of Html
Fundamentals Of Html
 
Xhtml
XhtmlXhtml
Xhtml
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Html
HtmlHtml
Html
 

More from Doncho Minkov

More from Doncho Minkov (20)

Web Design Concepts
Web Design ConceptsWeb Design Concepts
Web Design Concepts
 
Web design Tools
Web design ToolsWeb design Tools
Web design Tools
 
HTML 5
HTML 5HTML 5
HTML 5
 
HTML 5 Tables and Forms
HTML 5 Tables and FormsHTML 5 Tables and Forms
HTML 5 Tables and Forms
 
CSS Overview
CSS OverviewCSS Overview
CSS Overview
 
CSS Presentation
CSS PresentationCSS Presentation
CSS Presentation
 
CSS Layout
CSS LayoutCSS Layout
CSS Layout
 
CSS 3
CSS 3CSS 3
CSS 3
 
Adobe Photoshop
Adobe PhotoshopAdobe Photoshop
Adobe Photoshop
 
Slice and Dice
Slice and DiceSlice and Dice
Slice and Dice
 
Introduction to XAML and WPF
Introduction to XAML and WPFIntroduction to XAML and WPF
Introduction to XAML and WPF
 
WPF Layout Containers
WPF Layout ContainersWPF Layout Containers
WPF Layout Containers
 
WPF Controls
WPF ControlsWPF Controls
WPF Controls
 
WPF Templating and Styling
WPF Templating and StylingWPF Templating and Styling
WPF Templating and Styling
 
WPF Graphics and Animations
WPF Graphics and AnimationsWPF Graphics and Animations
WPF Graphics and Animations
 
Simple Data Binding
Simple Data BindingSimple Data Binding
Simple Data Binding
 
Complex Data Binding
Complex Data BindingComplex Data Binding
Complex Data Binding
 
WPF Concepts
WPF ConceptsWPF Concepts
WPF Concepts
 
Model View ViewModel
Model View ViewModelModel View ViewModel
Model View ViewModel
 
WPF and Databases
WPF and DatabasesWPF and Databases
WPF and Databases
 

Recently uploaded

"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 

Recently uploaded (20)

"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 

HTML Fundamentals

  • 1. HTML Basics HTML, Text, Images, Tables, Forms Doncho Minkov Telerik Mobile Development Course mobiledevcourse.telerik.com Technical Trainer http://www.minkov.it
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7. HTML Basics Text, Images, Tables, Forms
  • 8.
  • 9.
  • 10. First HTML Page <!DOCTYPE HTML> <html> <head> <title>My First HTML Page</title> </head> <body> <p>This is some text...</p> </body> </html> test.html
  • 11. First HTML Page: Tags <!DOCTYPE HTML> <html> <head> <title>My First HTML Page</title> </head> <body> <p>This is some text...</p> </body> </html> Opening tag Closing tag An HTML element consists of an opening tag, a closing tag and the content inside.
  • 12. First HTML Page: Header <!DOCTYPE HTML> <html> <head> <title>My First HTML Page</title> </head> <body> <p>This is some text...</p> </body> </html> HTML header
  • 13. First HTML Page: Body <!DOCTYPE HTML> <html> <head> <title>My First HTML Page</title> </head> <body> <p>This is some text...</p> </body> </html> HTML body
  • 14.
  • 15. Some Simple Tags – Example <!DOCTYPE HTML> <html> <head> <title> Simple Tags Demo</title> </head> <body> <a href=&quot;http://www.telerik.com/&quot; title= &quot;Telerik site&quot;>This is a link.</a> <br /> <img src=&quot;logo.gif&quot; alt=&quot;logo&quot; /> <br /> <strong>Bold</strong> and <em>italic</em> text. </body> </html> some-tags.html
  • 16. Some Simple Tags – Example (2) <!DOCTYPE HTML> <html> <head> <title> Simple Tags Demo</title> </head> <body> <a href=&quot;http://www.telerik.com/&quot; title= &quot;Telerik site&quot;>This is a link.</a> <br /> <img src=&quot;logo.gif&quot; alt=&quot;logo&quot; /> <br /> <strong>Bold</strong> and <em>italic</em> text. </body> </html> some-tags.html
  • 17. Some HTML Tags Live Demo
  • 18.
  • 19.
  • 20. Headings and Paragraphs – Example <!DOCTYPE HTML> <html> <head><title>Headings and paragraphs</title></head> <body> <h1>Heading 1</h1> <h2>Sub heading 2</h2> <h3>Sub heading 3</h3> <p>This is my first paragraph</p> <p>This is my second paragraph</p> <div style=&quot;background:skyblue&quot;> This is a div</div> </body> </html> headings.html
  • 21. Headings and Paragraphs – Example (2) <!DOCTYPE HTML> <html> <head><title>Headings and paragraphs</title></head> <body> <h1>Heading 1</h1> <h2>Sub heading 2</h2> <h3>Sub heading 3</h3> <p>This is my first paragraph</p> <p>This is my second paragraph</p> <div style=&quot;background:skyblue&quot;> This is a div</div> </body> </html> headings.html
  • 23. Introduction to HTML HTML Document Structure in Depth
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32. The <script> Tag – Example <!DOCTYPE HTML> <html> <head> <title>JavaScript Example</title> <script type=&quot;text/javascript&quot;> function sayHello() { document.write(&quot;<p>Hello World!<p>&quot;); } </script> </head> <body> <script type= &quot;text/javascript&quot;> sayHello(); </script> </body> </html> scripts-example.html
  • 34.
  • 35. Embedding CSS Styles Live Demo
  • 36.
  • 37.
  • 38.
  • 39. Text Formatting – Example <!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;> <html> <head> <title>Page Title</title> </head> <body> <h1>Notice</h1> <p>This is a <em>sample</em> Web page.</p> <p><pre>Next paragraph: preformatted.</pre></p> <h2>More Info</h2> <p>Specifically, we’re using XHMTL 1.0 transitional.<br /> Next line.</p> </body> </html> text-formatting.html
  • 40. Text Formatting – Example (2) <!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;> <html> <head> <title>Page Title</title> </head> <body> <h1>Notice</h1> <p>This is a <em>sample</em> Web page.</p> <p><pre>Next paragraph: preformatted.</pre></p> <h2>More Info</h2> <p>Specifically, we’re using XHMTL 1.0 transitional.<br /> Next line.</p> </body> </html> text-formatting.html
  • 42.
  • 43.
  • 44.
  • 45.
  • 46. Hyperlinks – Example <a href=&quot;form.html&quot;>Fill Our Form</a> <br /> <a href=&quot;../parent.html&quot;>Parent</a> <br /> <a href=&quot;stuff/cat.html&quot;>Catalog</a> <br /> <a href=&quot;http://www.devbg.org&quot; target=&quot;_blank&quot;>BASD</a> <br /> <a href=&quot;mailto:bugs@example.com?subject=Bug Report&quot;>Please report bugs here (by e-mail only)</a> <br /> <a href=&quot;apply-now.html&quot;><img src=&quot;apply-now-button.jpg” /></a> <br /> <a href=&quot;../english/index.html&quot;>Switch to English version</a> <br /> hyperlinks.html
  • 47. Hyperlinks – Example (2) <a href=&quot;form.html&quot;>Fill Our Form</a> <br /> <a href=&quot;../parent.html&quot;>Parent</a> <br /> <a href=&quot;stuff/cat.html&quot;>Catalog</a> <br /> <a href=&quot;http://www.devbg.org&quot; target=&quot;_blank&quot;>BASD</a> <br /> <a href=&quot;mailto:bugs@example.com?subject=Bug Report&quot;>Please report bugs here (by e-mail only)</a> <br /> <a href=&quot;apply-now.html&quot;><img src=&quot;apply-now-button.jpg” /></a> <br /> <a href=&quot;../english/index.html&quot;>Switch to English version</a> <br /> hyperlinks.html
  • 49. Links to the Same Document – Example <h1>Table of Contents</h1> <p><a href=&quot;#section1&quot;>Introduction</a><br /> <a href=&quot;#section2&quot;>Some background</A><br /> <a href=&quot;#section2.1&quot;>Project History</a><br /> ...the rest of the table of contents... <!-- The document text follows here --> <h2 id=&quot;section1&quot;>Introduction</h2> ... Section 1 follows here ... <h2 id=&quot;section2&quot;>Some background</h2> ... Section 2 follows here ... <h3 id=&quot;section2.1&quot;>Project History</h3> ... Section 2.1 follows here ... links-to-same-document.html
  • 50. Links to the Same Document – Example (2) <h1>Table of Contents</h1> <p><a href=&quot;#section1&quot;>Introduction</a><br /> <a href=&quot;#section2&quot;>Some background</A><br /> <a href=&quot;#section2.1&quot;>Project History</a><br /> ...the rest of the table of contents... <!-- The document text follows here --> <h2 id=&quot;section1&quot;>Introduction</h2> ... Section 1 follows here ... <h2 id=&quot;section2&quot;>Some background</h2> ... Section 2 follows here ... <h3 id=&quot;section2.1&quot;>Project History</h3> ... Section 2.1 follows here ... links-to-same-document.html
  • 51. Links to the Same Document Live Demo
  • 52.
  • 53.
  • 54. Miscellaneous Tags – Example <html> <head> <title>Miscellaneous Tags Example</title> </head> <body> <hr size=&quot;5&quot; width=&quot;70%&quot; /> <center>Hello World!</center> <font size=&quot;3&quot; color=&quot;blue&quot;>Font3</font> <font size=&quot;+4&quot; color=&quot;blue&quot;>Font+4</font> </body> </html> misc.html
  • 56.
  • 57.
  • 58.
  • 59. Lists – Example <ol type=&quot;1&quot;> <li>Apple</li> <li>Orange</li> <li>Grapefruit</li> </ol> <ul type=&quot;disc&quot;> <li>Apple</li> <li>Orange</li> <li>Grapefruit</li> </ul> <dl> <dt>HTML</dt> <dd>A markup lang…</dd> </dl> lists.html
  • 61. HTML Special Characters £ &pound; British Pound € &#8364; Euro &quot; &quot; Quotation Mark ¥ &yen; Japanese Yen — &mdash; Em Dash &nbsp; Non-breaking Space & &amp; Ampersand > &gt; Greater Than < &lt; Less Than ™ &trade; Trademark Sign ® &reg; Registered Trademark Sign © &copy; Copyright Sign Symbol HTML Entity Symbol Name
  • 62. Special Characters – Example <p>[&gt;&gt;&nbsp;&nbsp;Welcome &nbsp;&nbsp;&lt;&lt;]</p> <p>&#9658;I have following cards: A&#9827;, K&#9830; and 9&#9829;.</p> <p>&#9658;I prefer hard rock &#9835; music &#9835;</p> <p>&copy; 2006 by Svetlin Nakov &amp; his team</p> <p>Telerik Academy™</p> special-chars.html
  • 63. Special Chars – Example (2) <p>[&gt;&gt;&nbsp;&nbsp;Welcome &nbsp;&nbsp;&lt;&lt;]</p> <p>&#9658;I have following cards: A&#9827;, K&#9830; and 9&#9829;.</p> <p>&#9658;I prefer hard rock &#9835; music &#9835;</p> <p>&copy; 2006 by Svetlin Nakov &amp; his team</p> <p>Telerik Academy™</p> special-chars.html
  • 65. Using <DIV> and <SPAN> Block and Inline Elements
  • 66.
  • 67.
  • 69.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.

Editor's Notes

  1. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  2. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  3. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  4. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  5. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  6. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  7. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  8. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  9. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  10. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  11. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  12. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  13. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  14. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  15. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  16. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  17. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  18. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  19. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  20. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  21. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  22. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  23. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  24. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  25. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  26. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  27. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  28. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  29. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  30. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  31. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  32. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  33. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  34. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  35. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  36. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  37. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  38. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  39. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  40. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  41. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  42. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  43. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  44. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  45. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  46. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  47. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  48. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##
  49. * 07/16/96 (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.* ##