Web Page in Dreamweaver doesn't look like Web Page on Internet.

http://www.members.iinet.net.au/~genient/
My Web Page looks like this on my Windows XP computer (but in <font size="3" face="Verdana, Arial, Helvetica, sans-serif"> script:
Membership Fees are due on 1 July each year. The benefits of Membership include the
monthly mail-out of our Magazine Progenitor, keeping you in touch with the latest news on research. Contact us by Email to receive an application form and information sheet, by Telephone 08-8981 7363 or by Fax 08-8981 7383.
My HTML Code looks like this:
Membership</a> Fees are due on 1 July each year.  </font><font size="3" face="Verdana, Arial, Helvetica, sans-serif"> The benefits of Membership include the <br />
  monthly mail-out of our Magazine <em><strong>Progenitor</strong>, </em>keeping you in touch with the latest news on research</font>. <font size="3" face="Verdana, Arial, Helvetica, sans-serif">Contact us by <font size="3" face="Verdana, Arial, Helvetica, sans-serif"><a href="mailto:[email protected]?subject=membership enquiry">Email</a></font> to receive an application form and information sheet,
</font> <font size="3" face="Verdana, Arial, Helvetica, sans-serif">by Telephone 08-8981 7363 or by Fax 08-8981 7383</font>.
If I open the same site on the Web,
the Web page looks like this, except this copy of View Source did not pick up the BOLDFACE effect on the webpage, which I will now add manually:
Membership Fees are due on 1 July each year. The benefits of Membership include the
monthly mail-out of our Magazine Progenitor, keeping you in touch with the latest news on research. Contact us by Email to receive an application form and information sheet, by Telephone 08-8981 7363 or by Fax 08-8981 7383.
and the HTML Code looks like this in VIEW/SOURCE
and why those boxes/frames have appeared (they are not visible in the VIEW-SOURCE on the web) I don't know.:
Membership of GSNT</strong></u></font></p>
<p><font size="3" face="Verdana, Arial, Helvetica, sans-serif"> <a href="/~genient/aboutus.htm">Membership</a> Fees are due on 1 July each year.  </font><font size="3" face="Verdana, Arial, Helvetica, sans-serif"> The benefits of Membership include the <br />
  monthly mail-out of our Magazine <em><strong>Progenitor</strong>, </em>keeping you in touch with the latest news on research</font>. <font size="3" face="Verdana, Arial, Helvetica, sans-serif">Contact us by <font size="3" face="Verdana, Arial, Helvetica, sans-serif"><a href="mailto:[email protected]?subject=membership enquiry">Email</a></font> to receive an application form and information sheet,
</font> <font size="3" face="Verdana, Arial, Helvetica, sans-serif">by Telephone 08-8981 7363 or by Fax 08-8981 7383</font>.
And when I try LIVE VIEW, firstly it said I needed Flash Plugin.  I downloaded that. It still says that A Flash Netscape/Firefox Plugin was not found.  (Comment: I have used firefox on a computer, and found it very high-handed and intrusive),
Fnally, I tried to match the beginning HTML of a page which DOES look correct on the web, but there is no difference.
http://members.iinet.com.au/~genient/Directory%20of%20Useful%20Internet%20Sites.html
Help, please?
Esther

according to the w3 validator your page has 96 errors! (thats a lot)
on first glance of the code there and many puzzling things I saw
firstly.
<font face="Arial, Helvetica, sans-serif"><title>Home Page Genealogical Society of the Northern Territory</font>
</title>
not only can you not put font tags on a page title.
its nested wrong.
in any case the font tag is deprecated
secondly
whats with these style declarations?
.aliensheading { color: #008080;}
.aliensheading { color: #008080;}
.aliensheading { font-family: Verdana, Geneva, sans-serif;}
.aliensheading1 {color: #008080;}
.aliensheading1 {color: #008080;}
.aliensheading1 {font-family: Verdana, Geneva, sans-serif;}
its just duplication of the same thing
is aliensheading any different to aliensheading1 at all?
and again here
.GREEN1 {color: #008080;}
.GREEN1 {color: #008080;}
.GREEN1 {color: #008080;}
and here
.Green {color: #408080;}
.GreenStrong {color: #408080;}
.GreenStrong {color: #408080;}
your CSS should be declared in a separate file, and if not, at least within the head of the document.
yours is sitting after the </head> but before <body> tag. its no wonder it isnt reading it!
thirdly what is this???
<p align="center"><strong><font size="3" face="Verdana, Arial, Helvetica, sans-serif"><strong><strong>
<font size="3" face="Verdana, Arial, Helvetica, sans-serif"><strong><strong><font size="3" face="Verdana,
Arial, Helvetica, sans-serif"><strong><strong><font size="3" face="Verdana, Arial, Helvetica, sans-serif">
<strong><font size="3" face="Verdana, Arial, Helvetica, sans-serif"><strong><strong><font size="3"
face="Verdana, Arial, Helvetica, sans-serif"><strong><strong><font size="3" face="Verdana, Arial,
Helvetica, sans-serif"><strong><strong><font size="3" face="Verdana, Arial, Helvetica, sans-serif">
<strong><img src="/~genient/images/GSNT Tree.GIF" width="75" height="55" alt="Tree" />
</strong></font></strong></strong></font></strong></strong></font></strong></strong></font >
</strong></font></strong></strong></font></strong></strong></font></strong></strong></font >
</strong></p>
from what I can see this is the only relevant info
<img src="/~genient/images/GSNT Tree.GIF" width="75" height="55" alt="Tree" />
and all your million declarations of
<font size="3" face="Verdana, Arial, Helvetica, sans-serif"> (all within a p mind you)
can simply be replaced with
p {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:3; (although I'd prefer px myself)
fourthly you've got a list but it isnt a list because there is no <ul> or <ol> surrounding it.
and lastly
what is this????
</blockquote>
            </blockquote>
          </blockquote>
        </blockquote>
      </blockquote>
    </blockquote>
  </blockquote>
</blockquote>
<blockquote>
  <blockquote>
    <blockquote>
      <blockquote>
        <blockquote>
          <blockquote>
            <blockquote>
              <blockquote>
                <p align="left"><font size="3" face="Verdana, Arial, Helvetica, sans-serif"><a href="/~genient/emungalan.htm"></a></font>  </p>
              </blockquote>
            </blockquote>
          </blockquote>
        </blockquote>
      </blockquote>
    </blockquote>
  </blockquote>
</blockquote>
this site needs a serious overhaul. like serious.

Similar Messages

  • Getting started tab won't show info..it's all purple and my page doesn't look like the illustrations

    When I clicked on the getting started tab, the page illustrated does not look like the page I am currently getting. When I tried to click or roll over the various tabs, all I get is a purple box with no information.
    So far, I have found this site very confusing and unhelpful.

    It looks like you are using a 4 1/2 year old version - Firefox 2.0.
    You can get the latest version of Firefox from here: <br />
    http://www.mozilla.com/en-US/firefox/

  • Home doesn't look like A-Master

    At the end of the tutorial, "...First Website, Part 1" the Home page doesn't look like A-Master. How can I fix that?

    I sent the screenshots to [email protected] on 8/21/12 @ 11:09 PM with the Subj:
    Forum=Adobe Muse/Help with using Adobe Muse. Really need the response to progress with myfirstwebsite, part 2.
    Thanks in advance.

  • Doesn't look like charging, screen stays black

    My ipod out of charge and now doesn't look like it is charging.  The screen is blank when I connect to computer or wall adapter.

    To change the locations of your code and design views under Split, go into the View menu and put a check by Split Vertically.
    If you are using a version of the program that doesn't match the video (say using DWCS6 with a CC2014 video) it's not going to work well. There have been quite a few changes between recent versions and if your video and DW versions don't match, it's easy to get lost.
    Check your version by going to Help > About Dreamweaver.
    If you post back with your version, someone here should have links to videos that match it.

  • Ipad (OS 5.1.1) using pages incompatible with icloud.  If I open up one of the docs from icloud, I can no longer open it on my ipad.  Looks like the pages version gets updated to a version that is incompatible with my ipad.

    I have the original ipad (OS 5.1.1) using pages 1.7.2 and backing up to icloud.  If I open up one of the docs from icloud, I can no longer open it on my ipad.  Looks like the pages version gets updated to a version that is incompatible with my ipad.  Is there anyway stopping icloud from changing the version and is there a way to recover the old version of the document on my ipad?

    Upgrade to Snow Leopard - it's compatible with the latest version of iTunes, and still supports PowerPC applications.
    $19.99 - http://store.apple.com/us/product/MC573Z/A/mac-os-x-106-snow-leopard
    Snow Leopard is required if you wanted to upgrade to Lion, anyway, which you may want to in the future if the latest version of iTunes no longer supports Snow Leopard.

  • HT4904 Help. I have an older 20 inch iMac and had Lion running on it but the internal hard drive died. I'm trying to install Lion on an external drive but it doesn't look like Lion Recovery is supported. I have Leopard installed but am stuck.

    Hello,
    My 20inch iMac's internal drive died and I'm trying to re-install Lion on an external drive. If I could get the Lion DMG file I think I'd be all set but am not sure how to do this. It doesn't look like the Lion Recovery feature is supported in my older iMac. And I have Leopard installed on the external drive but there's no AppStore to download the Lion DMG file.
    Any suggestions?
    Thanks,
    -Lee

    Without a bootable backup/clone or a Time Machine backup of your previous Snow Leopard installation or a saved copy of Lion's install app, you'll have to upgrade your Leopard volume to Snow Leopard (10.6.6+) so you can waste another hour or more DLing the Lion thing again.

  • I have a question about extracting pages.  When I do the function, adobe saves the individual files as " file name space page number ", so the files look like this "filename 1.pdf", "filename 2.pdf", "filename 3.pdf".  Without too many gory details, I a

    I have a question about extracting pages.  When I do the function, adobe saves the individual files as "<file name><space><page number>", so the files look like this "filename 1.pdf", "filename 2.pdf", "filename 3.pdf".  Without too many gory details, I am using excel to concatenate some data to dynamically build a hyperlink to these extraced files.  It casues me problems, however, for the space to be the the file name.  Is there any way to change the default behavoir of this function to perhaps use a dash or underscore instead of a space?

    No, you can't change the default naming scheme. You can do it yourself if you extract the pages using a script instead of using the built-in command.

  • I upgraded my new iPad (iPad 3) to IOS 6 and everything went well except Siri won't launch apps. When asked say "launch Facebook" Siri responds with "it doesn't look like you have an app named Facebook" and I get the same results when trying to launch any

    I upgraded my new iPad (iPad 3) to IOS 6 and everything went well except Siri won’t launch apps. When asked say “launch Facebook” Siri responds with “it doesn’t look like you have an app named Facebook” and I get the same results when trying to launch any app. Siri works for everything else it just won’t launch apps. Any ideas? Thanks.

    I have this same problem... Seems like nobody else does. Siri won't launch any apps for me, including native apps.

  • Settings for a 1280 x 720 video (720p) that doesn't look like garbage?

    I've been toying around for a while, but I can't seem to find a decent method to render my 1280x720 video that doesn't look like crap.
    I've switched between several video types (mainly avi and mov), but I can't find a suitable method.
    I am a total noob to this stuff and though I'd prefer to use a .mov or .avi file (since any PC can pretty much play them), I need some good setting to output a quality video.
    All of this stuff about bitrate/pixel type/etc, I just have no idea what I'm doing.
    I appreciate any advice.

    See: FAQ:What export settings should I use?
    You will also find links to many free tutorials in the PremiereProPedia that will quickly show you how things are done in Premiere Pro.
    Cheers
    Eddie

  • I sure hope that the new imessenger doesn't look like the text messaging app, that would be a huge flop for apple. It has to look and feel like bbm or it will just suck.

    I sure hope that the new imessenger doesn't look like the current text messaging app, that would be a huge flop. I think I should look and feel like the bbm to make any kind of significant impact. Am I wrong?

    "iMessage in iOS 5 brings the functionality of iPhone messaging to all of your iOS devices―iPhone, iPad and iPod touch. Built right into the Messages app, iMessage allows you to easily send text messages, photos, videos or contact information to a person or a group on other iOS 5 devices over Wi-Fi or 3G. iMessages are automatically pushed to all your iOS 5 devices, making it easy to maintain one conversation across your iPhone, iPad and iPod touch. iMessage also features delivery and read receipts, typing indication and secure end-to-end encryption."
    That is from the Apple site. If all your friends have an iPhone, iPod Touch, or iPad you cang share with your friends, with is exactly like BlackBerry Messenger (BBM only works on BBs).
    And it does look just like the current message format. You can also find that at www.Apple.com

  • I "Reset Firefox – easily fix most problems", but it doesn't look like the view on getting started: ie

    I "Reset Firefox – easily fix most problems", but it doesn't look like the view on getting started tutorial, ie: there's no "Firefox tab". I would really like to clean out all the old stuff, including add-ons and plug-ins that I've tinkered in, but don't know about or need any more, then start fresh with the latest Firefox. How can I do that?

    The Firefox button does not or did not showupon Windows XP by default.
    It is easy to display that just remove the option to display the menu bar toolbar. Note
    # The functions and available optons are much the same just organised differenttly
    # Menu tool bar may be displayed temporarily; even if the Firefox Button is present: by holding down the keyboard '''Alt''' key
    #To remove the menu toolbar use '''View -> Toolbars -> []Menu Toolbar'''<br /> see [[Display the Firefox button menu instead of the menu toolbar]]

  • In app purchase error message "it doesn't look like you've purchased this product with this account"

    I have one itunes account and I made an in app purchase to unlock a full game. The charges appear on my account but the game tells me "it doesn't look like you've purchased this product with this account", although it acknowledges that I already paid to unlock a full version. I tried redownloading the game, I tried syncing with itunes. I am not sure where to start next. Any help appreciated. Thanks

    Sorry, maybe I didn't express myself well.
    I have the same Apple ID in the 3 devices, iPad mini, iPhone 4s and iPhone 5s. In the 2 first the app camera+ is installed, but it is the unique app that doesn't show up in my purchased items in the iPhone 5s. If I want it I have to buy again. I really didn't understand what happened that I can't install it free again.
    Thank you. 

  • The downlaod folder doesn't look like other folder

    My Download folder doesn't look like other folders, can some one help me with that.
    Thanks

    1. Select the folder and press Command + i (or go File -> Get Info).
    2. In the top left corner of the info window you can see the icon.
    3. Select the icon by left-clicking it.
    3. Cut, copy or paste the icon.       

  • I bought an app Camera  and it is installed in both IPhone4S and mini IPad, now I have also one IPhone 5s and this app doesn't  look like I have purchased it yet.

    I bought an app Camera+ and it is installed in both IPhone4S and mini IPad, now I have also one IPhone 5s and this app doesn't  look like I have purchased it yet.
    If I want to install I have to buy it again. Please, somebody has some advise?
    Thank you.

    Sorry, maybe I didn't express myself well.
    I have the same Apple ID in the 3 devices, iPad mini, iPhone 4s and iPhone 5s. In the 2 first the app camera+ is installed, but it is the unique app that doesn't show up in my purchased items in the iPhone 5s. If I want it I have to buy again. I really didn't understand what happened that I can't install it free again.
    Thank you. 

  • Just downloaded Firefox 4, cannot print web pages, print is all skewed, looks like secret coding.

    Tried to print a web page friendly receipt and then tried printing a web page, print is skewed, looks like some sort of encryption.

    Installing nightly builds is not recommended for most people. If you install a nightly build you will get updates every day. Though the current nightly builds are stable, it is not unusual for them to be very unstable and at time unusable.

Maybe you are looking for