Adding Comments.

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.
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.
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.
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.
CSI315CSI315 Building Web Sites. What is a website A website is just a bunch of web pages connected together with something called a link. In HTML there.
HTML history, Tags, Element. HTML: HyperText Markup Language Hello World Welcome to the world!
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.
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
More CSS.
Creating Links. The Anchor Element: The anchor tag can be used in three different ways: 1.External link – to link to a web page outside your own website.
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.
Adding Comments. XHTML Comments: Are useful for making notes to yourself (or future web designers working on your page.) Can function as reminders to.
 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
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.
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 ’
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
Doctypes and domain names
Bare boned notes.
Links and Comments in HTML5
Elements of HTML Web Design – Sec 3-2
Uppingham Community College
Links and Comments.
Creating Links.
Elements of HTML Web Design – Sec 3-2
Fix Yahoo Mail Error Code 15 Call Yahoo Support
Essentials of HTML.
Step 1: Design for a Computer Medium
Essentials of HTML.
קורס פיננסי – מושגים פיננסיים / כלכליים
More CSS.
Links and Comments.
Facebook and Browser Safety
Creating Links.
Enhancing Your Web Site—Adding Links Web Page
HTML Structure.
At GMAIL IGOOGLE Most of you have signed up for , but the first half of these slides are here if you want to help others . .
Document Structure & HTML
Links and Comments.
Links and Comments.
External Style Sheets.
Can you believe everything you see?
Creating Links.
Getting Started with Marking Up Page Content
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
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 a comment. --> <!-- This is another comment. It is not visible when the web page is shown in a browser. --> Everything between the <!-- and 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: <!-- This next link was set up to open in a new window because some visitors could not find their way back to my website. --> <a href="http://www.yahoo.com" target="_blank">Yahoo!</a> 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. 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! Yahoo!