Intro to HTML Workshop. Welcome This slideshow presentation is designed to introduce you to the basics of HTML. It is the first of three HTML workshops.

Slides:



Advertisements
Similar presentations
Introduction to HTML & CSS
Advertisements

Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
WeB application development
Website Design.
Teppo Räisänen LIIKE/OAMK 2010
ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
Computer Science 1611 Internet & Web Creating Webpages Hypertext and the HTML Markup Language.
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
HTML Introduction HTML
Chapter 2 Introduction to HTML5 Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
Introducing HTML & XHTML:. Goals  Understand hyperlinking  Understand how tags are formed and used.  Understand HTML as a markup language  Understand.
Computer Sciences Department
Basic HTML The Magic Of Web Pages. Create an HTML folder  Make a folder in your H drive and name it “HTML”. We will save EVERYTHING for this unit here.
Basics of HTML Shashanka Rao. Learning Objectives 1. HTML Overview 2. Head, Body, Title and Meta Elements 3.Heading, Paragraph Elements and Special Characters.
Basics of HTML.
HTML. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language A markup language.
Ku-Yaw Chang Assistant Professor, Department of Computer Science and Information Engineering Da-Yeh University.
DAT602 Database Application Development Lecture 14 HTML.
Links in HTML. Hyperlinks or links Millions of linked web pages make up the World Wide Web Used to connect a web page to another web page on the same.
HTML HTML stands for "Hyper Text Mark-up Language“. Technically, HTML is not a programming language, but rather a markup language. Used to create web pages.
Amber Annett David Bell October 13 th, What will happen What is this business about personal web pages? Designated location of your own web page.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
HTML Structure & syntax
1 Essential HTML coding By Fadi Safieddine (Week 2)
CP2022 Multimedia Internet Communication1 HTML and Hypertext The workings of the web Lecture 7.
All Web pages are written with some form of HTML (HyperText Markup Language). HTML documents are saved as Text Only files so virtually any computer can.
HTML INTRODUCTION, EDITORS, BASIC, ELEMENTS, ATTRIBUTES.
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.
HTML CRASH COURSE. What is HTML?  Hyper Text Markup Language  The language used to make web pages  Written by using tags.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
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.
 2008 Pearson Education, Inc. All rights reserved Introduction to XHTML.
Introduction to HTML. What is HTML? Hyper Text Markup Language (HTML) is a language for describing web pages. HTML is not a programming language, it is.
15.1 Fundamentals of HTML.
HTML Hyper Text Markup Language. What is an HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup.
HTML INTRODUCTION. What is HTML?  HTML stands for Hypertext Markup Language  Developed in 1990  Hidden code that helps us communicate with others on.
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-
IS1811 Multimedia Development for Internet Applications Lecture 4: Introduction to HTML Rob Gleasure
INTRODUCTION. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language,
Unit 3 Day 6 FOCS – Web Design. Journal Unit #3 Entry #4 Write the source code that would make the following display on a rendered page: Shopping List.
INTRODUCTORY Tutorial 1 Using HTML Tags to Create Web Pages.
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.
Week 1 – Beginners Content McAfee & Big Fish Games CoderDojo.
LEARNING HTML PowerPoint #1 Cyrus Saadat, Webmaster.
15.1 Fundamentals of HTML DeKalb County School System.
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.
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.
15.1 Fundamentals of HTML 2 assignments: 1st—complete the worksheet. 2nd—create your first HTML web page following the directions in this PowerPoint where.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
(HYPER-TEXT-MARKUP-LANGUAGE) By: Saima Islam By: Saima Islam.
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.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
CHAPTER TWO HTML TAGS. 1.Basic HTML Tags 1.1 HTML: Hypertext Markup Language  HTML stands for Hypertext Markup Language.  It is the markup language.
HTML HyperText Markup Language Victoria E. Kozlek.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
Introduction lab1. Suzanne J. Sultan 2 What is HTML? The definition of HTML is Hyper Text Markup Language. HTML is a computer language devised to allow.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
HTML Tutorial. What is HTML HTML is a markup language for describing web documents (web pages) HTML documents are described by HTML tags Each HTML tag.
Command Innovative Technologies HTML (Hyper Tax Markup Language AND CSS(Cascading Style Sheet) 1.
Basic concepts of web design
Online PD Basic HTML The Magic Of Web Pages
Introduction to HTML.
3.00cs HTML Overview 3.00cs Develop webpages.
WEBSITE DESIGN Chp 1
Internet Technologies I - Lect.01 - Waleed Ibrahim Osman
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Pertemuan 1 Desain web Pertemuan 1
WJEC GCSE Computer Science
Presentation transcript:

Intro to HTML Workshop

Welcome This slideshow presentation is designed to introduce you to the basics of HTML. It is the first of three HTML workshops available at In addition to the three HTML workshops, there are also workshops on CSS, PHP, and MySQL. These slides are based on source material found at the w3schools.com website. You are encouraged to visit the site – it is a great resource.

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 is a markup language A markup language is a set of markup tags HTML uses markup tags to describe web pages

Hypertext Markup Language HyperText is how you move around on the web — by clicking on hyperlinks which bring you to the next page. The fact that it is hyper just means it is not linear — there is no set order to do things in. Markup is what HTML tags do to the text inside them. They mark it as a certain type of text (a header, for example). HTML is a language, as it has code-words and syntax like any other language.

Alternate Acronym

W3C HTML is a computer language devised to allow website creation. These websites can then be viewed by anyone else connected to the Internet. It is constantly undergoing revision and evolution to meet the demands and requirements of the growing Internet audience under the direction of the W3C, the organization charged with designing and maintaining the language.

HTML Tags HTML markup tags are usually called HTML tags Tags are keywords surrounded by angle brackets like Tags normally come in pairs such as and The first tag in a pair is the start (opening) tag, the second tag is the end (ending) tag

HTML Tags HTML consists of a series of short codes typed into a text file by the site author — these are the tags. The text is then saved as an html file, and viewed through a browser like Firefox, Safari, Chrome, and Internet Explorer.

HTML Tags This browser reads the file and translates the text into a visible form, hopefully rendering the page as the author had intended. Writing your own HTML entails using tags correctly to create your vision. You can use anything from a rudimentary text-editor to a powerful graphical editor to create HTML pages.

HTML Cheat Sheet If you would like a handy reference sheet for all the markup you will be learning, check out this cheat sheetcheat sheet (also available as a pdf).pdf

HTML Exploring Let's roll up our sleeves and dabble a bit. First, we are going to create an HTML document. Follow this link andthis link copy the code to your computer's clipboard.

HTML Exploring Next, we are going to paste that code into a 'sandbox' – a place to experiment with code. Follow this link to the “try it” editor.this link Delete the code in the box on the left. Paste the copied code into its place and click the button that says “Edit and click me >>”.

HTML Exploring Take a look at the code on the left side of the sandbox and what it produces on the right side. First, notice that the code between the tags doesn't appear on the page. That is a place for special code, lines of metadata, and other stuff we'll cover later. The code between the tags produces the things we see on the right.

HTML Anchor Links Let's look at the code between the tags. The first item is an 'anchor link' – a place in a document that you can 'link' to. At the bottom of the page is a hyperlink to the top of the page. The anchor link is the destination of that hyperlink. Notice that the link at the bottom refers to the anchor link by name.

HTML Line Breaks The next tag to appear is the line break tag after the title of the poem. These tags are called empty tags because they don't have an end tag: Lewis Carroll’s Jabberwocky Think of it as a carriage return on a typewriter. Wait, you probably don't even know what a typewriter is. Boy am I getting old...

HTML Hyperlinks Next, you'll notice the series of hyperlinks (which we'll just call links from here on out). They look like this: Text that gets linked href is short for hypertext reference. Links can point to other pages on the WWW or to anchor links within the same document as we saw a moment ago.

HTML Hyperlinks As you scan down the page of code, notice what happens when the tags aren't present. The text on the right appears as one big clump even though the code is broken into stanzas. Since we're on the subject of links, let's skip the tag for a moment and examine the address link...

HTML Hyperlinks This link is special because it doesn't link to a page. Rather it tells the browser to behave differently because the destination is an address: Text Linking to an address this way can actually be annoying from a user perspective as clicking it will open the default mail application on their computer.

HTML Images The last tag we'll cover in this session is the image tag. It is used to instruct the web browser to present a picture on the screen. The image is stored on a server and is referenced like this: The image tag is an empty tag – it doesn't have an end tag.

HTML Elements Just so you know... an HTML element is everything from the start tag to the end tag: Start tag | Element content | End tag Here are some examples of HTML elements: This is a paragraph This is a link

HTML Attributes HTML elements can have attributes. Attributes provide additional information about the element. Attributes are always specified in the start tag. They come in name/value pairs that look like this: name="value"

HTML Attributes Example: HTML links are defined with the tag. The link address is provided as an attribute: Link

HTML Comments Comments can be inserted in the HTML code to make it more readable and understandable for someone looking at the code. Comments are ignored by the browser and are not displayed in the web browser. Comments are written like this:

End of Workshop More web workshops can be found at