Main Menu
Multiwingspan Home Page
Multiwingspan Games
Gnasher @ Multiwingspan
Multiwingspan Calendar
Multiwingspan Clock
About Multiwingspan
Programming
Visual Basic 6.0 Guide
Visual Basic 6.0 Examples
Turbo Pascal Guide
SWI Prolog Guide
Visual Basic 2005 Guide
Structured Query Language
Web Design
HTML Design Tasks
Introduction To HTML
Introduction To CSS
Introduction To Javascript
Notes
AS/A2 Level Computing

HTML Guide
Other Tags

Some assorted tags and oddities

<p> </p> paragraph tag allows you to designate the code within as a paragraph. You can change how the text is displayed within the paragraph by using an align attribute.

<hr> horizontal line - you can set the width and size in pixels with attributes.

<s> </s> strikethrough text - you might use it!

<h1> </h1> heading tags can be used to help with content. 1 largest, 6 smallest.

<h6> </h6>

<a href="mailto:email address"> allows you to link to an email address.

Links within pages

It is possible to create links which, when clicked, scroll to another part of the page. Two sets of tags are required to produce this effect.

1. anchor <a name="top"></a>

2. link <a href="#top">Go top</a>

Exercise 14

Use anchor and link tags within the longest page that you have created. Clicking a link at the bottom of the page should force the page to scroll back to the top.

Exercise 15

Create an online CV. Include a photograph of yourself and use appropriate, interesting layout and design.

Exercise 16

Create a 4 page site on the topic of your choice. Use a range of formatting and layout techniques to create an interesting and attractive resource.

Return To HTML Guide || Return To Homepage