HTML Images.

Slides:



Advertisements
Similar presentations
3.02D HTML Overview 3.02 Develop webpages.
Advertisements

HTML Basics Customizing your site using the basics of HTML.
What happens when you create an HTML document and include pictures.
HTML Images. The Image Tag and the Src Attribute  In HTML, images are defined with the tag.  In HTML, images are defined with the tag.  The tag is.
MMDE5011 – INTERACTIVE MEDIA PRACTICE 1 WEEK 1: INTRODUCTION TO HTML5
LIST- HYPERLINK- IMAGES
Including images in Web pages Skills: use the tag IT concepts: none This work is licensed under a Creative Commons Attribution-Noncommercial- Share Alike.
.  Entertain  Inform  Educate  Blogs  Sell  Date  Gamble  Religion.
Images in HTML PowerPoint How images are used in HTML.
Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and attributes Create.
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.
CHAPTER 4 LINKS Creating links between pages Linking to other sites links.
Processing.js.
Unit 2, cont. September 12 More HTML. Attributes Some tags are modifiable with attributes This changes the way a tag behaves Modifying a tag requires.
Chapter 4 BIE1313/BPROG1203 | Web design Prepared by Mohamed Abdulkarim / Mike Ng Ah Ngan.
Web Foundations TUESDAY, OCTOBER 22, 2013 LECTURE 16: WEB IMAGES.
XHTML1 Images N100 Building a Simple Web Page. XHTML2 The Element The src attribute specifies the filename of an image file To include the src attribute.
Week 1 – Beginners Content McAfee & Big Fish Games CoderDojo.
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”
Basic HTML Hyper text markup Language. Lesson Overview  In this lesson, you will learn to:  Images  Colors.
Adding Images. XHTML Element ElementAttributeAttribute Value Closing tag AttributeAttribute Value The src attribute supplies the name and location of.
Images Worksheet. Web template Download the template folder Unzip and save in your documents Rename the folder to “images work” without quotes.
HTML Images Dr. Baker Abdalahq. The Image Tag and the Src Attribute In HTML, images are defined with the tag. In HTML, images are defined with the tag.
HTML (Hyper Text Markup Language) Lecture II. Review Writing HTML files for web pages – efficient compact – fundamental. Text files with htm extension.
Adding Images to Your Web Page Web Design Section 5-7 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development.
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.
Web Authoring with Dreamweaver. Unit Objectives  Be able to define keywords: HTML, HTTP (protocol), browser, web server, client/server, tag, attribute,
1 More About HTML Images and Links. 22 Objectives You will be able to Include images in your HTML page. Create links to other pages on your HTML page.
Slide 1 Graphics (Characteristics 1) Images have various characteristics that affect performance Size (number of pixels) – Large images can be several.
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.
Basic HTML Hyper text markup Language. Lesson Overview  In this lesson, you will learn to:  Images  Colors.
Tutorial #1 Using HTML to Create Web Pages. HTML, XHTML, and CSS HTML – HyperText Markup Language The tags the browser uses to define the content of the.
ALT Tags are invisible descriptions of images which are read aloud to blind users on a screen reader or are used if someone has images turned off on their.
HTML Structure & syntax
Accessibility issues: Images and the use of ALT Text
HTML Basics.
HTML basics
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Hyper text markup Language
Computer Fundamentals 2
Images in HTML PowerPoint How images are used in HTML
HTML.
Intro to HTML Mr. Singh.
3.00cs HTML Overview 3.00cs Develop webpages.
Adding Images to Your Web Page
HTML Images CS 1150 Spring 2017.
Images and Backgrounds
Adding Images.
Graphics (Characteristics 1)
Creating a Web Page Using HTML
Hyper text markup Language
3.02D HTML Overview 3.02 Develop webpages.
Basic HTML and Embed Codes
Putting An Image on Your Web Page
HTML ELEMENTS Ms. Olifer.
HTML Links.
Internet Technologies I - Lect.01 - Waleed Ibrahim Osman
HTML Images CS 1150 Fall 2016.
Pertemuan 1b
Adding Images.
Adding Images.
Find a video that can be saved as an MP4
Pertemuan 1 Desain web Pertemuan 1
3.02D HTML Overview 3.02 Develop webpages.
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.
Adding Images.
Adding Images.
Images in HTML PowerPoint How images are used in HTML
Presentation transcript:

HTML Images

Where to get Images Images are under copywrite from the author, we need to either use free images or purchase the right to use them. Places to Get Images: www.istockphoto.com www.gettyimages.com www.veer.com www.sxc.hu www.fotolia.com For our website you can go to Google Images, just make sure to leave the watermark on the images.

Saving Your Image Once you have an image that you like, make sure to save it to the same directory where your html files are located.

Adding The Image to your HTML Images are put inside <img> tags <img> is a self enclosing tag, this means there is no </img> All the information about the image is stored inside the <img> tag as attributes.

The src Attribute <img src=“cookie.jpg”> src stands for source. It contains the path to the file, or just the file name. Now we have: <img src=“cookie.jpg”> File Name File Extension

And your Image Appears

The alternate text Attribute The alt attribute describes the picture, e.g. The alt attribute will not appear in your document, but is important for accessibility. Screen readers for the visually impaired will read the alt attribute so the user knows what the picture is of. Do not leave this attribute out even if the picture is not important, the user needs to know why it exists. <img src=“cookie.jpg” alt=“cookie”>