How do I save an iWeb as text files, XML Sitemaps based on the Sitemap Protocol, or RSS or Atom 1.0 feeds.

How do I save a web site created in iWeb as something other than HTML. I need to do this because Google will not let me optimize my site as HTML. Google accepts text files, XML Sitemaps based on the Sitemap Protocol, or RSS or Atom 1.0 feeds. Your assistance would be greatly appreciated.

You mean this ?
https://developers.google.com/speed/pagespeed/
First glance. Google does not optimize. It provides suggestions how to optimize.
You do the optimizing.
Here's the result of an iWeb page :
https://developers.google.com/speed/pagespeed/insights#url=http_3A_2F_2Fwww.wyod or.net_2Fmfi_2FMaaskant_2FHow__To.html&mobile=false

Similar Messages

  • HOW DO I SAVE PICS FROM MY TEXT MESSAGES TO MY PHONE

    How do i save pics from my text messages, not very smart phone savvy!

    migjmh wrote:
    How do i save pics from my text messages, not very smart phone savvy!
    When you are viewing the test message with the picture in it, press and hold on the picture itself and it should vibrate and pull up a menu with the options of "View Picture", "Save Picture", and "Share Picture". Choose which one you want.

  • How do i save a iWEB site on an imac  and then  move to a laptop ?

    how do i save a iWEB site on an imac ( to what folder and where) and then transfer to a laptop ?
    Denis

    You transfer it via CD or flash drive or whatever. You install it by simply dragging and dropping the file into the folder on the new machine which corresponds to the folder where you got in on the old one.

  • How can I save my iWeb site as an interactive doco for a presentation? It is not published to the net.

    How can I save my iWeb site as an interactive doco for a presentation? It is not published to the net.

    mashett wrote:
    By interactive document I meant to function as a website with pages that are linked through what would be the hyperlink.
    That's exactly what you would get. Create a folder with a suitable name: publish to it. Zip it; email it. Tell them to start with the 'index.html' file inside the folder. The rest will follow - they will see it exactly as they would see an online site, links and all.
    Note that there is usually a 20MB limit on email attachments so if your site is image-heavy you might have a problem. An alternative is to post it to your webspace - you could post the zipped file and give them a link to it - that will download it (and it's a preferable way of handing a large file anyway, as they can download it at their convenience rather than being forced to in order to get their other mail).

  • How can i save a data in text format

    how can i save a data in text format in labwindows cvi
    Message Edited by Tikoy on 04-14-2010 11:30 PM
    Solved!
    Go to Solution.

    Hi,
    If your data is in an array, the easiest way is to use the ArrayToFile function.
    It automatically creates a file and puts your data in it according to the format you provide.
    If you have individual samples that you need to write once in a while, you can either collect them into an array and then use ArrayToFile or open a file with fopen and write them as they are acquired with fwrite.
    Hope this helps, 
    S. Eren BALCI
    www.aselsan.com.tr

  • Hi ..how to update information..in a text file..

    hi i m just creating a simple banking program..
    and i save the account balance in a text file..and when i read the customer's account
    id and the customer withdraws money, i have to update the file
    but....i don't know how to replace the balance of account which is already wrriten in the
    text file..i can write the new amount or money next to that original line..
    but if i want to replace the amount of money in the same line................

    hi kajbj..
    i got the code here..maybe something is wrong..in my code..
           RandomAccessFile raf = new RandomAccessFile(account,"rw");
         while (line1 != null) {
                    String line2 = bf.readLine();
                    String line3 = bf.readLine();
                    String line4 = bf.readLine();
                    if (line1.equals(acctN)) {
                           System.out.println("how much do you want to withdraw?");
                         int howMuch = Keyboard.readInt();
                         int balance = Integer.parseInt(line4);
                         balance -= howMuch;
                         raf.write(balance);//randomAccessFile
                         outFile.close();
                    else
                      line1 = bf.readLine();
              }   

  • Save tree structure to text file and load textfile to another tree control

    I'm able to save the structure and data to a text file, thanks to the "save tree structure to textfile" info found on this msg board, but can't seem to load the complete tree structure data from the text file into another tree. I've only been able to load parent data but can't get the hierarchy of the tree with the indents and child data to work.
    Thanks

    Thanks Tanya,
    However, I'm still stumped on how to copy (from text file) to other columns in the tree (from one tree to another).  I can only get the first column to load.
    I've attached my working VI and a textfile that I use to load into the "User list" tree.
    Rick
    Attachments:
    Text File to Tree V2.2.vi ‏58 KB
    test file save16.txt ‏1 KB

  • How to get summary columns in delimited text file

    How to get summary columns in delimited text file
    I am trying to generate a delimited text file output with delimited_hdr = no.The report is a Group above report with summary columns at the bottom.In the text file the headers are not getting repeated & thats ok.The problem is the summary data is getting repeated for each row of data.Is there a way where i will get all the data & summary data will get displayed only once.I have to import the delimited text file in excel spreadsheet.

    Sorry there were a typos :
    When I used desformat=DELIMITEDDATA with desttype=FILE, I get error "unknown printer driver DELIMITEDDATA". When you look for help, DELIMITED is not even listed as one of the values for DESTFORMAT. But if you scroll down and look for DELIMITER it says , this works only in conjuction with DESTFORMAT=DELIMITED !!!!!!??!! This is in 9i.
    Has this thing worked for anybody ? Can anyone please tell if they were able to suppress the sumary columns or the parent columns of a master-detail data for that matter ?

  • How do you save your photos in iPhoto and be able to find the photos when you are in different programs. When i try to find them I can only find the iPhotos not the individual photos.

    How do you save your photos in iPhoto and be able to find the photos when you are in different programs. When i try to find them I can only find the iPhotos not the individual photos.

    Use the media browser. In every open/attach window in tithe lower left hand corner under media ==> photos ==> iPhoto
    LN

  • How to read number of ';' in a text file

    I have a text file with size 2kb. The file has names seperated by ';' . For example John, Smith; David, Putnam; etc ..
    Now I have to read the file and find out how many ';' are there.
    I tried GUI_upload to read the text file and I think I did not get whole data.
    and
    loop at itab.
    if itab-names cs ';' .
    find ALL OCCURRENCES OF REGEX ';' IN itab-names MATCH COUNT  mcnt.
    l_mstring = itab-names .
    endif.
    endloop.
    I'm just getting count as 3
    Edited by: P V on Feb 21, 2008 9:57 PM

    DATA : tot_count TYPE i,
               mcnt TYPE i.
    loop at itab.
    if itab-names cs ';' .
    find ALL OCCURRENCES OF REGEX ';' IN itab-names MATCH COUNT mcnt.
    tot_count = tot_count + mcnt.
    endif.
    endloop.
    You will get total number of ; available in file in the field tot_count.
    Regards
    Sudhir Atluru

  • How can I copy a paragraph of text from a Kindle book on the iPad?

    I just purchased a book to read on the Kindle app on my iPad.
    I would like to copy a paragraph of text to email to someone or to possibly quote in a blog post.
    How can I copy a paragraph of text from a Kindle book on the iPad?

    I'm very late to the conversation but thought I'd chime in since I've just been dealing with this myself. One way to copy from Kindle books is to make sure that you have your settings to backup highlights etc. online, then highlight the text in the Kindle app, go to your Kindle webpage (https://kindle.amazon.com/your_highlights) and copy the text from there.
    Remember, to be able to do this you have to set the app to backup highlights etc. I think this is set individually for each book. On my iPad the default is to backup.

  • Hi i am new to labview. i want to extract data from a text file and display it on the front panel. how do i proceed??

    Hi i am new to labview
    I want to extract data from a text file and display it on the front panel.
    How do i proceed??
    I have attached a file for your brief idea...
    Attachments:
    extract.jpg ‏3797 KB

    RoopeshV wrote:
    Hi,
    The below code shows how to read from txt file and display in the perticular fields.
    Why have you used waveform?
    Regards,
    Roopesh
    There are so many things wrong with this VI, I'm not even sure where to start.
    Hard-coding paths that point to your user folder on the block diagram. What if somebody else tries to run it? They'll get an error. What if somebody tries to run this on Windows 7? They'll get an error. What if somebody tries to run this on a Mac or Linux? They'll get an error.
    Not using Read From Spreadsheet File.
    Use of local variables to populate an array.
    Cannot insert values into an empty array.
    What if there's a line missing from the text file? Now your data will not line up. Your case structure does handle this.
    Also, how does this answer the poster's question?

  • How can I save a Photoshop Elements 12 file as HTML?

    How can I save a Photoshop Elements 12 file as HTML?

    Sorry, not possible in PSE itself. You'd need to put your photo into the web creation software you use. If you are using an older version of PSE some versions created web albums/galleries which included an index.html page, but that's as much as PSE does. There's nothing like that in PSE 12 since Adobe wants you to use Revel for photo sharing now.

  • How do i save audio books to a file then delete from phone

    How do I save an audio book to file then delete from my Iphone.

    Perhaps he wants to free up space on the iPhone. The audio Books are a single download purchase, meaning you can't download them again for free.

  • How do I save multiple songs as one file?

    How do I save multiple songs as one file?

    Mhoopes wrote:
    How do I save multiple songs as one file?
    There are two ways:
    1.  Put the individual song files into a folder, and then Zip the folder.  This creates a single .zip file.  (Note however, that a .zip file is not playable in a normal player: it is just a "holder" for the song files.)
    2.  Use an audio editor such as Audacity to concatenate the individual song files into a single song file.  This creates a single file can be played in a normal player such as iTunes.
    Technique #2 is the one normally used to create a continuous mix.

Maybe you are looking for

  • How can i use tag library in the mvc?

    hello in some tag libraris such as jakarta tag library and jrun tag library,there is database access tag, it provide convenient function to access database from jsp page,but i wonder how can i use such a tag within MVC architecture. as we know,in MVC

  • How to re-download imovie11 upgrade. I previously purchased but i re-formated my imac

    I want to recover - re-download imovie 11 I have new hard drive and have restored the software version - now I must locate apple access to re-download the on-line imovie 11 up-date i think it was paid through itunes account yet itunes shows no record

  • Mounting /tmp as a filesystem on Solaris 10?

    Hi, Does anyone know if it's possible to mount /tmp as a filesystem in Solaris 10? My server is running Veritas Volume Manager 5.0 and the boot drive is encapsulated. After I change vfstab to mount /tmp as a standard filesystem, the server goes into

  • Differences between System.gc() and Runtime.gc() ?

    differences between System.gc() and Runtime.gc() ?

  • SelectionRange for BAPI_USER_GETLIST_INPUT

    Hi Experts, I'd like to set the username value of the BAPI import parameter "SelectionRange" when initiating the controller. This parameter is type of AbstractList. The ABAP documentation within the R/3 System -> BAPI Explorer tells me the following