Rollover script with dropdown menu

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am learning about webpages from microsoft training so I dont know that
much, especially about using code. But I need to put the buttons at the top
of my website with drop down menus and im having a really difficult time. i
went to simplythebest.net and am trying to follow the instructions for
inserting code on my website, but i dont know where to put what i have
pasted- ie. where the head part is or body, etc. does anyone have any help
with this, id really appreaciate it!
 
Open a page in FrontPage, then switch to Code or HTML view.

A web page is a sequence of containers:
The outermost container starts with the <html> tag, and ends with
</html>
In this container are two smaller containers, the first being the
head section starting with <head>, and ends with </head>
This is followed by the body section starting with <body> which is
closed by </body>
In the code, in a blank page, it will look like this:
<html>
<head>
</head>
<body>
</body>
</html>

The <head> section contains the page title and various <meta> tags
which describe how the page is created and displayed. This section
may also contains styles that modify the presentation of the page, and
scripts that provide error checking and perhaps dynamic effects.
It is into this section that your code should be copied.

The <body> section contains the page content and structure -
paragraphs, tables etc.

Take a look at the tutorials on HTML, CSS at www.w3schools.com ,
particularly the first lesson in HTML - this explains the various
parts of a page in greater depth than here.
 
Back
Top