<html> <head> <title> Best Practices in HTML PowerPoint </title> </head> <body> HTML Best Practices </body> </html>

Slides:



Advertisements
Similar presentations
WEBSITE CONSTRUCTION. Entering Content Entering content to our website is very simple. Our website is coded by using the popular program Notepad. It is.
Advertisements

An Acronym A Study/Reading Strategy Survey, Question, Read, Recite, Review, Research.
1 Lesson 5. 2 R3 R1 R5 R4 R6 R2 B B A A
1. Content – Collective term for all text, images, videos, etc. that you want to deliver to your audience. 2. Structure – How the content is placed on.
1 eVenzia Technologies Learning HTML, XHTML & CSS Chapter 1.
HTML – The On-line Language HTML (Hyper Text Markup Language) Basic building block of any on-line page Adds flexibility to programs such as WebCT.
HTML and Web Page Design Presented by Frank H. Osborne, Ph. D. © 2005 ID 2950 Technology and the Young Child.
Attributes of HTML tags Skills: none IT concepts: HTML tag, value, attribute This work is licensed under a Creative Commons Attribution-Noncommercial-
HTML FORMATTING. CONTENTS HTML Formatting Formatting Example Formatting Example Output Summary Exercise.
Upgrading to XHTML DECO 3001 Tutorial 1 – Part 1 Presented by Ji Soo Yoon 19 February 2004 Slides adopted from
HTML Elements. HTML documents are defined by HTML elements.
HTML: PART ONE. Creating an HTML Document  It is a good idea to plan out a web page before you start coding  Draw a planning sketch or create a sample.
Introduction to HTML academy.zariba.com 1. Lecture Content 1.What is HTML? 2.The HTML Tag 3.Most popular HTML tags 2.
HTML. We’ll learn … What HTML is What tags are What a basic web page looks like What 3 HTML tags are required What HTML comments look like How to title.
Basic XHTML Module 2: XHTML Basics LESSON 1. Module 2: XHTML Basics LESSON 1 Lesson Overview In this lesson, you will learn to:  Write XHTML code using.
Define html document byusing Example : Title of the document The content of the document......
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.
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.
Web Pages: Creating & Maintaining Body Tags. There have been several versions of HTML since its inception. VersionYear HTML1991 HTML HTML
1 XHTML محمد احمدی نیا 2 Of 19 HTML vs XHTML  XHTML is a stricter and cleaner version of HTML.  by combining the strengths of HTML.
XHTML. Introduction to XHTML What Is XHTML? – XHTML stands for EXtensible HyperText Markup Language – XHTML is almost identical to HTML 4.01 – XHTML is.
All you ever needed to know…and more!. H.T.M.L. HyperText Mark-up Language Web’s programming language All web browsers Set of instructions Written with.
Basic HTML PowerPoint How Hyper Text Markup Language Works.
INTRODUCTORY Tutorial 1 Using HTML Tags to Create Web Pages.
CREATING WEB PAGES Using…More HTML code! My First \ Web Page.
Student Success Test Taking Strategies. Strategies for success on any Test Step 1:Pay attention Pay Attention and make sure that your name is on your.
Objective #4 Given a PowerPoint slide that is incorrectly formatted as to font, color, size, and style, correctly fix all of the formatting problems of.
Lesson 4.
ECA 228 Internet/Intranet Design I Intro to Markup.
WEB APPLICATION DEVELOPMENT For More visit:
HTML file format  Lesson Objective: Understanding HTML and how it is used to create web pages.  Learning Outcome:  Create a HTML page by interpreting.
1 Web Application Programming Presented by: Mehwish Shafiq.
Styling in HTML PowerPoint How to style in HTML. Styling in HTML Styling tags can be added to HTML to place emphasis or add appeal – These tags must be.
HTML Lesson 2. Review Questions  What are HTML tags used for?  What do HTML tags look like?  What are the 3 required HTML tags?  In what section of.
House Styles for ICT How we expect your work to be presented……
Presentation Basics Some guidelines for creating PowerPoint slide shows.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
Web Design Mr. Briggs’ Classes September 6-7, 2011.
SCIENCE And the end of the lab reports
Introduction to HTML Welcome! In this tutorial, you’ll be introduced to some of the basic concepts of HTML. Some pages include audio. Click the speaker.
XP New Perspectives on HTML and XHTML, Comprehensive 1 Developing a Basic Web Page Week 2.
ELA 6 A pre-reading strategy designed to help comprehension of informational texts.
HTML Basic Structure. Page Title My First Heading My first paragraph.
Bold and Italics. Bold and Italic Text in XHTML: We can italicize and bold text in CSS by using the "font-style:italic" and "font-weight:bold" styles.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place Programming language.
DPRA Is a reading strategy that will… -help you answer questions accurately! -help you find answers in text easier!
Week-11 (Lecture-1) Introduction to HTML programming: A web based markup language for web. Ex.
Lesson 5. XHTML Tags, Attributes and Structure XHTML Basic Structure head and body titles Paragraph headings comments Document Presentation Manipulating.
HTML basics
Images in HTML PowerPoint How images are used in HTML
HTML Formatting.
Eric Atwell, Language Research Group
HTML Lesson 2.
Organization/ text features
This slide is a holding slide
Bold and Italics.
What NOT to do with accessibility.
05/10/2015 Using PowerPoint A quick guide.
Images in HTML PowerPoint How images are used in HTML
Type your presentation title here
Bold and Italics.
Best Practices in HTML PowerPoint HTML Best Practices
Bold and Italics.
محمد احمدی نیا XHTML محمد احمدی نیا
Research Title (Template for a 48”x36” poster)
HTML Lesson 3.
Images in HTML PowerPoint How images are used in HTML
Presentation transcript:

<html> <head> <title> Best Practices in HTML PowerPoint </title> </head> <body> HTML Best Practices </body> </html>

Best Practices in HTML Best practice refers to a set of unofficial guidelines that developers follow in order to make sure that they do the best quality work. This is not only to make their lives easier but also to help others understand what you have done and, when you run into trouble, help you quickly.

Best Practices in HTML Close all tags that should be closed Occasionally you can get by without closing certain tags without any repercussions but it is a good habit to always close the tags that should be closed Write tags in all lowercase Case does not matter in HTML, but when you learn XHTML (which is lowercase sensitive) you will have an easier time transitioning Keep pictures proportional HTML tags can resize pictures but avoid stretching pictures

Best Practices in HTML Closing tags should be a mirror image of opening tags Occasionally tag order can be wrong but still work; proper order must be followed. If you bold, italicize, & then underline text make sure the closing tags are underline, italics, & then bold Example Works but NOT correct: <b><i><u>Some Text</i></b ></u> Works and is correct: <b><i><u>Some Text</u></i ></b>