multiple html/css files for wordpress theme?

The short answer is yes: You can use multiple CSS files in a WordPress theme.

The main style.css file is used for holding the theme’s information. You can leave the rest of it blank after that and write your own custom CSS files and include them inside the like you normally would.

As for the HTML, that will be working fairly different from a normal HTML based website. Instead of having an HTML file for each page (say home.html, about.html, contact.html) you will have one PHP file, called page.php. This file would be used to display the information that would be stored when you add a page from the WordPress dashboard (the title, the content, the date of creation etc.)

Being that most websites are laid out the same way, with a header, then the content, then the footer, with WordPress you would create a file called header.php which would have all the header content that goes on every page, footer.php which would have the footer content on all pages, and then the content part would be your page.php, which will look something like this.

<?php get_header(); ?>

    <?php the_content(); ?>

<?php get_footer(); ?>

Unless you are pretty familiar with PHP, and have a good understanding of modular design/code, you will probably want to follow a tutorial series all the way through and follow the design/layout that they are using before converting your own. That way you can get a feel for how WordPress coding is usually done.

Also, and this might be a little overwhelming to look at upon first glance, but this is the template hierarchy for WordPress. Once you get a grasp on how WordPress development works this will become your best friend.

http://codex.wordpress.org/images/1/18/Template_Hierarchy.png

Good luck, WordPress development will change your life (in a good way) 🙂