<html> <head> <title> Images in HTML PowerPoint </title> </head> <body> How images are used in HTML </body> </html>

Slides:



Advertisements
Similar presentations
Intro to HTML Basics HTML = Hypertext Mark-up Language HTML = Hypertext Mark-up Language HTML is a plain-text file that can be created using a text editor.
Advertisements

Html: getting started HTML is hyper text markup language. It is what web browsers look at on the Internet. HTML documents should be created in a simple.
Introduction to HTML Lists, Images, and Links. Before We Begin Save another file in Notepad Save another file in Notepad Open your HTML, then do File>Save.
LIST- HYPERLINK- IMAGES
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
Images By Tara Frieszell By Tara Frieszell. Adding images to your website will make it more interesting and add to the design. However, some viewers aren’t.
HTML Tags. Objectives Know the commonly used HTML tags Create a simple webpage using the HTML tags that will be discussed.
.  Entertain  Inform  Educate  Blogs  Sell  Date  Gamble  Religion.
Enhancing Your Web Site. More Basic HTML Tags Today you will learn these tags: & add-on (alt, height, width & align) and “href” add-on Add a text link.
Images Inserting an image on a web page. chcslonline.org2 ITEMS REQUIRED Go to the course download page on the course website and download the 3 images.
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Tutorial 30 – Bookstore Application: Client Tier Introducing.
Images (1) Three most popular formats – Graphics Interchange Format (GIF) – Joint Photographic Experts Group (JPEG) – Portable Network Graphics (PNG) –
Images in HTML PowerPoint How images are used in HTML.
DHTML AND JAVASCRIPT Genetic Computer School LESSON 2 HTML TAGS G H E F.
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.
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,
Chapter 4 BIE1313/BPROG1203 | Web design Prepared by Mohamed Abdulkarim / Mike Ng Ah Ngan.
Web Foundations TUESDAY, OCTOBER 22, 2013 LECTURE 16: WEB IMAGES.
Week 1 – Beginners Content McAfee & Big Fish Games CoderDojo.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
Chapter 2 Web Page Design Mr. Gironda. Elements of a Web Page These are things that most web pages use.
HTML Lesson 3 Hyper Text Markup Language. Assignment Part 2  Set the file name as “FirstName2.htm”  Set the title as “FirstName LastName First Web Site”
Adding Images. XHTML Element ElementAttributeAttribute Value Closing tag AttributeAttribute Value The src attribute supplies the name and location of.
The Web Wizard’s Guide to HTML Chapter Three Colors, Patterns, and Inline Graphics.
Enhancing Your Web Site 2 assignments: 1st—complete the worksheet 2nd—create your 3RD HTML web page following the directions in this PowerPoint where it.
HTML IMAGES. CONTENTS IMG Tag Alt Attribute Setting Width and Height Of An Image Summary Exercise.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Images. Intro What is it? Getting your image Inserting Moving Resizing Cropping.
HTML CS 105. Page Structure HTML elements control the details of how a page gets displayed. Every HTML document has the following basic structure: … …
REEM ALMOTIRI Information Technology Department Majmaah University.
Links and Images. Links HTML uses a hyperlink to link to another document on the Web A hyperlink can be either text or a picture Links are created with.
Chapter 4 HTML Tags. HTML is written in something called tags. Tags come in pairs, an opening one and a closing one. The first pair of tags we'll write.
Revision Webpage design HTML.   FACE  Attributes  Marquee  Define the following terms.
ENHANCE YOUR WEBSITE. HOW TO INSERT COLOR??? USE THE TAG: GO TO PICK COLOR WANT BY POINTING: THEN USE THE HEX NUMBER.
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.
HTML Basics.
HTML basics
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
LAB Work 01 MBA 61062: E-Commerce
HTML Coding A new language.
Images in HTML PowerPoint How images are used in HTML
Uppingham Community College
Intro to HTML Mr. Singh.
Hosted by Coach Slanina
GRAPHICS(IMAGES) Explained By: Sarbjit Kaur.
Adding Images to Your Web Page
HTML Images CS 1150 Spring 2017.
Tag Basics.
COMPUTING FUNDAMENTALS
Adding Images.
Enhance your website.
Computers and Scientific Thinking David Reed, Creighton University
Basic HTML and Embed Codes
HTML Introduction Lecture 8.
Putting An Image on Your Web Page
Internet Technologies I - Lect.01 - Waleed Ibrahim Osman
HTML Images CS 1150 Fall 2016.
Pertemuan 1b
Adding Images.
HTML Structure.
Adding Images.
USING IMAGES This is the bottom of the page. Note the alignment of having text before and after, at the top, in the middle and at the bottom. Code is on.
Pertemuan 1 Desain web Pertemuan 1
Lesson 7 Graphics.
Images in HTML PowerPoint How images are used in HTML
Hyperlinks, Images, Comments, and More…
Adding Images.
Adding Images.
Presentation transcript:

<html> <head> <title> Images in HTML PowerPoint </title> </head> <body> How images are used in HTML </body> </html>

Adding Images in HTML Images are defined with the <img> tag Image tags do not have closing tags The src tag must be included; src stands for “source” and this references the URL of the picture The alt tag is optional but recommended; alt stands for alternative text & is used to provide short descriptive info for an image if the user can not view the image

Adding Images in HTML Cont. Only 3 types of images are displayed by all browsers .jpg .gif .png The browser displays the image where you place the <img> tag. Example: If you put an image tag between two paragraphs, the browser shows the first paragraph, then the image, and then the second paragraph. **There are some very important differences between these file types but we will discuss those at a later date.**

Adding Images in HTML Cont. For images embedded with text, images can “float” with the text. The align tag can be added to the img tag to make the image either align left or right Images can be resized using HTML tags but it is good practice to keep the picture proportional (this is done to avoid “stretching” of pictures) Height & Width can be added to the tag to resize the image

Adding Images - REVIEW Code View: Browser View: <img src=“car.gif” alt=“green racecar” height=“95” width=“151” align=“right”> Browser View: NOTE: Alternative text is shown when the cursor is placed over the object

Hyperlinking Images & Text in HTML Both text and images can be linked to other pages or images via the hyperlink tag Example: <a href=“http://www.google.com”>image or text that will be hyperlinked </a> - a space must be between the a & href - the website that the image or text is leading to must be in quotes - be sure to include </a> or everything past this tag will be hyperlinked - web addresses should be written with http://