Book Image

Mastering Prezi for Business Presentations (Update)

Book Image

Mastering Prezi for Business Presentations (Update)

Overview of this book

Table of Contents (21 chapters)
Mastering Prezi for Business Presentations Second Edition
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Creating menus


In this section, we'll start to put together all of the things you learned in the preparation section to actually create the menu that you saw for the Prezi about Bloom's Taxonomy.

Tip

Coding shortcut

If you don't want to type the code yourself, refer to the example hosted at http://jjsylvia.com/blooms.html. You can visit the site and view the source, where you can then copy and paste the code for your own use and adaptation.

The base HTML file

Go to the text editor that you've chosen to use on your own computer, and create a new blank HTML file similar to the one we saw earlier, but this time with only a title and no heading or content:

<html>
<head>
<title>Using Bloom's Taxonomy to Assess Social Media</title>
</head>
<body>
</body>
</html>

HTML makes up the core content of your page, while we will use CSS, similar to what we covered in Chapter 3, Consistent Branding for Business, to change the style of the page.

You can save your...