Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So, someone has mocked up a web site using PowerPoint - and now I have to convert it to HTML / CSS (and I'd much rather have the styling in CSS, than inline in the HTML).

Is there a conversion tool, or a series of conversion hoops that I can jump through?


Update: I forgot to mention, this is not a static HTML site. It's PHP generated HTML and there are a bunch of forms for the user to submit information, so I can't simply embed the PP into the web pages.

share|improve this question
6  
A web site mockup in PowerPoint‽ – Matt Ball Jun 8 '11 at 4:31
+1 But when all you have is a hammer .... look, some folks create text documents in Excel ... anyhoo, that's what I am given (that and an incerdibly short amount of time) ... what would you do (if it was your mom, who needed the site for granny's funeral? i.e., it has to be done and there's no way out) – Mawg Jun 8 '11 at 4:41
I would re-write it by hand in HTML and CSS – Petah Jun 8 '11 at 4:46
1  
Quickest way: I would read existing questions, such as this one. The Right Way: what @Petah said. – Matt Ball Jun 8 '11 at 4:47
@MAtt +1 Thanks. You made me realize I forgot to mention a few things, so please see the updated question ... – Mawg Jun 8 '11 at 14:41

2 Answers

up vote 5 down vote accepted

Since I'm guessing you're not the best with web design hardcode, your options are:

Go into powerpoint, and use the 'Save For Web' button. It won't be perfect, you'll probably have to tweak some stuff, but you could make it look right with much less coding knowledge then the normal site.

OR: Make a flash site and embed the powerpoint into the flash, if you're flash savvy.

OR: Here's a poweproint conversion tool if your powerpoint if you don't want to code at all: http://www.pptools.com/ppt2html/index.html I'm not sure how well it works, you'll probably just end up frustrated and you'll have to code some anyway.

Option #1 is good, and it will require very little actual coding, just fixing the thing powerpoint does wrong.

Option #3, flash ewww.

Option #4 I haven't tried it, but you sure can if you're feeling up to it, probably won't be too fast or customizable.

But overall, the best bet is going to be look at it with your eyes and convert it using your knowledge of code and w3fools.com, err, oops, http://www.w3schools.com/ as a resource.

share|improve this answer
+1 .. and no offence taken :-) Not having PP (which I omitted to mention), I didn't know that it had an export to HTML function (someone mentioned XAML in passing). If so, expect either a web paeg with lots of CSS in the header (hopefully easy to convert) or styles on each HTML element (which is what I fear & why I ask for help) ... – Mawg Jun 8 '11 at 8:00
1  
Lots of css in the header is fine. Just copy it into a style.css file and <link> it. Remove lines one by one to find that which you do not need. Styles on each html element would be bad, you'd have to go by each element one by one and make selectors and combine, it would take a few hours, but it could be done. Like I said, you should need to tweak it a bit, pp is far from perfect. – Jackson Gariety Jun 8 '11 at 8:16
+1 hanks, Jackson, it looks like I will be going with option #1. I don't mind fine tuning (but I do remember years ago looking at the "HTML" produced by MS word ... shudder. Hopefully it's gotten better - or I have). With any luck a few global edits will take care of 80% or more of it, leaving just a few hours of manual tweaking. – Mawg Jun 8 '11 at 14:46
Mine checking it as 'answered'? – Jackson Gariety Jun 8 '11 at 22:07

FWIW, I don't think the PPTools PPT2HTML add-in will give the needed results. I wrote it, so I suppose I can answer as authoritatively as anyone. ;-)

It'll give you an image of the original PPT slide, optionally with an image map that preserves the links and action settings if any.

And it could be used to extract the title, body and any other text in a fairly predictable way, and could even insert any HTML/CSS code you like around each of these bits of text, but unless the slide/slides are fairly simple examples of stock PPT slides, that might not be very helpful.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.