HTML Vocabulary.

Slides:



Advertisements
Similar presentations
HTML popo.
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. The World Wide Web Protocols Addresses HTML.
C HAPTER – 3 I NTRODUCTION TO H TML By :- Pinkesh H. Patel.
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
Chapter 2 Introduction to HTML5 Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
 Definition of HTML Definition of HTML  Tags in HTML Tags in HTML  Creation of HTML document Creation of HTML document  Structure of HTML Structure.
Basics of HTML Shashanka Rao. Learning Objectives 1. HTML Overview 2. Head, Body, Title and Meta Elements 3.Heading, Paragraph Elements and Special Characters.
HTML Overview Part 2 – Paragraphs, Headings, and Lines 1.
Chapter 16 The World Wide Web Chapter Goals ( ) Compare and contrast the Internet and the World Wide Web Describe general Web processing.
WEB DESIGN USING DREAMWEAVER. The World Wide Web –A Web site is a group of related files organized around a common topic –A Web page is a single file.
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.
 2002 Prentice Hall, Inc. All rights reserved.2 Chapter 2 — Introduction to HyperText Markup Language 4: Part I Outline 2.1Introduction 2.2Markup Languages.
HTML 4 Foundation Level Course HyperText Markup Language Most common language used in creating Web documents. You can use HTML to create cross-platform.
Introduction to HTML. What is a HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup tags  The.
Course Content - Chapter 2 Introduction to HTML Introduction to a Text Editor as a web authoring tool Instructional Activity: Creating a webpage using.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
LEARNING HTML PowerPoint #1 Cyrus Saadat, Webmaster.
HTML Hyper Text Markup Language 1BFCET BATHINDA. Definitions Web server: a system on the internet containing one or more web site Web site: a collection.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Headings are defined with the to tags. defines the largest heading. defines the smallest heading. Note: Browsers automatically add an empty line before.
HTML HYPER TEXT MARKUP LANGUAGE. INTRODUCTION Normal text” surrounded by bracketed tags that tell browsers how to display web pages Pages end with “.htm”
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
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.
1 Introduction to HTML. 2 Definitions  W W W – World Wide Web.  HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web.
Prepared by Sana Maqbool. Objectives After completing this lesson, the you will be able to… Understand about web authoring Name and explain the uses of.
HTML Structure & syntax
Basic concepts of web design
HTML Extra Markup CS 1150 Spring 2017.
Fall 2016 CSULA Saloni Chacha
Intro to HTML CS 1150 Spring 2017.
Introduction to HTML.
HTML Basics.
Introduction to HTML:.
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Intro to HTML CS 1150 Fall 2016.
Marking Up with XHTML Tags describe how a web page should look
Essential Tags Web Design – Sec 3-3
Elements of HTML Web Design – Sec 3-2
HTML.
INTRODUCTION TO HTML AND CSS
Creating a Home Page in HTML
Basic HTML PowerPoint How Hyper Text Markup Language Works
3.00cs HTML Overview 3.00cs Develop webpages.
Essential Tags Web Design – Sec 3-3
Elements of HTML Web Design – Sec 3-2
HTML Robert McIntosh
INP150: Basic HTML Instructor: Paul J. Millis
WEBSITE DESIGN Chp 1
Basic HTML PowerPoint How Hyper Text Markup Language Works
3.02D HTML Overview 3.02 Develop webpages.
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
What is HTML anyway? HTML stands for HyperText Markup Language. Developed by scientist Tim Berners-Lee in 1990, HTML is the "hidden" code that helps us.
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.
Introduction to HTML- Basics
Intro to Web Development HTML Structure
INTRODUCTION TO HTML AND CSS
Structuring Content in a Web Document
Introduction to HTML5.
Chapter 16 The World Wide Web.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
HyperText Markup Language
The Most Basic HTML Page
3.02D HTML Overview 3.02 Develop webpages.
Lesson 2: HTML5 Coding.
WJEC GCSE Computer Science
4.02A HTML Overview 4.02 Develop web pages using various layouts and technologies. (Note to instructor: HTML tags are in red only to differentiate from.
Getting Started with Marking Up Page Content
Marking Up with XHTML Tags describe how a web page should look
Presentation transcript:

HTML Vocabulary

These two symbols enclose all HTML tags. Angle Brackets The characters (< >) that set HTML tags off from the rest of the text on an HTML page. These two symbols enclose all HTML tags. They do not show when viewing the webpage Examples: <h1> </h1> <emphasis> </emphasis>

All HTML elements can have attributes Attributes provide additional information about an element Attributes are always specified in the start tag Attributes usually come in name/value pairs like: name=“value” Example: <html lang=“en-US”>

Browser A software application that allows a user to interact with text, images, videos, music, and other digital information.

Element An HTML element usually consists of a start tag and an end tag, with the content inserted in between: Ex: <h1>My First Webpage</h1>

They do not need to be closed Empty Element An HTML object that does not have textual content; for example, <img/> , <br />, or <hr /> They do not need to be closed

Page Header A section of text, usually separated from the main body of text, that appears at the top of each page in a site and identifies the content of the page. May include information that helps search engines find it, formatting information, or language preferences to name a few. The information is hidden and does not show up in the body

Some Search Engines are also browsers like Google An online tool that searches the web and returns lists of links to sites based of the sites’ relevance and ranking. Some Search Engines are also browsers like Google

Server Hardware that houses an application program that accepts digital connections and responds to them.

Source Code The HTML (text) version of a web page Ctrl + U

<hr> horizontal rule Tags The building blocks of HTML. Each tag is predefined word or abbreviation that tells how the elements on the page should be displayed. Ex. <br> break <hr> horizontal rule

A web page creation tool that allows users to code HTML pages directly Text Editor A web page creation tool that allows users to code HTML pages directly Note Pad (IBM Compatable) TextEdit (Mac)

May be used by search engines to find the page Title Tag The required tag inside a website’s HTML code that usually displays in a window’s title bar and/or task bar. May be used by search engines to find the page <title> </title> Found in the header