Ummm
1.) Under the "Design" menu element, click "Choose frameset" (cf. Figure 2).
2.) Now select an appropriate frameset (the division of your website so to speak), for example the two-part frameset, the second one in the first row.
3.) Now create the appropriate pages for your frameset under "Pages" (for example, a text page named "Welcome" and one named "Menu" for your future menu).
4.) Click under the "Design" menu element on "Manage styles" (cf. Figure 2) and then on "Create a new style" (cf. Figure 3).
Figure 3: Manging styles
5.) On this form, enter any title for this style under "Title".
For "header" and "footer" you must enter HTML code. The HTML code that you enter here for "Header" will always be placed in front of your content and the HTML code that you enter for "Footer" will always be placed after your content.
Thus you also have an excellent opportunity to build a design around your content.
Since the "header" appears before your content, it should contain everything up to <body>; the footer should contain everything after </body>.
For example, between <head> and </head> you can insert your website title and metatags as well as CSS details.
Example for the header:
<html>
<head>
<title>Your sample title</title> <meta name="robots" content="follow">
<meta name="keywords" content="Keyword 1, Keyword 2, Keyword 3">
<meta name="description" content="The description of your website.">
<style type="text/css">
body {
background-color: #DDDDDD;
color: #222222;
}
</style>
</head>
<body>
Example for the footer:
</body>
</html>
|