16
ng Developer in Google Chrome create and edit HTML

Google chrome developer and tags

Embed Size (px)

DESCRIPTION

chrome developer and tags basics

Citation preview

Page 1: Google chrome developer and tags

Using Developer in Google Chrometo create and edit HTML

Page 2: Google chrome developer and tags

Obtain your HTML files for editing by:

1. navigating to the student share directory

2. then to the IST folder

3. then to the “student html docs” folder

4. copy the “student html docs” folder and paste to your home folder.

Page 3: Google chrome developer and tags

Getting started

Open chrome and then open the “student html docs” folder.

Page 4: Google chrome developer and tags

Select the three line icon

The drop down menu expands to provide a selection of options. Choose “Tools”

In Google Chrome to access the Developer Tool:

Page 5: Google chrome developer and tags

The further option appearsNow select “Developer tools”

Page 6: Google chrome developer and tags

All the coding iscompleted hereand will appears in the window above.

All that you wish toAppear on the pageIs typed between the tags <body> </body>

Coding area in Google Chrome

Page 7: Google chrome developer and tags

Two steps are here:1. Right click in between the body tags2. Select “Edit as HTML”

Page 8: Google chrome developer and tags

Right click on the tags and start typing

The text that you type will appear here in the window above the console

Examples of coding

Page 9: Google chrome developer and tags

By adding the tag <font color=red> I have changed the Colour of the text to red. I must close the tag using </font color>or the tags attributes will continue, in this case everything passed theword html will be red.

See the effect of the tag

Page 10: Google chrome developer and tags

This tag is used to place an imagewithin the html file and looks like<img src=“location\filename.jpg”>

Adding an image to your page

My image on the page

Page 11: Google chrome developer and tags

Tags that you can use in your HTML file

A tag that you wish to appear on your page must be placedbetween the two body tags, the opening <body> and closing tag </body>.

Page 12: Google chrome developer and tags

Essential tags for html

Formatting tags

Page 13: Google chrome developer and tags

Tags that create links

Tags that colour

Page 14: Google chrome developer and tags

Tags to use with images

Tags for additional options

Page 15: Google chrome developer and tags

Useful sites for HtmL

http://www.w3schools.com/html/default.asp

http://www.computerhope.com/htmcolor.htm#03

http://www.htmlcodetutorial.com/

http://www.dynamicdrive.com/

Advanced for later

Page 16: Google chrome developer and tags