MASTERY OBJECTIVE: Learn parts of an html document Learn basic html tags HTML-An Introduction.

Slides:



Advertisements
Similar presentations
HTML Basics Customizing your site using the basics of HTML.
Advertisements

Learning HTML. > Title of page This is my first homepage. Tells Browser This is an HTML page Basic Tags Tells Browser End of HTML page Header information.
HTML.
HTML. The World Wide Web Protocols Addresses HTML.
HTML Minute University Richard Fisher 10/1/2001 HTML FSA Training2 HTML Overview  HTML  HyperText Markup Language.
HTML and Web Page Design Presented by Frank H. Osborne, Ph. D. © 2005 ID 2950 Technology and the Young Child.
Introduction to HTML CPS470 Software Engineering Fall 1998.
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;
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
HTMLMR.Mostafa badr1. Lesson 3 HTML Tags Lesson 2 Creating a HTML File Lesson 1: Hyper Text Markup Language (HTML) Basics Get Trained for a Better Future.
HTML Overview Part 2 – Paragraphs, Headings, and Lines 1.
Define html document byusing Example : Title of the document The content of the document......
Week 1.  Phillip Chee   Ext.1214 
CS117 Introduction to Computer Science II Lecture 2 Creating an HTML Document Instructor: Li Ma Office: NBC 126 Phone: (713)
HTML BASICS Creating Web Pages with HTML CIS 133 Web Programming Concepts 1.
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.
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.
>> Introduction to HTML: Tags. Hyper - is the opposite of linear Text – words / sentences / paragraphs Mark-up – Marking the text Language – It is a language.
Explorers Guild April 27, What is HTML? Hypertext Markup Language (HTML) is the basic building block of the World Wide Web page. HTML files are.
15.1 Fundamentals of HTML.
HTML INTRODUCTION. What is HTML?  HTML stands for Hypertext Markup Language  Developed in 1990  Hidden code that helps us communicate with others on.
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
HTML Codes Miss B.
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
HTML Basics. HTML Introduction Stands for HyperText Markup Language. HTML files are plain text files with mark ups. Some characteristics of HTML: –No.
15.1 Fundamentals of HTML DeKalb County School System.
CS-3432 Electronic Commerce Lecture – 7 Sikandar Shujah Toor
HTML Basic. What is HTML HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it.
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.
Jozef Goetz, STEM Summer Camp Dr. Jozef Goetz.
Are You Smarter Than a 5 th Grader? 1,000,000 5th Grade HTML 5th Grade Syntax 4th Grade HTML 4th Grade Syntax 3rd Grade HTML 3rd Grade Syntax 2nd Grade.
Headings are defined with the to tags. defines the largest heading. defines the smallest heading. Note: Browsers automatically add an empty line before.
THE TEXT ELEMENTS. THE HEADING ELEMENTS,,,, and - introduce new section of content as a title or a header. Heading sizes range from H1 to H6, where H1.
Notes Test #2 will be held one week from this Thursday Check to see if you have a Vision account –Launch Netscape –Point & Click to location and type vision.
Web Technology (NCS-504) Prepared By Mr. Abhishek Kesharwani Assistant Professor,UCER Naini,Allahabad.
Basic Steps to create a Website using HTML5. Hypertext Markup Language.
HTML Basic Structure. Page Title My First Heading My first paragraph.
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.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
HTML And the Internet. HTML and the Internet ► HTML: HyperText Markup Language  Language in which all pages on the web are written  Not Really a Programming.
NOTEPAD++ Lab 1 1 Riham ALSmari. Why Notepad++ ?  Syntax highlighting  Tabbed document interface  Zooming  Indentation code  Find and replace over.
HTML Help book. HTML HTML is the programming language used to make web pages for the Internet. HTML stands for Hyper Text Markup Language. HTML is made.
Source of website: “Text/css rel=“styles heet” This is an external style sheet link. This means that the.
HTML 3 HTML Styles ● HTML Style Examples ● style="background-color:yellow" ● style="font-size:10px" ● style="font-family:Times"
Pertemuan 1 Desain web Pertemuan 1
Web Basics: HTML/CSS/JavaScript What are they?
HTML basics
Introduction to basic HTML
Essential Tags Web Design – Sec 3-3
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
Uppingham Community College
Basic HTML PowerPoint How Hyper Text Markup Language Works
Essential Tags Web Design – Sec 3-3
HTML Vocabulary.
Basic HTML PowerPoint How Hyper Text Markup Language Works
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
HTML 12/27/2018.
HTML What is it? HTML is a computer language devised to allow website creation. These websites can then be viewed by anyone else connected to the Internet.
Internet Technologies I - Lect.01 - Waleed Ibrahim Osman
HTML Basic Structure.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Web Application Development
Pertemuan 1 Desain web Pertemuan 1
HyperText Markup Language
The Most Basic HTML Page
15.1 Fundamentals of HTML 2 assignments: 1—complete the worksheet
HTTP and HTML HTML HTTP HTTP – Standardize the packaging
Presentation transcript:

MASTERY OBJECTIVE: Learn parts of an html document Learn basic html tags HTML-An Introduction

Parts of the html document headThe head element contains information about the current document, such as its title, keywords that may be useful to search engines, and other data that is not considered document content. Users DON’T see most of what is in the “head” section. bodyThe body of a document contains the document's content. The content may be presented in a variety of ways. For example, for visual browsers, you can think of the body as a canvas where the content appears: text, images, colors, graphics, etc. For audio user agents, the same content may be spoken. Users DO see what is in the “body” section.

Essential html tags html tags are used to mark up elements of a webpage. 3 pairs to know Identifies the start and end of the html document Identifies the start and end of the head section of an html document Identifies the start and end of the body of an html document

Title Tag Goes in the head section of the html document Controls what shows up in the title bar Identifies the start and end of the Title Bar

Block html tags html tags are used to mark up text These tags take up the entire line (block) 3 pairs to know Identifies the start and end of Headings Identifies the start and end of Headings Identifies the start and end of paragraphs