CM143 - Web Week 2 Basic HTML. Links and Image Tags.

Slides:



Advertisements
Similar presentations
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.
Advertisements

Hypertext markup language.  Client asks for an html file  Server returns the html file  Client parses and displays it  This display is what most people.
A guide to HTML. Slide 1 HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1.
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
MMDE5011 – INTERACTIVE MEDIA PRACTICE 1 WEEK 1: INTRODUCTION TO HTML5
MASTERY OBJECTIVE: Learn parts of an html document Learn basic html tags HTML-An Introduction.
Introduction to HTML CPS470 Software Engineering Fall 1998.
Computer Science 1611 Internet & Web Creating Webpages Hypertext and the HTML Markup Language.
 2008 Pearson Education, Inc. All rights reserved. 1 Introduction to HTML.
HTML Introduction HTML
Computer Science 103 Chapter 2 HyperText Markup Language (HTML)
ETT 429 Spring 2007 Web Design I.
HTML Code. What we will cover Basic HTML Body Font Images Hyperlinks Tables Frames.
Today’s Topic Language of web page - HTML (Hypertext Markup Language)
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.
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.
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.
Images in HTML PowerPoint How images are used in HTML.
 2002 Prentice Hall, Inc. All rights reserved.2 Chapter 2 — Introduction to HyperText Markup Language 4: Part I Outline 2.1Introduction 2.2Markup Languages.
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.
>> Introduction to HTML: Tags. Hyper - is the opposite of linear Text – words / sentences / paragraphs Mark-up – Marking the text Language – It is a language.
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.
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.
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.
Basic HTML PowerPoint How Hyper Text Markup Language Works
HTML Codes Miss B.
Web software. Two types of web software Browser software – used to search for and view websites. Web development software – used to create webpages/websites.
HTML: Hyptertext Markup Language Doman’s Sections.
Week 1 – Beginners Content McAfee & Big Fish Games CoderDojo.
META tag META tag is the element in the HTML that interacts with the search engines. It’s contain 2 attributes that should always be used: NAME: is an.
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
CPT 499 Internet Skills for Educators Session Ten Class Notes.
Introduction to HTML. HTML Introduction HTML – Hypertext Markup Language are the instructions that tell a browser how to lay out the information (text,
HTML HTML: Hypertext Markup Language. The basic language of the World Wide Web. Developed around 1991 at the CERN lab on the French-Swiss border by Tim.
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 Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Introduction to HTML UWWD. Agenda What do you need? What do you need? What are HTML, CSS, and tags? What are HTML, CSS, and tags? html, head, and body.
Web Authoring with Dreamweaver. Unit Objectives  Be able to define keywords: HTML, HTTP (protocol), browser, web server, client/server, tag, attribute,
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 – The Basics Rebecca Shillingburg
HTML-I Basic HTML Elements. HTML (Hyper Text Markup Language) HTML is a document layout and hyperlink- specification language. i.e. a language used to.
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.
Intro to HTML.  Hypertext markup language (HTML) is a way of telling web browsers how to display a page  You can type them by hand in a word processing.
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.
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.
HTML 17 HTML 17. HTML 17 HTML is the language for making webpages Hypertext Markup Language You need to know the basics Questions about HTML are common.
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.
TNPW1 Ing. Jiří Štěpánek.  Tags  Marks for elements ▪ Pair ▪ Start and end tag ( Paragraph text ) ▪ Single ▪ Only start tag, according to XHTML 1.0.
Introduction to HTML.
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
Images in HTML PowerPoint How images are used in HTML
Uppingham Community College
Basic HTML PowerPoint How Hyper Text Markup Language Works
A guide to HTML.
WEBSITE DESIGN Chp 1
Basic HTML PowerPoint How Hyper Text Markup Language Works
Basic HTML and Embed Codes
Intro to Web Development Links
HTML Structure.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Computer communications
Pertemuan 1 Desain web Pertemuan 1
The Most Basic HTML Page
Web Programming and Design
Images in HTML PowerPoint How images are used in HTML
Presentation transcript:

CM143 - Web Week 2 Basic HTML. Links and Image Tags.

Basic HTML Tags contain certain data inside them and define this data. Tags are opened and closed around the information they define This is the title of the page! As the complexity of the page builds, tags next inside each other with areas of increasing definition. A word might be in an emphasis tag, inside a paragraph tag, inside the body of the page, within the html for the document

Sections of the HTML document HTML (HyperText Markup Language) is a standardised code in which web pages are written, allowing browsers (Firefox, IE, etc) to interpret and display them HTML docs have a and – The head contains information on the type of code standard the document might be using, functions or programming that may be used in displaying the page (e.g. Javascript), Meta information and the title – The body contains the part of the page to be displayed

The tag displays as the web page title across in the task bar or header bar of the browser tags must be opened and closed around the title The head may also contain definitions for the standards used in the code of the page, or scripts which are used as part of the page (More on this later in your degree!) Meta data in the head might include information on the author, or keywords and descriptions of the page. These are not seen by the viewer in the browser but help to define the page for search engines

The body is the part of the webpage displayed in the browser window Some of the most basic and useful tags include the paragraph and the image and link tags. tags must be opened and closed around the paragraph they define. Break tags are not opened and closed as a pair, but define a line break and are inserted where a new line is needed

Images Image tags define the source of an image (the location of the file to be displayed), the dimensions (width and height) and the alternative text – text to be displayed if the browser is unable to load the image itself Image tags, like tags are not a pair, but a single tag containing this info on the image

Links Link tags are an anchor that is opened and closed around a piece of text or an image and makes that content become a hyperlink Links contain a hypertext reference (href) telling the browser where to send the user when the piece of text inside the link tag is clicked Click here Note that the url in the href must contain the