Adding Comments. XHTML Comments: Are useful for making notes to yourself (or future web designers working on your page.) Can function as reminders to.

Slides:



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

MA foundation Creating webpages using XHTML (part 1) Simon Mahony CCH
MWD1001 Website Production Using JavaScript with Forms.
HTML: HyperText Markup Language Hello World Welcome to the world!
Website Design.
XHTML Basics. What is XHTML? XHTML is newer than the old HTML XHTML has stricter rules and does not allow some elements formerly used in HTML One benefit.
ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
XHTML Basics.
External Site Links by Awnya Boam. Links are found… …almost everywhere on the internet. They allow users to travel from one site to another.
Links and Comments.
Web Page Development Identify elements of a Web Page Start Notepad
Designing Your Page Step 1: Design for a Computer Medium A computer screen is not a printed page. Readability changes depending on color, layout and format.
Student iDrive Access ESU Website Server Storage Space.
Downloading and Installing AutoCAD Architecture 2015 This is a 4 step process 1.Register with the Autodesk Student Community 2.Downloading the software.
HTML Elements. HTML documents are defined by HTML elements.
Web page - A Web page is a simple text file that contains HTML tags (code) that describe what should be displayed on the browser. -The Web browser interprets.
Today’s Topic Language of web page - HTML (Hypertext Markup Language)
The Internet How to decide which website will be useful for your project.
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.
FACEBOOK IS THE BEST THING THAT EVER HAPPENED TO FRIENDSHIP WHY I LIKE FACEBOOK! By Mike Matthews.
Shaping Learning Together Jessica Wu ELT Consultant
HTML history, Tags, Element. HTML: HyperText Markup Language Hello World Welcome to the world!
More Basic HTML. Add spacing (single & double space) Save Refresh Add horizontal rule Add comments Add styles Add headings Add features Add alignments.
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.
Just Enough HTML How to Create Basic HTML Documents.
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.
Enhancing Your Web Site—Adding Links Web Page **YOU MUST HAVE COMPLETED THE 1ST 3 WEB PAGES BEFORE YOU CAN DO THIS ONE. **YOU SHOULD HAVE COMPLETED THE.
Unit 3 Day 6 FOCS – Web Design. Journal Unit #3 Entry #4 Write the source code that would make the following display on a rendered page: Shopping List.
Building Webpages December 1, 2009 Beginners: Please sit in the front rows.
A guide for WTPS staff. Overview This document will show you how to link your Remind and Twitter feeds with your Schoolwires website. Post ONCE to either.
Go to your school’s web locker site school name.schoolweblockers.com) Your user name is the first letter of your first name, the first 4.
1 HTML Frames
Tutorial 8 Designing a Web Site with Frames. 2New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Objectives Explore the uses of frames.
More CSS.
HTML Tags Lesson 2. What are HTML Tags?  Markup tags  Coded instructions that accompany the plain text of an HTML document  Syntax –Left wicket< –Tag.
HTML Hyper Text Markup Language 1BFCET BATHINDA. Definitions Web server: a system on the internet containing one or more web site Web site: a collection.
Establishing a Geocities Account Mark Branom
 A PHP script can be placed anywhere in the document.  A PHP script starts with  The default file extension for PHP files is ".php".  A PHP file normally.
The top four lines are required if you are coding in XHTML and want to validate. Copy and paste them as the top four lines in the code you are writing.
ThoughTree Branch out your thoughts
Getting Started with HTML. HTML  Hyper Text Markup Language  HTML isn’t a program language, its known as a markup language  A Markup language has tags.
Your HTML website creating your first html file. Creating an HTML FIle Open note pad from accessories, programs. Write code. Save and view. In 3 Steps.
HTML Review * is used as a reference for most of the notes in this powerpoint.
Click on CIS120/17 to go to website for course. The week of will tell you what is planned for the week and what has been assigned.
What is a Wiki? A wiki is an online database that can be edited by anyone with access to it. “ Wiki ” is Hawaiian meaning ‘ fast ’ or ‘ quick ’
XHTML1 Building Document Structure N100 Building a Simple Web Page.
XHTML Basics. What is XHTML? XHTML is newer than, but built upon, the original HTML (Hyper Text Markup Language) platform. XHTML has stricter rules and.
1 Web Search/Thinkin g What are clues that an ad you’re seeing is a helpful ad or a bad ad? 2 Web Search/Thinkin g When you conduct a search,
Computer Basics Introduction CIS 109 Columbia College.
HTML Extra Markup CS 1150 Spring 2017.
More CSS.
Introduction to HTML.
HTML5 Basics.
Getting Started with CSS
Bare boned notes.
Links and Comments in HTML5
Elements of HTML Web Design – Sec 3-2
Uppingham Community College
Links and Comments.
Elements of HTML Web Design – Sec 3-2
Step 1: Design for a Computer Medium
More CSS.
Links and Comments.
Document Structure & HTML
Links and Comments.
Links and Comments.
External Style Sheets.
Getting Started with Marking Up Page Content
Adding Comments.
Presentation transcript:

Adding Comments

XHTML Comments: Are useful for making notes to yourself (or future web designers working on your page.) Can function as reminders to yourself when you redesign the page again, e.g. why you set something up the way you did. Are not visible when the page is viewed in a web browser but are visible when a page source is viewed by a visitor.

Comment Syntax: <!-- This is another comment. It is not visible when the web page is shown in a browser. --> Everything between the will be considered part of the comment by the browser and therefore ignored. Comments can span multiple lines. Line breaks and white space make no difference.

Example Comment: Comments can be very helpful to us as web designers, as they can prevent us from making harmful updates to our website in the future. <!-- This next link was set up to open in a new window because some visitors could not find their way back to my website. --> Yahoo! Never forget that these comments can be viewed by anyone who chooses to "View Source Code" in their browser. So be careful what you write!