Essentials of HTML.

Slides:



Advertisements
Similar presentations
A guide to HTML. Slide 1 HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1.
Advertisements

Teppo Räisänen LIIKE/OAMK 2010
Creating a web page Lab Assignment Goal Create a simple web page Create the file: inclass.txt in your www directory. Do you remember how to get to your.
Today’s Topic Language of web page - HTML (Hypertext Markup Language)
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.
Tutorial 1 Developing a Basic Web Page. New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Objectives – Lesson 1 Introduction to the.
Web Pages: Creating & Maintaining Body Tags. There have been several versions of HTML since its inception. VersionYear HTML1991 HTML HTML
Learning Web Design: Chapter 4. HTML  Hypertext Markup Language (HTML)  Uses tags to tell the browser the start and end of a certain kind of formatting.
HTML. WHAT IS HTML HTML stands for Hyper Text Markup Language HTML is not a programming language, it is a markup language A markup language is a set of.
Computing Theory: HTML Year 11. Lesson Objective You will: o Be able to define what HTML is - ALL o Be able to write HTML code to create your own web.
Getting Started with HTML Please use speaker notes for additional information!
All you ever needed to know…and more!. H.T.M.L. HyperText Mark-up Language Web’s programming language All web browsers Set of instructions Written with.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Introduction to HTML. Slide 1 Hard-Coding What is hard-coding? –Creating the page in a text editor just using HTML A Web designer should know how to hard-
1 Creating Web Pages Part 1. 2 OVERVIEW: HTML-What is it? HyperText Markup Language, the authoring language used to create documents on the World Wide.
HTML. Hypertext Markup Language Lesson Objectives 1. We will be able to understand the need for HTML and where it is used 2. We will be edit HTML to.
Introduction to HTML Wah Yan College (Hong Kong) Mr. Li C.P.
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
HTML: Hyptertext Markup Language Doman’s Sections.
HTML Lesson 2. Review Questions  What are HTML tags used for?  What do HTML tags look like?  What are the 3 required HTML tags?  In what section of.
HTML Tags Lesson 2. What are HTML Tags?  Markup tags  Coded instructions that accompany the plain text of an HTML document  Syntax –Left wicket< –Tag.
The Teacher Computing HTML HyperText Markup Language.
Headings are defined with the to tags. defines the largest heading. defines the smallest heading. Note: Browsers automatically add an empty line before.
Basic HTML. Lesson Overview In this lesson, you will learn to:  Write HTML code using a text editor application such as Notepad.  View Web pages created.
This shows CIS17 and the first day introduction..
HTML NOTES October 6, Starting a document and saving  Always use notepad  Use _ for spaces otherwise it won’t work  When saving make sure you.
Tutorial #1 Using HTML to Create Web Pages. HTML, XHTML, and CSS HTML – HyperText Markup Language The tags the browser uses to define the content of the.
Basic Web Page Design. Text book: HTML, XHTML, and CSS: Visual QuickStart Guide, Sixth Edition written by Elizabeth Castro. Software: Adobe® Dreamweaver®
Project 02 Creating and Editing a Web Page Concept Map of Unit Creating and Editing a Web Page Key Learning Understand the elements to create a web page.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
What you can see in the picture?
Getting Started – Basic Page Structure
Cascading Style Sheets (CSS)
HTML.
Web Basics: HTML/CSS/JavaScript What are they?
Introduction to HTML:.
Internet Exploration: HTML Basics
Introduction to basic HTML
Elements of HTML Web Design – Sec 3-2
Creating a Web Page.
Hyper text markup Language
Uppingham Community College
Creating a Home Page in HTML
Basic HTML PowerPoint How Hyper Text Markup Language Works
HTML Lesson 2.
Internet Exploration: HTML Basics
Elements of HTML Web Design – Sec 3-2
Working with HTML These are the examples you need to go over. Click on the name like HTML5intro.html and it will bring up the page. If you right click.
Most tags must have an open and a close in XHTML.
Style Sheet Create a new CSS called Cameras.CSS TD Web Authoring
Practice: first_document.html
Basic HTML PowerPoint How Hyper Text Markup Language Works
Essentials of HTML.
Introduction to Web Page Design
HTML HYPERTEXT MARKUP LANGUAGE.
Unit A.
CSS Debugging Tips Manually check syntax errors
Creating a web page Auxiliary Lab Lecture
Unit 2 Test Building a Web Page Test.
WEB PUBLISHING 2/19/2019 JIPRA ICT DEPARTMENT
HTML Structure.
Creating a web page.
Johan Ng and Muhammad Hazzry
HTML.
Unit 10 The Web Book Test.
WJEC GCSE Computer Science
Lesson 3: Organizing your material
The Web Wizard’s Guide to PHP by David A. Lash
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
Presentation transcript:

Essentials of HTML

Understand Comments (mean – use – how to write) Understand Indents Lesson Objectives: Understand Comments (mean – use – how to write) Understand Indents Understand Lists Practical Task

Find 5 errors in the following HTML Code ?

1. Comments

Comments Notes that can be seen in the code , but ignored by web browser. When we can use ? To show author and version of web Comment out old code Test code Record changes Leave notes for other developers Keep notes for yourself to remember

How to write in HTML ? <!-- this is my note for today – TRY is the first step for success -->

2. Indents

Indents Space from the edge of the editor to the first word Why to use? Easy to know the start and the end of the text Easy to see the difference between code and text Check Student Book P-77-78 Grade9

3. Lists

Lists Useful way for presenting information on the web , there are two types of lists: Ordered List Unordered List <ul> <li> </li> </ul> <ol> <li> </li> </ol>

Practical You are suppose to do the activity in your book P-82 The task sheet should be completed..

Task Sheet No Task Completed Not Completed 1 Open NotePad++ - 2 Write html main tags – head & body 3 Title is written “ Comment – Indent – List ) 4 Write School Name 5 Write ordered list for favorite subjects 6 Write unordered list for your achievements 7 Save file as lesson2. html

Evaluate your Understanding