Basic HTML Hyper text markup Language. What is one of the most important lessons for a developer?

Slides:



Advertisements
Similar presentations
HTML Basic Lecture What is HTML? HTML (Hyper Text Markup Language) is a a standard markup language used for creating and publishing documents on.
Advertisements

CSCI N241: Fundamentals of Web Design Copyright ©2004 Department of Computer & Information Science Introducing XHTML: Module B: HTML to XHTML.
Internet Applications Development Lecture 2 L. Obead Alhadreti.
WeB application development
Website Design.
His Life – His Works Charles John Huffan Dickens early alias: Boz.
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
XHTML 16-Apr-17.
XHTML1 Building Document Structure. XHTML2 Objectives In this chapter, you will: Learn how to create Extensible Hypertext Markup Language (XHTML) documents.
Made by: Dan Ye. Introduction Basic Last Page ☆ HTML stands for Hyper Text Markup Language; ☆ HTML is not a programming language, it is a markup language;
the Concept Attainment Model (teaching thinking skills across the curriculum) As demonstrated by: Wendy Lewis, JoAnn Clark, & Jenny Bremen XHTML coding:
Introduction to HTML academy.zariba.com 1. Lecture Content 1.What is HTML? 2.The HTML Tag 3.Most popular HTML tags 2.
Charles dickens by Aissatu.. Charles dickens Birth name Charles John Huffham Dickens Date of birth 7 February 1812,portsmouth,hampshire,england,uk Date.
Tutorial 1: Getting Started with HTML5
Basic HTML Hyper text markup Language. Lesson Overview  In this lesson, you will learn to:  Create Lists  Horizontal rule (line)  Create a page for.
1 Programming and Problem Solving — Software Engineering (Read Chap. 2)
Programming and Problem Solving — Software Engineering (Read Chap. 2) 1.
HTML Links and Anchors.
DAT602 Database Application Development Lecture 14 HTML.
Basic HTML Hyper text markup Language. Re-cap  … - The tag tells the browser that this is an HTML document The html element is the outermost element.
Lesson 4: Using HTML5 Markup.  The distinguishing characteristics of HTML5 syntax  The new HTML5 sectioning elements  Adding support for HTML5 elements.
HTML HyperText Markup Language Constantly evolving - extra facilities being added regularly Java applets and JavaScript used to increase functionality.
HTML Structure & syntax
Essential Tags Web Design – Sec 3-3 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development I” Course materials.
Website Development with Dreamweaver
Introduction to HTML. HTML Hyper-Text Markup Language: the foundation of the World-Wide Web Design goals:  Platform independence: pages can be viewed.
CSCI 1101 Intro to Computers
 XML is designed to describe data and to focus on what data is. HTML is designed to display data and to focus on how data looks.  XML is created to structure,
Great Expectations By Charles Dickens. Charles Dickens Dickens was born in Hampshire. When he was five, the family moved to Kent. When he was ten, the.
The biography of Charles John Huffman Dickens. born on 7 February, 1812 in Portsmouth, Hampshire, England the son of Elizabeth née Barrow and John Dickens.
Video Session A Brief Account of His Life Answer the Following Questions When was Charles Dickens born? What are his parents´ names? When did Charles.
Charles Dickens. Life Charles John Huffam Dickens was an English novelist. He was born at Landport on February 7, in He was the second of eight.
IS1811 Multimedia Development for Internet Applications Lecture 4: Introduction to HTML Rob Gleasure
How do I use HTML and XML to present information?.
Basic HTML Hyper text markup Language. Lesson Overview  In this lesson, you will learn to:  Write HTML code using a text editor application such as.
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
C++ Programming Language Lecture 2 Problem Analysis and Solution Representation By Ghada Al-Mashaqbeh The Hashemite University Computer Engineering Department.
WEB APPLICATION DEVELOPMENT For More visit:
Charles Dickens 1812–1870. Charles John Huffam Dickens 7 February 1812 – 9 June 1870 pen-name “Boz” the most popular English novelist of the Victorian.
XML Introduction. Markup Language A markup language must specify What markup is allowed What markup is required How markup is to be distinguished from.
Introduction to Programming the WWW I CMSC Winter 2003 Lecture 10.
Introduction to HTML Year 8. What is HTML O Hyper Text Mark-up Language O The language that all the elements of a web page are written in. O It describes.
HTML A brief introduction HTML1. HTML, what is? HTML is a markup language for describing web documents (web pages). HTML stands for Hyper Text Markup.
Headings are defined with the to tags. defines the largest heading. defines the smallest heading. Note: Browsers automatically add an empty line before.
WEEK -1 ACM 262 ACM 262 Course Notes. HTML What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML.
University of South Asia Course Name: Web Application Prepared By: Md Rezaul Huda Reza
Creating An Animation Program Alice. Recall from last lecture We began the animation creation process We introduced the concept of storyboard We will.
British writers. William Shakespeare Shakespeare is Britain’s greatest playwright. He was born in Stratford-on-Avon. Shakespeare wrote at least 37 plays,
Creating Your 1 st Web Page. Tags Refers to anything between on a webpage Most appear in pairs surrounding content Some appear as empty tags (no closing.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
Charles John Huffam Dickens 7 February 1812 – 9 June 1870.
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML.
ECS – Storyboarding and Introduction to Web Design
Getting Started with CSS
Charles John Huffam Dickens
Charles John Huffam Dickens 1812 – 1870
Essential Tags Web Design – Sec 3-3
Hyper text markup Language
Essential Tags Web Design – Sec 3-3
Hyper text markup Language
Basic HTML and Embed Codes
CHARLES DICKENS AND HIS WORKS
Structuring Content in a Web Document
Introduction to HTML5.
Charles Dickens and his works (other then novels)
Web Application Development
HTML 5 SEMANTIC ELEMENTS.
WEB DESIGNING THROUGH HTML
Hyper text markup Language
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
Presentation transcript:

Basic HTML Hyper text markup Language

What is one of the most important lessons for a developer?

Debugging tips  Divide and Conquer – divide a big problem into smaller problems and solve each piece  Test your code incrementally – write a small piece of code. Test it. Write next piece of code. Test both pieces of code.  Fix one problem at a time

Debugging

HTML debugging tips  Does this page have an tag?  Does every open tag have a corresponding closing tag?  Are the tags nested correctly?  Use tools like

.  Must be the first line of your HTML document  Before tag  Specifies the version of HTML used  specifies HTML 5  Required if you use a validator

Find bugs in this piece of code. debug html Introduction to HTML debugging

Find bugs in this piece of code. Introduction to HTML debugging

Find bugs in this piece of code Tags and Attributes

Find bugs in this piece of code Charles Dickens Charles John Huffam Dickens (7 February 1812 born 9 June 1870) was an English novelist, generally considered the greatest of the Victorian period. Life Early years Charles Dickens was born in Landport, Hampshire, on 7 February 1812, to John and Elizabeth Dickens. He was the second of their eight children

Code hygiene  Please add comments to describe sections of your code. It will help you and me understand your code better  Correct alignment of code.  makes code easy to understand  Makes Debugging easier

After applying basic code hygiene, the previous piece of code, has been split into two slides

Charles Dickens Charles John Huffam Dickens (7 February 1812 born 9 June 1870) was an English novelist, generally considered the greatest of the Victorian period. Life Early years

Charles Dickens was born in Landport, Hampshire, on 7 February 1812, to John and Elizabeth Dickens. He was the second of their eight children

Pick up next few pieces of code and clean it.

Journalism and early years In 1833, Dickens' first story, A Dinner at Poplar Walk was published in the London periodical, Monthly Magazine

First visit to America In 1842, Dickens and his wife made his first trip to the United States and Canada During his visit, Dickens spent a month in New York City, giving lectures, raising support for copyright laws, and recording many of his impressions of America