Basic HTML Tutorial Amber Brady.

Slides:



Advertisements
Similar presentations
Introduction to HTML
Advertisements

Computers: Tools for an Information Age Writing Your Own Web Page: Using HTML and Web Authoring Tools.
Hyper Text Markup Language.  HTML is a language for describing web pages.  HTML stands for Hyper Text Markup Language  HTML is not a programming language,
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 4 Key Concepts 1 Copyright © Terry Felke-Morris.
Made by: Dan Ye. Introduction Basic Last Page ☆ HTML stands for Hyper Text Markup Language; ☆ HTML is not a programming language, it is a markup language;
Chapter 5 Web Graphics Styling Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
Chapter 3 Adding Images in HTML. Agenda Understanding Web Page Images Prepare Your Images for the Web Insert an Image Specify an Image Size Add Alternative.
BASIC HTML TUTORIAL Amber Brady. HTML tags are keywords surrounded by angle brackets like HTML tags normally come in pairs like and The first tag in a.
File Formats COM 366 Web Design & Layout. Native file format –Format native to software program –.psd > PhotoShop default Preserves layers –Use “Save.
.  Entertain  Inform  Educate  Blogs  Sell  Date  Gamble  Religion.
THE COLORS OF LIGHT RED, GREEN and BLUE
XHTML Images. Images are important Purpose: to enhance your web site. Add only when they complement or add additional impact to your message.
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.
Images (1) Three most popular formats – Graphics Interchange Format (GIF) – Joint Photographic Experts Group (JPEG) – Portable Network Graphics (PNG) –
DHTML AND JAVASCRIPT Genetic Computer School LESSON 2 HTML TAGS G H E F.
HTML 4 Foundation Level Course HyperText Markup Language Most common language used in creating Web documents. You can use HTML to create cross-platform.
Chapter 5 Web Graphics Styling Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
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.
1 Lesson 3 Power Techniques HTML and JavaScript BASICS, 4 th Edition Barksdale / Turner.
Hypertext Mark-Up Language Web Page Creation HTML.
+ 5 Things you need to know about images* *Images for the web.
FILE TYPES FOR WEB DESIGN 1 HOW SHOULD I SAVE?. GRAPHICS INTERCHANGE FORMAT (GIF) Best used for flat-color, sharp-edged art or text Clip art, logos Compression.
WRA 210: 10/7/13 IMAGES. TODAY’S AGENDA Reminder about Module 8 - test your links!Module 8 Overview of hierarchies, naming How images work on the web.
Writing Your Own Web Page: Using HTML and FrontPage Chapter 10.
Image File Formats Which one is right for me?. The Only Three Image Formats Your Will Ever Need: Names Jpg “Joint Photographic Experts Group” Png “Portable.
WEB GRAPHICS EXPLORING COMPUTER SCIENCE - LESSON 3-4.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
Introduction to Programming the WWW I CMSC Winter 2003 Lecture 4.
Introduction to Programming
Pertemuan 1 Desain web Pertemuan 1
Fall 2016 CSULA Saloni Chacha
INTRO TO WEB DEVELOPMENT html
Html.
Web Basics: HTML/CSS/JavaScript What are they?
Exploring Computer Science - Lesson 3-4
HTML basics
Creating and Linking Web Pages
Web Development Part 1.
BHS Web Design Mr. Campbell
LAB Work 01 MBA 61062: E-Commerce
Introduction to basic HTML
Exploring Computer Science - Lesson 3-4
Images in HTML PowerPoint How images are used in HTML
How to create a static website with HTML
Mansoor Ahmed Bughio.
HTML Lab 5 10/1/2015.
HTML.
Lists, Images, Tables and Links
Creating a Home Page in HTML
Chapter 1: Introduction to XHTML (part 1)
AN INTRODUCTORY LESSON TO MAKING A SIMPLE WEB PAGE By: RC Emily Solis
Exploring Computer Science - Lesson 3-4
HTML Images CS 1150 Spring 2017.
Web Development & Design Foundations with HTML5 7th Edition
Adding Images.
Photoshop: Creating and Preparing Images for the Web
Internet Technologies I - Lect.01 - Waleed Ibrahim Osman
HTML Images CS 1150 Fall 2016.
Adding Images.
HTML Basic Structure.
Adding Images.
Introduction to HTML Lecture 1 Kanida Sinmai
Web Application Development
Pertemuan 1 Desain web Pertemuan 1
CIS 205—Web Site Design and Development
Hyperlinks, Images, Comments, and More…
Adding Images.
Creating your website and learning HTML
Adding Images.
Images in HTML PowerPoint How images are used in HTML
Presentation transcript:

Basic HTML Tutorial Amber Brady

BASIC HTML + EXAMPLES HTML tags are keywords surrounded by angle brackets like <html> HTML tags normally come in pairs like <b> and </b> The first tag in a pair is the opening tag, the second tag is the closing tag

BASIC HTML + EXAMPLES  HTML headings are defined with the <h1> to <h6> tags. H1 being the largest, H6 smallest. HTML paragraphs are defined with the <p> tag. <p>This is a paragraph.</p> <p>This is another paragraph.</p> HTML links are defined with the <a> tag. <a href="http://www.w3schools.com">This is a link</a> HTML images are defined with the <img> tag. <img src=“image.jpg" width="104" height="142" />

BASIC HTML + EXAMPLES A text with a span element that can be styled with CSS. <p>My dog has <span class=“black">black</span> eyes.</p> An unordered HTML list: <ul>   <li>Coffee</li>   <li>Tea</li>   <li>Milk</li> </ul>

BASIC HTML + EXAMPLES Example Explanation <html> <body> <h1>My Web Page</h1> <p>My first paragraph.</p> </body> </html> The text between <html> and </html> describes the web page The text between <body> and </body> is the visible page content The text between <h1> and </h1> is displayed as a heading The text between <p> and </p> is displayed as a paragraph

WEB PAGE SAMPLE

WEB PAGE SAMPLE

WEB PAGE SAMPLE

WEB PAGE SAMPLE

WEB PAGE SAMPLE

WEB PAGE SAMPLE

WEB PAGE SAMPLE

WEB PAGE SAMPLE

Web Graphic Formats Three main types: - GIF - JPG - PNG

Web Graphic Formats GIF – Graphic Information Format (Best for charts, graphics: ads, logos etc.) can contain up to 256 colors support transparency. If you don’t want a background for your graphic or don’t want it in a box. can be animated not good for photographs. Lose quality & files won’t be compact

Web Graphic Formats JPG – Joint Photographic Experts Group (Best for images w/ many colors. Scanned artwork or photos) can contain up to 16 million colors you can set the compression for each image to reduce the file size. The more compressed however the lower the quality. not good for images w/ few colors, such as graphics or images w/ few colors. Will leave them looking blotchy.

Web Graphic Formats PNG - Progressive Network Graphics (Newest web graphics format) Compact and versatile. Can combine features of GIF & JPG. (have transparent backgrounds & contain millions of colors) supported by all modern browsers. May not appear in older browsers.

QUESTION What web graphic format should this image be saved as? JPG!

Short Quiz Take a few minutes to fill in your answers.

SOURCES http://www.w3schools.com http://www.buildwebsite4u.com/building/web- graphics-formats.shtml